grasspython.dox 869 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /*! \page GRASS_SWIG_PYTHON GRASS SWIG/PYTHON interface
  2. At the moment a prototype is implemented. It permits to use some GRASS
  3. library functions directly from the PYTHON programming language.
  4. \section status Status of GRASS SWIG/PYTHON implementation
  5. There is a <b>grass.lib</b> package with a series of separate modules
  6. available. Python SWIG modules are organized as follows:
  7. - grass.lib
  8. - arraystats.py
  9. - cluster.py
  10. - date.py
  11. - dbmi.py
  12. - display.py
  13. - g3d.py
  14. - grass.py
  15. - imagery.py
  16. - math.py
  17. - proj.py
  18. - raster.py
  19. - stats.py
  20. - trans.py
  21. - utils.py
  22. - vector.py
  23. - vedit.py
  24. \section usage Usage
  25. Access to GRASS library functions (example: Vector functions):
  26. \code
  27. from grass.lib import vector as grassvect
  28. \endcode
  29. \section examples Examples
  30. - examples/m.distance.py
  31. - examples/rasteraccess.py
  32. - examples/vectoraccess.py
  33. */