Changes between Version 24 and Version 25 of BluePrintGISImportExport
- Timestamp:
- 05/16/10 23:47:00 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BluePrintGISImportExport
v24 v25 31 31 * http://dev.openstreetmap.org/~kleptog/osm-0.5.dtd 32 32 33 KML export from Web2Py: 34 * http://groups.google.com/group/web2py/browse_thread/thread/b59bd3a9c40086f0 35 36 CSV to KML Converter: 37 * http://code.google.com/apis/kml/articles/csvtokml.html 38 * Useful to extend to handle images (multiple images => Tabs) 39 40 XML export from Web2Py: 41 * http://michaelangela.wordpress.com/2008/03/29/exporting-a-web2py-table-in-xml/ 42 43 We are choosing to use lxml for XML Import/Export: 33 Sahan Eden uses [wiki:S3XRC S3XRC] for our XML Import/Export which uses lxml: 44 34 * lxml: http://codespeak.net/lxml/index.html#introduction 45 35 * Fast Parser: http://blog.ianbicking.org/2008/03/30/python-html-parser-performance/ 46 36 47 37 Other options are available: 38 * XML export from Web2Py: http://michaelangela.wordpress.com/2008/03/29/exporting-a-web2py-table-in-xml/ 39 * KML export from Web2Py: http://groups.google.com/group/web2py/browse_thread/thread/b59bd3a9c40086f0 48 40 * PyRXP: http://www.reportlab.org/pyrxp.html 49 41 * Faster & optionally validating (DTD, XSD?), but requires compiling into Python so less portable (unless using pyexpat wrapper) … … 61 53 * Pyfo (example with Web2Py): http://michaelangela.wordpress.com/2008/04/10/simple-xml-creation-with-python/ 62 54 * SAX: http://www.devshed.com/c/a/Python/Parsing-XML-with-SAX-and-Python/ 55 56 CSV to KML Converter: 57 * http://code.google.com/apis/kml/articles/csvtokml.html 58 * Useful to extend to handle images (multiple images => Tabs) 63 59 64 60 This is another option for Import (via Python structures):