Changes between Version 20 and Version 21 of WKTRasterTutorial01
- Timestamp:
- 06/11/10 07:47:10 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WKTRasterTutorial01
v20 v21 34 34 35 35 {{{ 36 >" c:/Program Files/PostgreSQL/8.4/bin/shp2pgsql"36 >"C:/Program Files/PostgreSQL/8.4/bin/shp2pgsql" 37 37 }}} 38 38 … … 40 40 41 41 {{{ 42 >" c:/Program Files/PostgreSQL/8.4/bin/shp2pgsql" -s 32198 -I C:\Temp\TutData\cariboupoints.shp > C:\Temp\TutData\cariboupoints.sql42 >"C:/Program Files/PostgreSQL/8.4/bin/shp2pgsql" -s 32198 -I C:\Temp\TutData\cariboupoints.shp > C:\Temp\TutData\cariboupoints.sql 43 43 }}} 44 44 … … 52 52 53 53 {{{ 54 >" c:/Program Files/PostgreSQL/8.4/bin/psql" -f C:\Temp\TutData\cariboupoints.sql tutorial0154 >"C:/Program Files/PostgreSQL/8.4/bin/psql" -f C:\Temp\TutData\cariboupoints.sql tutorial01 55 55 }}} 56 56 … … 76 76 == Loading the SRTM elevation rasters into PostGIS WKT Raster == 77 77 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. 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. 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. 79 79 80 80 To display gdal2wktraster.py help, simply do: 81 81 82 82 {{{ 83 > gdal2wktraster.py-h83 >"C:/Program Files/PostgreSQL/8.4/bin/gdal2wktraster.py" -h 84 84 }}} 85 85 … … 89 89 90 90 {{{ 91 > gdal2wktraster.py-r C:\Temp\TutData\SRTM\tif\*.tif -t srtm_tiled -s 4326 -k 100x100 -I > C:\Temp\TutData\SRTM\srtm.sql91 >"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 92 92 }}} 93 93