Changes between Version 6 and Version 7 of BluePrintGISStorage


Ignore:
Timestamp:
09/26/10 21:16:13 (15 years ago)
Author:
Fran Boon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BluePrintGISStorage

    v6 v7  
    1 == GIS Storage ==
     1= GIS Storage =
    22For portability, the default storage for Features is the normal database via Web2Py's [http://mdp.cti.depaul.edu/examples/default/orm DAL].
    33
     
    1010 * [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()}}}
    1111
     12== PostGIS ==
     13Since we store features in Lat/Lon then we need to use the geography_columns, which stay updated automatically :)
     14{{{
     15geog GEOGRAPHY(Point)
     16geog GEOGRAPHY(Polygon)
     17}}}
     18
    1219Q: integrate [http://featureserver.org FeatureServer]?
    1320