Changes between Version 32 and Version 33 of WKTRasterTutorial01
- Timestamp:
- 06/11/10 10:39:17 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WKTRasterTutorial01
v32 v33 72 72 }}} 73 73 74 You should see your caribou observation points appear in the OpenJUMP map window.74 PostGIS geometries have to be converted with the ST_Asbinary() function for OpenJUMP to be able to parse them properly. You should see your caribou observation points appear in the OpenJUMP map window. 75 75 76 76 == Loading the SRTM elevation rasters into PostGIS WKT Raster == … … 116 116 This process took less than 4 minutes. You can quickly verify the success of the loading operation by looking at the number of row present in the "srtm_tiled" table. There should be 46800 rows. 117 117 118 You can then visualize the extent of each of those 46800 raster s by typing the following command in the OpenJUMP "Run Datastore Query" dialog:118 You can then visualize the extent of each of those 46800 raster tiles by typing the following command in the OpenJUMP "Run Datastore Query" dialog: 119 119 120 120 {{{ 121 121 SELECT rid, ST_AsBinary(rast::geometry) FROM srtm_tiled; 122 122 }}} 123 123 124 124 You can also view the complete area covered by the raster coverage as one geometry by doing this: 125 125