| 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 |
| 257 | copy 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; |
| 258 | copy 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 | |