Changes between Version 6 and Version 7 of BluePrintGISStorage
- Timestamp:
- 09/26/10 21:16:13 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BluePrintGISStorage
v6 v7 1 = = GIS Storage ==1 = GIS Storage = 2 2 For portability, the default storage for Features is the normal database via Web2Py's [http://mdp.cti.depaul.edu/examples/default/orm DAL]. 3 3 … … 10 10 * [http://groups.google.com/group/web2py/browse_thread/thread/7551b50ef3ca72a8 DAL can be bypassed] to allow other ORMs to be used: {{{response.custom_commit=lambda: do_commit()}}} 11 11 12 == PostGIS == 13 Since we store features in Lat/Lon then we need to use the geography_columns, which stay updated automatically :) 14 {{{ 15 geog GEOGRAPHY(Point) 16 geog GEOGRAPHY(Polygon) 17 }}} 18 12 19 Q: integrate [http://featureserver.org FeatureServer]? 13 20