Python: Difference between revisions

From Wildsong
Jump to navigationJump to search
Brian Wilson (talk | contribs)
Brian Wilson (talk | contribs)
Line 24: Line 24:
How about geoprocessing with [http://www.gdal.org OGR/GDAL]? Will that do it for me?
How about geoprocessing with [http://www.gdal.org OGR/GDAL]? Will that do it for me?


Getting Python 2.4 and GDAL without disrupting the ESRI installation...
Getting Python 2.4 and GDAL without disrupting the ESRI installation... See also [http://hobu.biz/ Howard Butler's site].
trying [http://fwtools.maptools.org/ FWtools] again. See also [http://hobu.biz/ Howard Butler's site].
 
'''Not good enough:''' [http://fwtools.maptools.org/ FWtools] installs a funky GUI called OpenEV_FW and a shell environment.
It comes with python 2.3.4 which is old but better than ESRI's 2.1
'''It does NOT include the pythonwin IDE'''. How INCORNVENIENT!
 
23-Aug-2006 probably not worth messing with right now.
From the OGR site: ''The Python API isn't really well documented at this time, but parallels the C/C++ APIs. The interface classes can be browsed in the pymod/ogr.py (simple features) and pymod/osr.py (coordinate systems) python modules. The pymod/samples/assemblepoly.py sample script is one demonstration of using the python API.''

Revision as of 18:09, 23 August 2006

Brian's random notes on Python

Links

Quick links into the official docs

TUTORIAL http://docs.python.org/tut/tut.html

GENERAL http://docs.python.org/

STRINGS http://docs.python.org/lib/string-methods.html

http://diveintopython.org/

Geoprocessing

ESRI

Geoprocessing with ESRI COM dispatch is so slow on the machine I have here that I am thinking it's useless to me. Anyway here are some very useful comments

http://www.ollivier.co.nz/support/python.shtm

Open source

How about geoprocessing with OGR/GDAL? Will that do it for me?

Getting Python 2.4 and GDAL without disrupting the ESRI installation... See also Howard Butler's site.

Not good enough: FWtools installs a funky GUI called OpenEV_FW and a shell environment. It comes with python 2.3.4 which is old but better than ESRI's 2.1 It does NOT include the pythonwin IDE. How INCORNVENIENT!

23-Aug-2006 probably not worth messing with right now. From the OGR site: The Python API isn't really well documented at this time, but parallels the C/C++ APIs. The interface classes can be browsed in the pymod/ogr.py (simple features) and pymod/osr.py (coordinate systems) python modules. The pymod/samples/assemblepoly.py sample script is one demonstration of using the python API.