Changes between Version 61 and Version 62 of GeoDjango


Ignore:
Timestamp:
Apr 7, 2007, 3:20:21 AM (18 years ago)
Author:
jbronn
Comment:

added ogr2ogr example

Legend:

Unmodified
Added
Removed
Modified
  • GeoDjango

    v61 v62  
    242242== GDAL ==
    243243 * Optional, but highly useful for coordinate transformations and reading/writing ''both'' vector (e.g. SHP) and raster (e.g. TIFF) geographic data.
     244   * For example, the following command will convert your SHP file into [http://en.wikipedia.org/wiki/WGS84 WGS84] (standard lat/lon).  Then you can import directly into your database using {{{shp2pgsql}}} (utility from PostGIS):
     245{{{
     246ogr2ogr -t_srs WGS84 output.shp input.shp
     247}}}
    244248 * Latest [http://www.gdal.org/download.html GDAL] version is 1.4.0.  Configure with GEOS and Python support, then make and install:
    245249{{{
Back to Top