Changes between Version 13 and Version 14 of Grass7/VectorLib


Ignore:
Timestamp:
Nov 15, 2009, 3:10:16 AM (15 years ago)
Author:
martinl
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Grass7/VectorLib

    v13 v14  
    44
    55 * source:grass/trunk/doc/vector/TODO
    6  * ticket:542
    76
    87== File-based spatial index ==
     
    2928== Direct OGR write access ==
    3029
    31 TODO
     30Capability 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
     35v.extract map=obce where="NAZEV = Solany" output="PG:dbname=gisdb" olayer=obce
     36
     37# input: PostGIS layer, ESRI Shapefile
     38# output: PostGIS database
     39v.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}}}
    3243
    3344== Redesign support structures ==
    3445
    35 Reduce memory requirements particularly for points and lines
     46Reduce memory requirements particularly for points and lines. See ticket:542.
    3647
    3748TODO