DESCRIPTION

v.out.svg converts GRASS vector data to SVG (Scalable Vector Graphics) code notation.

USAGE

v.out.svg input=name output=name type=name [precision=value] [field=value] [attrib=name[,name,...]]

PARAMETERS

      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

EXAMPLE

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

REFERENCES

Modul v.out.svg at svg.cc
SVG (Scalable Vector Graphics) at w3c.org

SEE ALSO

AUTHOR

Klaus Förster, <klaus@svg.cc>, Innsbruck, Austria

Last changed: $Date: 2006/07/22 14:36:41 $