12345678910111213141516171819202122232425262728293031 |
- .. _GRASSdatabase-label:
- GRASS database management
- =========================
- PyGRASS imlements the classes described bellow:
- * :class:`~pygrass.gis.Gisdbase`
- * :class:`~pygrass.gis.Location`
- * :class:`~pygrass.gis.Mapset`
- * :class:`~pygrass.gis.VisibleMapset`
-
- These classes are used to manage the infrastructure of GRASS database:
- GIS data directory, Location and Mapset. Details about the GRASS GIS
- database management (locations and mapsets) can be found in the `GRASS
- GIS 7 User's Manual: GRASS GIS Quickstart
- <https://grass.osgeo.org/grass79/manuals/helptext.html>`_.
- .. _Region-label:
- Region management
- =================
- The :class:`~pygrass.gis.region.Region` class it is useful to obtain
- information about the computational region and to change it. Details
- about the GRASS GIS computational region management can be found in
- the `GRASS GIS Wiki: Computational region
- <https://grasswiki.osgeo.org/wiki/Computational_region>`_.
- The classes are part of the :mod:`~pygrass.gis` module.
|