projection.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. /*
  2. * lidar-related projection functions
  3. *
  4. * Authors:
  5. * Markus Metz (r.in.lidar)
  6. * Vaclav Petras (refactoring and various additions)
  7. *
  8. * Copyright 2011-2016 by Vaclav Petras, and The GRASS Development Team
  9. *
  10. * This program is free software licensed under the GPL (>=v2).
  11. * Read the COPYING file that comes with GRASS for details.
  12. *
  13. */
  14. #ifndef __PROJECTION_H__
  15. #define __PROJECTION_H__
  16. #include <grass/gis.h>
  17. void projection_mismatch_report(struct Cell_head cellhd,
  18. struct Cell_head loc_wind,
  19. struct Key_Value *loc_proj_info,
  20. struct Key_Value *loc_proj_units,
  21. struct Key_Value *proj_info,
  22. struct Key_Value *proj_units,
  23. int err);
  24. void projection_check_wkt(struct Cell_head cellhd,
  25. struct Cell_head loc_wind,
  26. const char *projstr,
  27. int override,
  28. int verbose);
  29. #endif /* __PROJECTION_H__ */