wiki:Grass7/VectorLib/OGRInterface

Version 9 (modified by martinl, 13 years ago) ( diff )

--

OGR interface in GRASS 7

Direct OGR read access

Capability to read OGR layers directly without linking them via v.external. Example:

v.info map=~/shapefiles/@OGR layer=busstopsall
v.extract input=PG:dbname=nc_spm_08@OGR layer=busstopsall where="STREET_1 = 'William Moore Dr.'" output=b1

List of modules which supports direct OGR read access ((*) indicates work in progress):

Direct OGR write access

Capability to write OGR layers directly without need to store data in the native vector format and then exporting data using v.out.ogr. Example:

Scenario 1

Use parameters output for output OGR datasource and olayer for OGR layer. Example:

# input: GRASS data
# output: PostGIS database
v.extract map=obce where="NAZEV = Solany" output=PG:dbname=gisdb@OGR olayer=obce

# input: PostGIS layer, ESRI Shapefile
# output: PostGIS database
v.select ainput=PG:dbname=gisdb@OGR alayer=zeleznice \
 binput=shps@OGR blayer=obce operator=intersects \
 output=PG:dbname=gisdb@OGR olayer=obce_zelez

Scenario 2

Use v.external.out

Changes in vector library

Changes in modules

List of modules which supports direct OGR write access ((*) indicates work in progress):

  • v.edit
Note: See TracWiki for help on using the wiki.