GRASS logo

NAME

v.overlay - Overlays two vector maps.

KEYWORDS

vector, geometry

SYNOPSIS

v.overlay
v.overlay help
v.overlay [-t] ainput=name alayer=string [atype=string[,string,...]] binput=name blayer=string [btype=string[,string,...]] operator=string output=name olayer=string[,string,...] [--overwrite] [--verbose] [--quiet]

Flags:

-t
Do not create attribute table
--overwrite
Allow output files to overwrite existing files
--verbose
Verbose module output
--quiet
Quiet module output

Parameters:

ainput=name
Name of input vector map (A)
Data source for direct OGR access
alayer=string
Layer number or name (vector map A)
A single vector map can be connected to multiple database tables. This number determines which table to use. Layer name for direct OGR access.
Default: 1
atype=string[,string,...]
Feature type (vector map A)
Feature type
Options: line,area
Default: area
binput=name
Name of input vector map (B)
Data source for direct OGR access
blayer=string
Layer number or name (vector map B)
A single vector map can be connected to multiple database tables. This number determines which table to use. Layer name for direct OGR access.
Default: 1
btype=string[,string,...]
Feature type (vector map B)
Feature type
Options: area
Default: area
operator=string
Operator defines features written to output vector map
Feature is written to output if the result of operation 'ainput operator binput' is true. Input feature is considered to be true, if category of given layer is defined.
Options: and,or,not,xor
and: also known as 'intersection' in GIS
or: also known as 'union' in GIS (only for atype=area)
not: features from ainput not overlayed by features from binput
xor: features from either ainput or binput but not those from ainput overlayed by binput (only for atype=area)
output=name
Name for output vector map
olayer=string[,string,...]
Output layer for new category, ainput and binput
If 0 or not given, the category is not written
Default: 1,0,0

DESCRIPTION

v.overlay allows the user to overlay two vector area maps. The resulting output map has a merged attribute-table. The origin column-names have a prefix (a_ and b_) which results from the ainput- and binput-map.

NOTES

Currently only areas are supported for the operators or and xor! See also v.select. The operator defines what kind of operation will be done. Features are written to output, if the result of an operation 'ainput operator binput' is true.

Attributes of the tables from ainput and binput are joined into a new table linked to the output maps new cat-column.

EXAMPLE POLYGON TO POLYGON UNION

v.overlay ainput=lake binput=province output=lakeXprovince operator=or

EXAMPLE LINE TO POLYGON CLIPPING

Using the North Carolina sample dataset, we clip the roads map to the area of city of Raleigh:
g.region vect=zipcodes_wake

# extract Raleigh city
v.extract in=zipcodes_wake out=raleigh \
            where="ZIPNAME = 'RALEIGH'"

# clip road network to city polygon:
v.overlay ainput=roadsmajor atype=line binput=raleigh \
            out=roadsmajor_raleigh operator=and
GRASS v.overlay: Line to polygon clipping
v.overlay: Line to polygon clipping

SEE ALSO

v.db.connect, v.select, g.copy

AUTHORS

Radim Blazek, ITC-Irst, Trento, Italy

Last changed: $Date: 2011-02-09 07:05:53 -0800 (Wed, 09 Feb 2011) $


Main index - vector index - Full index

© 2003-2011 GRASS Development Team