Changes between Version 10 and Version 11 of Temperature download and load


Ignore:
Timestamp:
May 11, 2010 2:53:36 PM (15 years ago)
Author:
celine
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Temperature download and load

    v10 v11  
    7777== Transforming to Another spatial reference system == 
    7878   - ''' Transform geometry for the temperature tmp''' 
     79{{{ 
     80ALTER TABLE temperature.tmp DROP COLUMN the_geom CASCADE; 
     81SELECT AddGeometryColumn('temperature','tmp','the_geom',3035,'POINT',2); 
     82UPDATE temperature.tmp SET the_geom = transform(setsrid(makepoint(longitude, latitude),4326), 3035); 
     83}}} 
    7984 
    8085   - ''' Transform geometry for the temperature tmx''' 
    81  
     86{{{ 
     87ALTER TABLE temperature.tmx DROP COLUMN the_geom CASCADE; 
     88SELECT AddGeometryColumn('temperature','tmx','the_geom',3035,'POINT',2); 
     89UPDATE temperature.tmx SET the_geom = transform(setsrid(makepoint(longitude, latitude),4326), 3035); 
     90}}} 
    8291   - ''' Transform geometry for the temperature tmn''' 
    83  
    84  
    85  
     92{{{ 
     93ALTER TABLE temperature.tmn DROP COLUMN the_geom CASCADE; 
     94SELECT AddGeometryColumn('temperature','tmn','the_geom',3035,'POINT',2); 
     95UPDATE temperature.tmn SET the_geom = transform(setsrid(makepoint(longitude, latitude),4326), 3035); 
     96}}}