Changes between Version 105 and Version 106 of WKTRasterTutorial01
- Timestamp:
- 01/17/11 12:11:45 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WKTRasterTutorial01
v105 v106 288 288 289 289 {{{ 290 SELECT id, ST_AsBinary( the_geom)290 SELECT id, ST_AsBinary(ST_Transform(the_geom, 4326)) 291 291 FROM cariboupoints; 292 292 }}} 293 293 294 This fake caribou layer is distributed very differently than our original one and does not really look like a caribou distribution but this does not matter for the rest of the tutorial.294 Note that we have to reproject the point to the same reference system our raster table is stored in. This fake caribou layer is distributed very differently than our original one and does not really look like a caribou distribution but this does not matter for the rest of the tutorial. 295 295 296 296 Now that we have our two coverages loaded in the database and that we are confident about their values and spatial reference, let's start doing some analysis queries...