Changes between Version 127 and Version 128 of CookBook join BDMAP_CCM


Ignore:
Timestamp:
May 25, 2012 1:38:13 PM (13 years ago)
Author:
celine
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CookBook join BDMAP_CCM

    v127 v128  
    66== 1. Load the BDMAP database, it will be saved by Laurent using a Talend work == 
    77{{{ 
     8#!sql 
    89SELECT AddGeometryColumn('bdmap', 'station','the_geom', 27572,'POINT',2)  
    910UPDATE bdmap.station SET the_geom=PointFromText('POINT(' || st_abcisse || ' ' || st_ordonnee || ')',27572); 
     
    9798We could also have used (instead of -s in shp2psql) 
    9899{{{ 
     100#!sql 
    99101update station set ST_SetSRID(the_geom, 27252); REM 27572 
    100102}}}