Changes between Version 122 and Version 123 of GeoDjango
- Timestamp:
- Jan 4, 2009, 1:40:39 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
GeoDjango
v122 v123 22 22 * [wiki:GeoDjangoExtras Extra Features] (in progress). 23 23 24 The wiki documentation is woefully behind, please use the [http://geodjango.org/docs/ 1.0 previewdocumentation].24 The wiki documentation is woefully behind, please use the [http://geodjango.org/docs/ 1.0 documentation]. 25 25 26 26 When in doubt, use `help` on the feature in question, as most [browser:django/branches/gis/django/contrib/gis GeoDjango modules] and routines have docstrings. … … 31 31 32 32 === Pending Features === 33 The following is a discussion of features we hope to implement in !GeoDjango. Unless stated otherwise, features in this list are not prioritized. If you have a pet feature you may accelerate its development by submitting code yourself. 34 * Support for additional !JavaScript mapping frameworks (e.g., !OpenLayers, Yahoo Maps, MS Live, !MaqQuest, etc.) 35 * WMS views. 36 * Support additional spatial databases: 37 * Maybe sqlite (via [http://www.gaia-gis.it/spatialite/ SpatialLite]), DB2 and SQL Server 2008 33 All pending features for 1.1 may be found on the [wiki:GeoDjango1.1 GeoDjango 1.1] page. 38 34 39 35 === Milestones === … … 203 199 >>> pnt = fromstr('POINT(-95.362293 29.756539)', srid=4326) 204 200 >>> hisd = District.objects.get(name='Houston ISD') 201 205 202 >>> hisd.poly.contains(pnt) 206 203 True