Changes between Version 105 and Version 106 of WKTRasterTutorial01


Ignore:
Timestamp:
Jan 17, 2011, 12:11:45 PM (13 years ago)
Author:
pracine
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • WKTRasterTutorial01

    v105 v106  
    288288
    289289{{{
    290  SELECT id, ST_AsBinary(the_geom)
     290 SELECT id, ST_AsBinary(ST_Transform(the_geom, 4326))
    291291 FROM cariboupoints;
    292292}}}
    293293
    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.
     294Note 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.
    295295
    296296Now 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...