Changes between Version 6 and Version 7 of Temperature download and load


Ignore:
Timestamp:
May 11, 2010 11:01:18 AM (15 years ago)
Author:
celine
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Temperature download and load

    v6 v7  
    5050== Create and Populate the geometry field == 
    5151The geometry field is populated using the Longitude and Latitude fields[[BR]] 
    52 Problem : I haven't yet found the spatial reference (maybe the srid is : 4326 or 4269 or 3785 or 3395...)[[BR]] 
     52Problem : I haven't yet found the spatial reference (maybe the srid is : 4326 - WGS84)[[BR]] 
    5353   - '''Geometry for the temperature tmp''' 
    5454{{{ 
    55 select AddGeometryColumn('temperature','tmp','the_geom',4269,'POINT',2); 
     55select AddGeometryColumn('temperature','tmp','the_geom',4326,'POINT',2); 
    5656UPDATE temperature.tmp 
    57         SET the_geom = ST_SetSRID(ST_Point( longitude, latitude),4269); 
     57        SET the_geom = ST_SetSRID(ST_Point( longitude, latitude),4326); 
    5858}}} 
    5959   - '''Geometry for the temperature tmx''' 
    6060{{{ 
    61 select AddGeometryColumn('temperature','tmx','the_geom',4269,'POINT',2); 
     61select AddGeometryColumn('temperature','tmx','the_geom',4326,'POINT',2); 
    6262UPDATE temperature.tmx 
    63         SET the_geom = ST_SetSRID(ST_Point( longitude, latitude),4269); 
     63        SET the_geom = ST_SetSRID(ST_Point( longitude, latitude),4326); 
    6464}}} 
    6565   - '''Geometry for the temperature tmn''' 
    6666{{{ 
    67 select AddGeometryColumn('temperature','tmn','the_geom',4269,'POINT',2); 
     67select AddGeometryColumn('temperature','tmn','the_geom',4326,'POINT',2); 
    6868UPDATE temperature.tmn 
    69         SET the_geom = ST_SetSRID(ST_Point( longitude, latitude),4269); 
     69        SET the_geom = ST_SetSRID(ST_Point( longitude, latitude),4326); 
    7070}}} 
    7171