Rechercher une page de manuel
v.colors.1grass
Langue: en
Version: 333538 (ubuntu - 24/10/10)
Section: 1 (Commandes utilisateur)
NAME
v.colors - Set color rules for features in a vector using a numeric attribute column.KEYWORDS
vector, color tableSYNOPSIS
v.colorsv.colors help
v.colors [-sn] map=name column=string [layer=integer] [rgb_column=string] [range=min,max] [color=style] [raster=string] [rules=string] [--verbose] [--quiet]
Flags:
- -s
Save placeholder raster map for use with d.legend- -n
Invert colors- --verbose
Verbose module output- --quiet
Quiet module output
Parameters:
- map=name
Name of input vector map- column=string
Name of column containing numeric data- layer=integer
Layer number of data column
Default: 1- rgb_column=string
Name of color column to populate
Default: GRASSRGB- range=min,max
Manually set range (min,max)- color=style
Type of color table
Options: aspect,aspectcolr,bcyr,bgyr,byg,byr,celsius,corine,curvature,differences,elevation,etopo2,evi,gdd,grey,grey1.0,grey255,grey.eq,grey.log,gyr,ndvi,population,precipitation,rainbow,ramp,random,ryb,ryg,sepia,slope,srtm,terrain,wave- raster=string
Raster map name from which to copy color table- rules=string
Path to rules file
DESCRIPTION
v.colors is much like r.colors, but may be used for vector maps. You give it a vector map and numeric data column, together with color rules like you would do for a raster. It creates a new column in the database with R:G:B values suitable for use with 'd.vect -a'.How it works: it creates a dummy raster map with the same data range as the vector's column then runs r.colors for that temporary map. It then uses r.what.colors for each value found by v.db.select and uploads it a new column in the vector map's attribute database.
It is planned that this script will be replaced with a C display module which renders thematic vector maps directly instead requiring the overhead of saving the colors into the DB.
If the target column name given by the rgb_column option does not exist, it will be created. The default name is "GRASSRGB".
EXAMPLES
Create a random sample point map, query raster map values for those points, and colorize output.# Spearfish dataset
g.region -d
v.random out=rand5k_elev n=5000
v.db.addtable map=rand5k_elev column='elevation double precision'
v.what.rast vector=rand5k_elev raster=elevation.10m column=elevation
v.colors map=rand5k_elev column=elevation color=bcyr
# display colorized points map
d.mon x0
d.vect -a rand5k_elev
Colorizing the roads map in Spearfish:
g.copy vect=roads,myroads
echo "1 red
2 yellow
3 orange
4 black
5 grey" > colors.txt
v.colors myroads column=cat rules=colors.txt
# display colorized roads map
d.mon x0
d.vect -a myroads
Colorizing a TIN (polygons) generated by v.delaunay:
# new columns for x,y,z of centroids
v.db.addtable map=tin \
columns="east double precision, north double precision, height double precision, GRASSRGB varchar(11)"
# transfer geometry for colorizing (we need the centroid height)
v.to.db tin option=coor columns="east,north,height"
v.db.select tin
v.colors tin column=height rgb_column=GRASSRGB color=rainbow
# display colorized triangles
d.mon x0
d.vect -a tin
SEE ALSO
d.vect -zr.colors
r.colors.stddev
r.what.color
v.db.addcol
v.db.select
db.execute
AUTHOR
Hamish BowmanDunedin, New Zealand
Last changed: $Date: 2009-02-09 14:06:52 +0100 (lun, 09 feb 2009) $
Full index
© 2003-2010 GRASS Development Team
Contenus ©2006-2024 Benjamin Poulain
Design ©2006-2024 Maxime Vantorre