Changes between Version 67 and Version 68 of CookBook join BDMAP_CCM
- Timestamp:
- Mar 1, 2010 3:36:14 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TabularUnified CookBook join BDMAP_CCM
v67 v68 183 183 }}} 184 184 185 {{{ 186 alter table stationsp2 add CONSTRAINT enforce_dims_the_geom CHECK (ndims(the_geom) = 2); 187 alter table stationsp2 add CONSTRAINT enforce_geotype_the_geom CHECK (geometrytype(the_geom) = 'POINT'::text OR the_geom IS NULL); 188 alter table stationsp2 add CONSTRAINT enforce_srid_the_geom CHECK (srid(the_geom) = 3035); 189 }}} 190 185 191 == 6. Joining the riversegments layer with the stationsp2 layer == 186 192