local_proto.h 630 B

12345678910111213141516171819202122232425262728293031
  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, const char *);
  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(const char *, const char *);
  24. void modify_projinfo();
  25. void create_epsg(const char *, const char *);