local_proto.h 550 B

123456789101112131415161718192021222324252627282930
  1. #include <grass/config.h>
  2. extern struct Key_Value *projinfo, *projunits;
  3. extern struct Cell_head cellhd;
  4. /* input.c */
  5. void input_currloc(void);
  6. #ifdef HAVE_OGR
  7. int input_wkt(char *);
  8. int input_proj4(char *);
  9. int input_epsg(int);
  10. int input_georef(char *);
  11. #endif
  12. /* output.c */
  13. void print_projinfo(int);
  14. void print_datuminfo(void);
  15. void print_proj4(int);
  16. #ifdef HAVE_OGR
  17. void print_wkt(int, int);
  18. #endif
  19. /* datumtrans.c */
  20. int set_datum(char *);
  21. int set_datumtrans(int, int);
  22. /* create.c */
  23. void create_location(char *);
  24. void modify_projinfo();