Changes between Version 28 and Version 29 of Grass7/VectorLib/OGRInterface
- Timestamp:
- 10/25/11 04:48:59 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Grass7/VectorLib/OGRInterface
v28 v29 5 5 == Direct OGR read access == 6 6 7 Capability to read OGR layers directly without linking them via {{{v.external}}}. Example: 7 Capability to read OGR layers '''directly''' without linking them via {{{v.external}}}. Example: 8 9 Example 1: Shapefile 'busstopsall.shp' located in directory '~/shapefiles' 8 10 9 11 {{{ 10 12 v.info map=~/shapefiles/@OGR layer=busstopsall 11 v.extract input=PG:dbname=nc_spm_08@OGR layer=busstopsall where="STREET_1 = 'William Moore Dr.'" output=b1 13 }}} 14 15 Example 2: PostGIS table 'busstopsall' located in database 'pgis_nc'. 16 17 {{{ 18 v.extract input=PG:dbname=pgis_nc@OGR layer=busstopsall where="STREET_1 = 'William Moore Dr.'" output=b1 12 19 }}} 13 20