Re: [gdal-dev] Python gdal -- Class or function equivalent to `gdaltransform'

2009-08-24 Thread Jonathan Sawyer
Frank (and all): Thanks for the information. Using this link: http://svn.osgeo.org/gdal/trunk/gdal/swig/python/samples/tolatlong.py I was able to figure out how to transform points from one EPSG coordinate system to another using Python. Here's how: #transform() def transform(i_srs, o_srs, lon,

Re: [gdal-dev] Python gdal -- Class or function equivalent to `gdaltransform'

2009-08-21 Thread Frank Warmerdam
Jonathan Sawyer wrote: Good evening developers, I am very new to GDAL, so please bear with me. What function/class/module do I need to look at to perform coordinate transformation, in Python? Or better yet, can anyone point me to good online docs to learn how the Python bindings are used in

[gdal-dev] Python gdal -- Class or function equivalent to `gdaltransform'

2009-08-21 Thread Jonathan Sawyer
Good evening developers, I am very new to GDAL, so please bear with me. What function/class/module do I need to look at to perform coordinate transformation, in Python? Or better yet, can anyone point me to good online docs to learn how the Python bindings are used in gdal? FYI: I am looking fo