Changes between Version 13 and Version 14 of Grass7/VectorLib
- Timestamp:
- 11/15/09 03:10:16 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Grass7/VectorLib
v13 v14 4 4 5 5 * source:grass/trunk/doc/vector/TODO 6 * ticket:5427 6 8 7 == File-based spatial index == … … 29 28 == Direct OGR write access == 30 29 31 TODO 30 Capability to write OGR layers directly without need to store data in the native vector format and then exporting data using {{{v.out.ogr}}}. E.g. 31 32 {{{ 33 # input: GRASS data 34 # output: PostGIS database 35 v.extract map=obce where="NAZEV = Solany" output="PG:dbname=gisdb" olayer=obce 36 37 # input: PostGIS layer, ESRI Shapefile 38 # output: PostGIS database 39 v.select ainput="PG:dbname=gisdb"@OGR alayer=zeleznice \ 40 binput=shps@OGR blayer=obce operator=intersects \ 41 output="PG:dbname=gisdb"@OGR olayer=obce_zelez 42 }}} 32 43 33 44 == Redesign support structures == 34 45 35 Reduce memory requirements particularly for points and lines 46 Reduce memory requirements particularly for points and lines. See ticket:542. 36 47 37 48 TODO