Changes between Version 88 and Version 89 of GeoDjango


Ignore:
Timestamp:
Jul 14, 2007, 12:44:43 PM (17 years ago)
Author:
jbronn
Comment:

updated with info on lazy-geometry support

Legend:

Unmodified
Added
Removed
Modified
  • GeoDjango

    v88 v89  
    1111= Roadmap =
    1212
    13 '''Note:''' In order to minimize confusion, please don't modify the official roadmap below.  If you have a suggestion, place it in the [wiki:GeoDjango#Suggestions suggestion section] or ask your question in the [wiki:GeoDjango#FAQ FAQ].  If your request is urgent, submit a ticket requesting your feature (make sure to specify the component as 'GIS').  Thanks for your cooperation!
     13'''Note:''' In order to minimize confusion, please don't modify the official roadmap below.  If you have a suggestion, place it in the [wiki:GeoDjango#Suggestions suggestion section] or ask your question in the [wiki:GeoDjango#FAQ FAQ].  If your request is urgent, submit a ticket requesting your feature or bugfix (make sure to specify the component as 'GIS').  Thanks for your cooperation!
    1414
    1515== Phase 1 ==
     
    2727   * PostGIS indexing capability.
    2828   * As of r5008, added a {{{ctypes}}} interface for [http://geos.refractions.net/ GEOS] in [source:django/branches/gis/django/contrib/gis/gdal django.contrib.gis.geos].
    29      * {{{GEOSGeometry}}}: Wraps [http://geos.refractions.net/ro/doxygen_docs/html/classgeos_1_1geom_1_1Geometry.html GEOS geometries], may be accessed with an [wiki:GeoDjangoDatabaseAPI#ExtraInstanceMethods extra instance method] (''e.g.'', {{{z.get_poly_geos()}}}).
     29     * {{{GEOSGeometry}}}: Wraps [http://geos.refractions.net/ro/doxygen_docs/html/classgeos_1_1geom_1_1Geometry.html GEOS geometries]; all accessed geometry fields are returned as {{{GEOSGeometry}}} instances.
    3030   * As of r5397, added a {{{ctypes}}} interface for [http://www.gdal.org/ogr/ogr_arch.html GDAL/OGR] in [source:django/branches/gis/django/contrib/gis/gdal django.contrib.gis.gdal]. 
    3131     * {{{OGRGeometry}}}: Wraps [http://www.gdal.org/ogr/classOGRGeometry.html OGR geometries], may be accessed with an extra instance method (''e.g.'', {{{z.get_poly_ogr()}}}).
     
    3434   * As of r5529, there are utilities for importing vector data (''e.g.'', SHP files) directly into GeoDjango models. 
    3535     * The [source:django/branches/gis/django/contrib/gis/utils/LayerMapping.py LayerMapping] class will import vector data from GDAL-supported data sources.  This is still 'beta', and requires installation of the [wiki:GeoDjango#GDAL GDAL library].
     36   * As of r5657, "Lazy-Geometry" support was added (courtesy of Robert Coup's excellent patch in #4322) -- deprecating most of the  [wiki:GeoDjangoDatabaseAPI#ExtraInstanceMethods extra instance methods].
    3637
    3738== Phase 3 ==
    38  * Support MySQL databases.
     39 * Support additional spatial databases:
     40   * MySQL
     41   * DB2
     42   * Oracle Spatial (I (jbronn) would need access to a license to make this happen)
    3943 * Geocoding framework.
    4044
Back to Top