Changes between Initial Version and Version 1 of RHE


Ignore:
Timestamp:
Sep 23, 2011 5:44:34 PM (14 years ago)
Author:
celine
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • RHE

    v1 v1  
     1back to first page[..][[BR]] 
     2back to ["RHT"][[BR]] 
     3 
     4= RHE Réseau Hydrographique Etendu = 
     5Lambert II 
     6{{{ 
     7d: 
     8cd D:\CelineJouanin\RHT_Estimkart\rhe 
     9C:\"Program Files"\PostgreSQL\8.4\bin\shp2pgsql -s 27582 -c -g the_geom -W LATIN1 -I Rhe.shp RHE > RHE.sql 
     10C:\"Program Files"\PostgreSQL\8.4\bin\psql -d eda2.0_RHT -h localhost -U postgres -p 5432 -f RHE.sql 
     11}}} 
     12 
     13{{{ 
     14Alter table rhe set schema rht; 
     15ALTER TABLE rht.rhe DROP CONSTRAINT enforce_srid_the_geom; 
     16UPDATE rht.rhe SET the_geom = ST_transform(the_geom, 3035);  
     17ALTER TABLE rht.rhe ADD CONSTRAINT enforce_srid_the_geom CHECK (st_srid(the_geom) = 3035); 
     18}}}