Changes between Version 34 and Version 35 of import layers postgis
- Timestamp:
- Jul 13, 2018 1:21:01 PM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
import layers postgis
v34 v35 67 67 }}} 68 68 69 Creating a table corresponding to ORIA 69 Creating a table corresponding to ORIA 70 70 71 71 Table of basins … … 94 94 95 95 [[Image(source:eda/data/Docs/trac/sudoang/oria.png,200px)]] 96 97 Creating a table corresponding to UROLA 98 99 Table of basins 100 101 {{{#!sql 102 create table spain.urola_cuenca as select * from a_cuencas_rios_atl_norte where pfafrio like '1003716%'; 103 104 CREATE INDEX urola_cuenca_geom_idx 105 ON urola_cuenca 106 USING gist 107 (geom); 108 }}} 109 110 Table of rivers 111 112 {{{#!sql 113 create table spain.urola_a_rios_v2 as select * from a_rios_v2 where pfafrio like '1003716%'; 114 115 CREATE 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 96 123 97 124 == Trials for the pfafsteter system == … … 344 371 }}} 345 372 346 Check in QGis the basins created according to the 6th and 7th position of code in pfafrio [[BR]]373 Check in QGis the rivers created according to the 6th and 7th position of code in pfafrio [[BR]] 347 374 [[Image(source:eda/data/Docs/trac/sudoang/test_biscay_coast.png,400px)]] 348