123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- /*!
- \file lib/gis/get_projinfo.c
-
- \brief GIS Library - Get projection info
-
- (C) 1999-2008, 2011 by the GRASS Development Team
-
- This program is free software under the GNU General Public License
- (>=v2). Read the file COPYING that comes with GRASS for details.
- */
- #include <unistd.h>
- #include <grass/gis.h>
- #include <grass/glocale.h>
- #define PERMANENT "PERMANENT"
- /*!
- \brief Gets units information for location
- Note: Allocated Key_Value structure should be freed by
- G_free_key_value().
-
- \return pointer to Key_Value structure with key/value pairs
- */
- struct Key_Value *G_get_projunits(void)
- {
- struct Key_Value *in_units_keys;
- char path[GPATH_MAX];
- G_file_name(path, "", UNIT_FILE, PERMANENT);
- if (access(path, 0) != 0) {
- if (G_projection() != PROJECTION_XY) {
- G_warning(_("<%s> file not found for location <%s>"),
- UNIT_FILE, G_location());
- }
- return NULL;
- }
- in_units_keys = G_read_key_value_file(path);
- return in_units_keys;
- }
- /*!
- \brief Gets projection information for location
-
- Note: Allocated Key_Value structure should be freed by
- G_free_key_value().
-
- \return pointer to Key_Value structure with key/value pairs
- */
- struct Key_Value *G_get_projinfo(void)
- {
- struct Key_Value *in_proj_keys;
- char path[GPATH_MAX];
- G_file_name(path, "", PROJECTION_FILE, PERMANENT);
- if (access(path, 0) != 0) {
- if (G_projection() != PROJECTION_XY) {
- G_warning(_("<%s> file not found for location <%s>"),
- PROJECTION_FILE, G_location());
- }
- return NULL;
- }
- in_proj_keys = G_read_key_value_file(path);
- return in_proj_keys;
- }
|