Changes between Version 122 and Version 123 of GeoDjango


Ignore:
Timestamp:
Jan 4, 2009, 1:40:39 PM (15 years ago)
Author:
jbronn
Comment:

Updated with link to 1.1 wiki

Legend:

Unmodified
Added
Removed
Modified
  • GeoDjango

    v122 v123  
    2222 * [wiki:GeoDjangoExtras Extra Features] (in progress).
    2323
    24 The wiki documentation is woefully behind, please use the [http://geodjango.org/docs/ 1.0 preview documentation]. 
     24The wiki documentation is woefully behind, please use the [http://geodjango.org/docs/ 1.0 documentation]. 
    2525
    2626When in doubt, use `help` on the feature in question, as most [browser:django/branches/gis/django/contrib/gis GeoDjango modules] and routines have docstrings.
     
    3131
    3232=== 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
     33All pending features for 1.1 may be found on the [wiki:GeoDjango1.1 GeoDjango 1.1] page.
    3834
    3935=== Milestones ===
     
    203199>>> pnt = fromstr('POINT(-95.362293 29.756539)', srid=4326)
    204200>>> hisd = District.objects.get(name='Houston ISD')
     201
    205202>>> hisd.poly.contains(pnt)
    206203True
Back to Top