local_proto.h 974 B

12345678910111213141516171819202122232425262728293031
  1. #include <grass/gprojects.h>
  2. #define DIRN_BOTH 0
  3. #define DIRN_LAT 1
  4. #define DIRN_LON 2
  5. /* plot.c */
  6. int plot_grid(double, double, double, int, int, int, int, int, double, int);
  7. int plot_geogrid(double, struct pj_info, struct pj_info, int, int, int, int,
  8. int, double, int);
  9. void init_proj(struct pj_info *, struct pj_info *, int);
  10. void get_ll_bounds(double *, double *, double *, double *, struct Cell_head,
  11. struct pj_info, struct pj_info);
  12. void check_coords(double, double, double *, double *, int, struct Cell_head,
  13. struct pj_info, struct pj_info);
  14. float get_heading(double, double);
  15. /* plotborder.c */
  16. int plot_border(double, double, double, int);
  17. #define MARK_GRID 0
  18. #define MARK_CROSS 1
  19. #define MARK_FIDUCIAL 2
  20. #define MARK_DOT 3
  21. /* fiducial.c */
  22. void plot_cross(double, double, int, double);
  23. void plot_fiducial(double, double, int, double);
  24. void plot_symbol(double, double, int, double, char *, int);
  25. void plot_dot(double, double, int);