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


Ignore:
Timestamp:
May 11, 2010 3:00:17 PM (15 years ago)
Author:
celine
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Temperature download and load

    v11 v12  
    9595UPDATE temperature.tmn SET the_geom = transform(setsrid(makepoint(longitude, latitude),4326), 3035); 
    9696}}} 
     97 
     98== Create a GIST index to increase a query speed == 
     99   - ''' Transform geometry for the temperature tmp''' 
     100{{{ 
     101CREATE INDEX indextmp ON temperature.tmp 
     102  USING GIST ( the_geom GIST_GEOMETRY_OPS ); 
     103}}} 
     104 
     105   - ''' Transform geometry for the temperature tmx''' 
     106{{{ 
     107CREATE INDEX indextmx ON temperature.tmx 
     108  USING GIST ( the_geom GIST_GEOMETRY_OPS ); 
     109}}} 
     110 
     111   - ''' Transform geometry for the temperature tmn''' 
     112{{{ 
     113CREATE INDEX indextmn ON temperature.tmn 
     114  USING GIST ( the_geom GIST_GEOMETRY_OPS ); 
     115}}}