Changes between Version 127 and Version 128 of CookBook join BDMAP_CCM
- Timestamp:
- May 25, 2012 1:38:13 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CookBook join BDMAP_CCM
v127 v128 6 6 == 1. Load the BDMAP database, it will be saved by Laurent using a Talend work == 7 7 {{{ 8 #!sql 8 9 SELECT AddGeometryColumn('bdmap', 'station','the_geom', 27572,'POINT',2) 9 10 UPDATE bdmap.station SET the_geom=PointFromText('POINT(' || st_abcisse || ' ' || st_ordonnee || ')',27572); … … 97 98 We could also have used (instead of -s in shp2psql) 98 99 {{{ 100 #!sql 99 101 update station set ST_SetSRID(the_geom, 27252); REM 27572 100 102 }}}