/*! \page GRASS_SWIG_PYTHON GRASS SWIG/PYTHON interface
GRASS SWIG/PYTHON interface
At the moment a prototype is implemented. It permits to use
some GRASS library functions directly from the PYTHON programming language.
Status of GRASS SWIG/PYTHON implementation
At the moment a prototype is implemented. There is a
"swig" module with a series of separate sub-modules available:
- arraystats.i
- cluster.i
- common.i
- date.i
- dbmi.i
- display.i
- g3d.i
- grass.i
- imagery.i
- math.i
- my_typemaps.i
- proj.i
- raster.i
- stats.i
- trans.i
- utils.i
- vector.i
- vedit.i
Usage
These can be imported individually with e.g. "import swig.grass", or the
user can import all of them with "import swig" (then use e.g.
swig.grass.G_gisinit etc), or it can be used e.g. "from swig.grass import *"
to import all names from a module. The latter can be done for multiple
modules, but currently, there's no way to import names from all sub-modules
of a module with a single command.
Examples
- examples/m.distance.py
- examples/rasteraccess.py
- examples/vectoraccess.py
- test.py
*/