Changes between Version 34 and Version 35 of import layers postgis


Ignore:
Timestamp:
Jul 13, 2018 1:21:01 PM (7 years ago)
Author:
maria
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • import layers postgis

    v34 v35  
    6767}}} 
    6868 
    69 Creating a table corresponding to ORIA 
     69Creating a table corresponding to ORIA  
    7070 
    7171Table of basins 
     
    9494 
    9595[[Image(source:eda/data/Docs/trac/sudoang/oria.png,200px)]] 
     96 
     97Creating a table corresponding to UROLA  
     98 
     99Table of basins 
     100 
     101{{{#!sql 
     102create table spain.urola_cuenca as select * from a_cuencas_rios_atl_norte where pfafrio like '1003716%'; 
     103 
     104CREATE INDEX urola_cuenca_geom_idx 
     105  ON urola_cuenca 
     106  USING gist 
     107  (geom); 
     108}}} 
     109 
     110Table of rivers 
     111 
     112{{{#!sql 
     113create table spain.urola_a_rios_v2 as select * from a_rios_v2 where pfafrio like '1003716%'; 
     114 
     115CREATE INDEX urola_a_rios_v2_geom_idx 
     116  ON urola_a_rios_v2 
     117  USING gist 
     118  (geom); 
     119}}} 
     120 
     121[[Image(source:eda/data/Docs/trac/sudoang/urola.png,200px)]] 
     122 
    96123 
    97124== Trials for the pfafsteter system == 
     
    344371}}} 
    345372 
    346 Check in QGis the basins created according to the 6th and 7th position of code in pfafrio [[BR]] 
     373Check in QGis the rivers created according to the 6th and 7th position of code in pfafrio [[BR]] 
    347374[[Image(source:eda/data/Docs/trac/sudoang/test_biscay_coast.png,400px)]] 
    348