1 /****************************************************************************
2  *
3  * MODULE:       v.in.lidar
4  * AUTHOR(S):    Vaclav Petras
5  * PURPOSE:      projection related functions
6  * COPYRIGHT:    (C) 2015 by the GRASS Development Team
7  *
8  *               This program is free software under the GNU General Public
9  *               License (>=v2). Read the COPYING file that comes with GRASS
10  *               for details.
11  *
12  *****************************************************************************/
13 
14 
15 #ifndef PROJECTION_CHECKS_H
16 #define PROJECTION_CHECKS_H
17 
18 void projection_mismatch_report(struct Cell_head cellhd,
19                                 struct Cell_head loc_wind,
20                                 struct Key_Value *loc_proj_info,
21                                 struct Key_Value *loc_proj_units,
22                                 struct Key_Value *proj_info,
23                                 struct Key_Value *proj_units, int err);
24 
25 void projection_check_wkt(struct Cell_head cellhd,
26                           struct Cell_head loc_wind,
27                           const char *projstr, int override, int verbose);
28 
29 #endif /* PROJECTION_CHECKS_H */
30