Changes between Version 37 and Version 38 of WRBD


Ignore:
Timestamp:
Dec 3, 2010 11:14:00 AM (14 years ago)
Author:
cedric
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WRBD

    v37 v38  
    246246CREATE INDEX indexstation_st ON wrbd.station_st 
    247247  USING GIST ( the_geom GIST_GEOMETRY_OPS ); 
     248 
     249/******************************************** 
     250*  INTEGRATING WFD stations 
     251*********************************************/ 
     252 alter table wrbd.station_st add column st_source character(25); 
     253 update  wrbd.station_st set st_source='MI electrofishing survey'; 
     254 alter table wrbd.station_st add column st_waterbody character(25); 
     255 update  wrbd.station_st set st_waterbody='river'; 
     256-- COPYING survey stations 
     257copy wrbd.station_st (st_id,st_waterbody,st_catchment,st_location, st_eastings,st_northing,st_x,st_y)  from 'D:/CelineJouanin/POSEProject/Ireland/DataIreland/8.WFD_Rivers_Survey_Stations.csv' with csv delimiter as ';' header;  
     258copy wrbd.station_st (st_id,st_waterbody,st_catchment,st_location, st_eastings,st_northing,st_x,st_y) from 'C:/base/8.WFD_Rivers_Survey_Stations.csv' with csv delimiter as ';' header;  
     259  
    248260}}} 
    249261