man v.what.rast () - Upload raster values at positions of vector points to the table.
NAME
v.what.rast - Upload raster values at positions of vector points to the table.
SYNOPSIS
v.what.rast
v.what.rast help
v.what.rast vector=string raster=string [layer=integer] column=string
Parameters:
- "vector=string
- Name of input vector points map
- "raster=string
- Name of existing raster map
- "layer=integer
- Layer number Default: 1
- "column=string
- Column name (will be updated by raster values)
DESCRIPTION
v.what.rast reads raster value for each point in the vector and updates col
column in vector attribute table by this value. The column should be type
number (integer, float, double, ... ).
If more points have the same category, attribute value is set to NULL.
If raster values is NULL, attribute value is set to NULL.
EXAMPLE
A) Reading values from raster map at position of vector points, writing these values
into column of vector map:
v.what.rast vect=pnt rast=demf col=valf
B) In case of a vector map without attached attribute table, first one row for
each category has to be generated. Then the new table can be populated with values
from the raster map query:
v.db.connect -p vectpoints
# .. no table yet.
echo 'create table vectpoints (cat integer, value integer)' | db.execute
#link new table to vector map:
v.db.connect table=vectpoints map=vectpoints
#generate rows for each category:
v.to.db map=vectpoints option=cat
#query raster map and write values into vector table:
v.what.rast vect=vectpoints rast=rastmap col=value
#verify uploaded values:
v.univar map=vectpoints col=value
AUTHOR
Radim Blazek
Last changed: $Date: 2004/10/22 13:28:16 $
Help Index