Changes between Version 42 and Version 43 of WRBD


Ignore:
Timestamp:
Dec 3, 2010 4:28:08 PM (14 years ago)
Author:
cedric
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WRBD

    v42 v43  
    262262-- I forgot to include st_source to differentiate 
    263263 update  wrbd.station_st set st_source='WFD_Rivers_Surveys' where st_waterbody='River'; 
    264  update  wrbd.station_st set st_source='WFD_Rivers_Surveys' where st_waterbody='Lake'; 
    265  update  wrbd.station_st set st_source='WFD_Rivers_Surveys' where st_waterbody='Non-Freshwater'; 
     264 update  wrbd.station_st set st_source='WFD_Lake_Surveys' where st_waterbody='Lake'; 
     265 update  wrbd.station_st set st_source='WFD_Lake_Surveys' where st_waterbody='Non-Freshwater'; 
    266266  update  wrbd.station_st set st_waterbody='river' where st_waterbody='River'; 
     267 
     268  UPDATE wrbd.station_st SET the_geom=ST_Transform(PointFromText('POINT(' || st_eastings || ' ' || st_northing || ')',29903),3035) where wrbd.station_st.st_source='WFD_Rivers_Surveys'; 
     269   UPDATE wrbd.station_st SET the_geom=ST_Transform(PointFromText('POINT(' || st_eastings || ' ' || st_northing || ')',29903),3035) where wrbd.station_st.st_source='WFD_Lake_Surveys'; 
    267270 
    268271}}}