Changes between Version 16 and Version 17 of GdalOgrInPython


Ignore:
Timestamp:
Jun 10, 2009, 9:16:02 PM (15 years ago)
Author:
warmerdam
Comment:

added more examples and tutorials, and moved these to the top.

Legend:

Unmodified
Added
Removed
Modified
  • GdalOgrInPython

    v16 v17  
    1717reference documentation, but the `GDAL API Tutorial`_ includes Python examples.
    1818
     19
     20Tutorials
     21---------
     22
     23Chris Garrard has given courses at Utah State University on "Geoprocessing with Python using Open Source GIS" (http://www.gis.usu.edu/~chrisg/python). There are many slides, examples, test data... and homework ;-) that can be greatly helpful for beginners with GDAL/OGR in Python.
     24
     25Greg Petrie has an OGR related tutorial available at http://cosmicproject.org/OGR.
     26
     27Examples
     28--------
     29
     30* One example of GDAL/numpy integration is found in the `val_repl.py`_ script.
     31* An assortment of other samples are available in the Python SVN samples directory at http://svn.osgeo.org/gdal/trunk/gdal/swig/python/samples/ with some description in the `samples README`_.
     32* Several `GDAL utilities`_ are implemented in Python and can be useful examples.
     33
    1934Dependencies
    2035------------
    2136 
    22  * libgdal (1.5.0 or greater) and header files (gdal-devel)
    23  * numpy (1.0.0 or greater) and header files (numpy-devel) (not explicitly
    24    required, but many examples and utilities will not work without it)
     37* libgdal (1.5.0 or greater) and header files (gdal-devel)
     38* numpy (1.0.0 or greater) and header files (numpy-devel) (not explicitly
     39  required, but many examples and utilities will not work without it)
    2540
    2641Installation
     
    187202enough to get you going.  Docstrings for GDAL and OSR are planned for a future
    188203release.
    189 
    190 Tutorials
    191 ~~~~~~~~~
    192 
    193 Chris Garrard has given courses at Utah State University on "Geoprocessing with Python using Open Source GIS" (http://www.gis.usu.edu/~chrisg/python). There are many slides, examples, test data... and homework ;-) that can be greatly helpfull for beginners with GDAL/OGR in Python.
    194204
    195205
     
    258268.. _GDAL: http://www.gdal.org
    259269.. _SWIG: http://www.swig.org
    260 
     270.. _Samples README: http://svn.osgeo.org/gdal/trunk/gdal/swig/python/samples/README
     271.. _GDAL utilities: http://svn.osgeo.org/gdal/trunk/gdal/swig/python/scripts/
    261272
    262273}}}