123456789101112131415161718 |
- """
- Set global variables for objects in a GRASS GIS Spatial Database
- (C) 2020 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.
- .. sectionauthor:: Linda Kladivova <linda.kladivova seznam cz>
- """
- # global variables
- default_location = "world_latlong_wgs84"
- temporary_location = "tmploc"
- unknown_location = "<UNKNOWN>"
- unknown_mapset = "<UNKNOWN>"
- permanent_mapset = "PERMANENT"
|