Changes between Version 81 and Version 82 of GeoDjango


Ignore:
Timestamp:
Jun 28, 2007, 8:41:42 AM (17 years ago)
Author:
jbronn
Comment:

updated the status info with info on GDAL and LayerMapping

Legend:

Unmodified
Added
Removed
Modified
  • GeoDjango

    v81 v82  
    1616 * '''Pending'''
    1717   * Distance queries, calculations, and related utilities.
    18    * Utilities for importing vector and raster data (SHP files first) directly into Django models -- will be done with the forthcoming {{{LayerMapping}}} class.
    1918   * Add as much from the PostGIS API as possible.
    2019   * Support for a mapping framework (e.g. Google Maps/Earth, Yahoo Maps, MS Live, etc.)
     
    2322 * '''Complete'''
    2423   * PostGIS indexing capability.
    25    * As of r5008, added a GEOS wrapper object for geometry-enabled fields that call directly on GEOS routines (''e.g.'' {{{z.get_poly_geos().area}}}).  ''See'' [wiki:GeoDjangoDatabaseAPI#ExtraInstanceMethods Extra Instance Methods] section)
     24   * 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].
     25     * {{{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()}}}).
     26   * 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]. 
     27     * {{{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()}}}).
     28     * {{{SpatialReference}}}: Wraps [http://www.gdal.org/ogr/classOGRSpatialReference.html OGR Spatial Reference] objects, may be used to transform OGR geometries.
     29     * {{{DataSource}}}: Wraps [http://www.gdal.org/ogr/classOGRDataSource.html OGR Data Source] objects, may be used to explore GDAL-supported data sources
     30   * As of r5529, there are utilities for importing vector data (''e.g.'', SHP files) directly into GeoDjango models. 
     31     * 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].
    2632
    2733== Phase 3 ==
Back to Top