Changes between Version 103 and Version 104 of CookBook join BDMAP_CCM
- Timestamp:
- Sep 1, 2010 3:19:04 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CookBook join BDMAP_CCM
v103 v104 7 7 {{{ 8 8 SELECT AddGeometryColumn('bdmap', 'station','the_geom', 27572,'POINT',2) 9 UPDATE bdmap SET the_geom=PointFromText('POINT(' || st_abcisse || ' ' || st_ordonnee || ')',27572);9 UPDATE bdmap.station SET the_geom=PointFromText('POINT(' || st_abcisse || ' ' || st_ordonnee || ')',27572); 10 10 ALTER TABLE bdmap.station ADD CONSTRAINT geometry_valid_check CHECK (isvalid(the_geom)); 11 11 SELECT ST_Transform(the_geom,3035) FROM bdmap.station;