| 1 | | == GIS Import/Export == |
| 2 | | |
| 3 | | We need to be able to Import & Export these XML formats to/from the Database: |
| 4 | | * GeoRSS (URL fetch/publish) |
| 5 | | * GPX (File upload/download) |
| 6 | | * GML (? Low priority, not used much in real world) |
| 7 | | * KML (File upload/download & URL fetch/publish) |
| 8 | | * OSM (File upload/download) |
| 9 | | |
| 10 | | This is probably best-done using an XSD parser: |
| 11 | | * [http://georss.org GeoRSS] |
| 12 | | * http://georss.org/xml/1.1/georss.xsd |
| 13 | | * http://georss.org/xml/1.1/gmlgeorss.xsd |
| 14 | | * GPX |
| 15 | | * http://www.topografix.com/gpx/1/1/gpx.xsd |
| 16 | | * GML |
| 17 | | * http://schemas.opengis.net/gml/3.2.1/ |
| 18 | | * KML |
| 19 | | * http://schemas.opengis.net/kml/2.2.0/ogckml22.xsd |
| 20 | | * OSM |
| 21 | | * http://dev.openstreetmap.org/~kleptog/osm-0.5.dtd |
| 22 | | |
| 23 | | |
| 24 | | This is one option for Import (via Python structures): |
| 25 | | * http://www.rexx.com/~dkuhlman/generateDS.html |
| | 1 | Currently just a [wiki:BluePrintGISImportExport BluePrint] |