back to first page[..][[BR]] back to ["Gis Structures"][[BR]] = RHT Réseau Hydrographique Théorique = http://www.cemagref.fr/le-cemagref/lorganisation/les-centres/lyon/ur-maly/laboratoire-dynamiques-indicateurs-et-modeles-en-ecohydrologie/logiciels/RHT == Integrating data into postgre (rht.shp and Attributs_RHT_fev_2011.txt) == ["Download and load RHT"] select count(*) from rht.attributs_rht_fev_2011 ---114602 select count(*) from rht.rht ---114602 == Create a view == {{{ CREATE VIEW rht_attribut AS SELECT * from rht.rht r inner join rht.attributs_rht_fev_2011 a on r.id_drain=a."ID_DRAIN" }}}