Changes between Version 10 and Version 11 of OriaEda


Ignore:
Timestamp:
Nov 23, 2010 2:36:58 PM (14 years ago)
Author:
cedric
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • OriaEda

    v10 v11  
    115115  USING GIST ( the_geom GIST_GEOMETRY_OPS ); 
    116116 
     117-- joining operations and stations 
     118drop table if exists oria.operation_station; 
     119create table oria.operation_station as ( 
     120        select * from oria.estaciones_st join oria.operation_op on op_st_id=st_id 
     121        where st_id in (select st_id from oria.oria_ccm_500)); 
     122alter table oria.operation_station add CONSTRAINT enforce_dims_the_geom CHECK (ndims(the_geom) = 2); 
     123alter table oria.operation_station add  CONSTRAINT enforce_geotype_the_geom CHECK (geometrytype(the_geom) = 'POINT'::text OR the_geom IS NULL); 
     124alter table oria.operation_station add  CONSTRAINT enforce_srid_the_geom CHECK (srid(the_geom) = 3035); 
     125 
    117126-- Obstacles 
    118127