Changes between Version 25 and Version 26 of CookBook Postgis
- Timestamp:
- Feb 9, 2010 3:24:50 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CookBook Postgis
v25 v26 29 29 ALTER TABLE bdmap.station ADD CONSTRAINT geometry_valid_check CHECK (isvalid(the_geom)); 30 30 }}} 31 To transform the coordinate towards the CCM 31 To transform the coordinate towards the CCM[[CC]] 32 To figure out the srid of a data go to the table geometry_column, there is on line per table 32 33 {{{ 33 34 SELECT ST_Transform(the_geom,3035) FROM bdmap.station;