Changes between Version 20 and Version 21 of WKTRasterTutorial01


Ignore:
Timestamp:
Jun 11, 2010, 7:47:10 AM (14 years ago)
Author:
pracine
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • WKTRasterTutorial01

    v20 v21  
    3434
    3535{{{
    36     >"c:/Program Files/PostgreSQL/8.4/bin/shp2pgsql"
     36    >"C:/Program Files/PostgreSQL/8.4/bin/shp2pgsql"
    3737}}}
    3838       
     
    4040
    4141{{{     
    42     >"c:/Program Files/PostgreSQL/8.4/bin/shp2pgsql" -s 32198 -I C:\Temp\TutData\cariboupoints.shp > C:\Temp\TutData\cariboupoints.sql
     42    >"C:/Program Files/PostgreSQL/8.4/bin/shp2pgsql" -s 32198 -I C:\Temp\TutData\cariboupoints.shp > C:\Temp\TutData\cariboupoints.sql
    4343}}}
    4444
     
    5252
    5353{{{
    54     >"c:/Program Files/PostgreSQL/8.4/bin/psql" -f C:\Temp\TutData\cariboupoints.sql tutorial01
     54    >"C:/Program Files/PostgreSQL/8.4/bin/psql" -f C:\Temp\TutData\cariboupoints.sql tutorial01
    5555}}}
    5656       
     
    7676== Loading the SRTM elevation rasters into PostGIS WKT Raster ==
    7777
    78 The process to load the elevation raster data is very similar. The name of the loader is gdal2wktraster.py. It is a Python program dependent on the Python package and the GDAL Python package.
     78The process to load the elevation raster data is very similar. The name of the loader is gdal2wktraster.py. It is a Python program dependent on the Python package and the GDAL Python package. It is located in the same folder as shp2pgsql. You can call it directly or with its full path if you did not change your PATH environment variable.
    7979
    8080To display gdal2wktraster.py help, simply do:
    8181
    8282{{{
    83     >gdal2wktraster.py -h
     83    >"C:/Program Files/PostgreSQL/8.4/bin/gdal2wktraster.py" -h
    8484}}}
    8585
     
    8989
    9090{{{
    91     >gdal2wktraster.py -r C:\Temp\TutData\SRTM\tif\*.tif -t srtm_tiled -s 4326 -k 100x100 -I > C:\Temp\TutData\SRTM\srtm.sql
     91    >"C:/Program Files/PostgreSQL/8.4/bin/gdal2wktraster.py" -r C:\Temp\TutData\SRTM\tif\*.tif -t srtm_tiled -s 4326 -k 100x100 -I > C:\Temp\TutData\SRTM\srtm.sql
    9292}}}
    9393