Changes between Version 38 and Version 39 of CookBook join RHT-BDMAP


Ignore:
Timestamp:
Oct 26, 2011 4:47:13 PM (14 years ago)
Author:
celine
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CookBook join RHT-BDMAP

    v38 v39  
    320320---Changement du système de projection  RGF93_Lambert_93 (srid 2154) --> ETRS LAEA (srid 3035) 
    321321alter table bdmap2009.station_geography drop constraint enforce_srid_the_geom; 
    322 ---update bdmap2009.station_geography set the_geom =ST_Transform(the_geom,3035); 
     322drop trigger tr_station_geography on  bdmap2009.station_geography ; 
    323323update bdmap2009.station_geography set the_geom =ST_Transform(ST_SetSRID(the_geom,2154),3035); 
    324 ERREUR:  Operation on two geometries with different SRIDs 
    325 CONTEXT:  PL/pgSQL function "geom_update" line 5 at IF 
    326  
    327 ********** Erreur ********** 
    328  
    329 ERREUR: Operation on two geometries with different SRIDs 
    330 État SQL :XX000 
    331 Contexte : PL/pgSQL function "geom_update" line 5 at IF 
    332324 
    333325alter table bdmap2009.station_geography add CONSTRAINT enforce_dims_the_geom CHECK (ndims(the_geom) = 2);