Changes between Version 103 and Version 104 of CookBook join BDMAP_CCM


Ignore:
Timestamp:
Sep 1, 2010 3:19:04 PM (15 years ago)
Author:
cedric
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CookBook join BDMAP_CCM

    v103 v104  
    77{{{ 
    88SELECT AddGeometryColumn('bdmap', 'station','the_geom', 27572,'POINT',2)  
    9 UPDATE bdmap SET the_geom=PointFromText('POINT(' || st_abcisse || ' ' || st_ordonnee || ')',27572); 
     9UPDATE bdmap.station SET the_geom=PointFromText('POINT(' || st_abcisse || ' ' || st_ordonnee || ')',27572); 
    1010ALTER TABLE bdmap.station ADD CONSTRAINT geometry_valid_check CHECK (isvalid(the_geom));  
    1111SELECT ST_Transform(the_geom,3035) FROM bdmap.station;