Changes between Version 29 and Version 30 of frmts_wtkraster.html


Ignore:
Timestamp:
Oct 27, 2010, 5:55:30 AM (13 years ago)
Author:
jorgearevalo
Comment:

Changed PostGIS Raster loader name

Legend:

Unmodified
Added
Removed
Modified
  • frmts_wtkraster.html

    v29 v30  
    7474== '''3.1 - Loading raster data''' ==
    7575
    76 The GDAL PostGIS Raster driver isn't able to load raster data yet. For this proposal, you'll have to use '''gdal2raster''' script. This loader script is included with the PostGIS installation, under the ''raster/scripts/python'' subdirectory. To check the syntax of the script, execute this command from that subdirectory:
     76The GDAL PostGIS Raster driver isn't able to load raster data yet. For this proposal, you'll have to use '''raster2pgsql''' script. This loader script is included with the PostGIS installation, under the ''raster/scripts/python'' subdirectory. To check the syntax of the script, execute this command from that subdirectory:
    7777
    7878{{{
    79 >$ python gdal2raster.py --help
     79>$ python raster2pgsql.py --help
    8080}}}
    8181
     
    8787
    8888{{{
    89 >$ python gdal2raster.py -r /path/to/utm.tif -t [schema.]utm -l 1 -k 64x64 -o utm.sql -s 26711 -I -M
     89>$ python raster2pgsql.py -r /path/to/utm.tif -t [schema.]utm -l 1 -k 64x64 -o utm.sql -s 26711 -I -M
    9090}}}
    9191
     
    103103
    104104{{{
    105 >$ python gdal2raster.py -r /path/to/katrina.tif -t katrina -l 1 -k 64x64 -o katrina.sql -s 4326 -I -M
     105>$ python raster2pgsql.py -r /path/to/katrina.tif -t katrina -l 1 -k 64x64 -o katrina.sql -s 4326 -I -M
    106106}}}
    107107
     
    118118
    119119{{{
    120 >$ python gdal2raster.py -r /path/to/katrina.tif -t katrina -l 2 -V -k 64x64 -o katrina_ov2.sql -s 4326 -I -M
     120>$ python raster2pgsql.py -r /path/to/katrina.tif -t katrina -l 2 -V -k 64x64 -o katrina_ov2.sql -s 4326 -I -M
    121121}}}
    122122
     
    180180== '''3.3 - Creating and modifying data''' ==
    181181
    182 The GDAL PostGIS Raster driver is not able to create and modify rasters yet. You'll have to use '''gdal2raster''' loader to create new ones.
     182The GDAL PostGIS Raster driver is not able to create and modify rasters yet. You'll have to use '''raster2pgsql''' loader to create new ones.
    183183
    184184