v.out.svg input=name output=name type=name [precision=value] [field=value] [attrib=name[,name,...]]
input GRASS vector input output SVG output file type Output-type. Defines which feature-type will be extracted options: poly,line,point default: poly precision Coordinate precision default: 6 field Field number default: 1 attrib Attribute(s) to include in output SVG
Export polygons from GRASS vector map soils (spearfish sample data) to SVG format:
v.out.svg
input=soils
output=/tmp/output.svg
type=poly
Export lines from GRASS vector map t_hydro (spearfish sample data) to SVG format, set coordinate precision to 0:
v.out.svg
input=t_hydro
output=/tmp/output.svg
type=line
precision=0
Export points from GRASS vector map archsites (spearfish sample data) to SVG format, include attribute str1 (name):
v.out.svg
input=archsites
output=/tmp/output.svg
type=point
precision=0
attrib=str1
Last changed: $Date: 2006/07/22 14:36:41 $