1v.out.vtk(1)                  Grass User's Manual                 v.out.vtk(1)
2
3
4

NAME

6       v.out.vtk  - Converts a GRASS binary vector map to VTK ASCII output.
7

KEYWORDS

9       vector
10

SYNOPSIS

12       v.out.vtk
13       v.out.vtk help
14       v.out.vtk [-c] input=name  [output=string]   [type=string[,string,...]]
15       [dp=integer]   [scale=float]   [layer=integer]   [--verbose]  [--quiet]
16
17   Flags:
18       -c
19           Correct the coordinates to fit the VTK-OpenGL precision
20
21       --verbose
22           Verbose module output
23
24       --quiet
25           Quiet module output
26
27   Parameters:
28       input=name
29           Name of input vector map
30
31       output=string
32           Path to resulting VTK file
33
34       type=string[,string,...]
35           Type
36           Feature type(s)
37           Options: point,kernel,centroid,line,boundary,area,face
38           Default: point,kernel,centroid,line,boundary,area,face
39
40       dp=integer
41           Number of significant digits (floating point only)
42
43       scale=float
44           Scale factor for elevation
45           Default: 1.0
46
47       layer=integer
48           Layer number
49           Default: 1
50

DESCRIPTION

52       v.out.vtk converts a GRASS vector map in binary format to the VTK ASCII
53       output.
54
55       If  the  output parameter is not given, the output will be send to std‐
56       out.
57

NOTES

59       The following vector types can be exported together in  one  VTK  ascii
60       file:
61
62                     point
63
64                     line
65
66                     centroid
67
68                     boundary
69
70                     area
71
72                     face
73       Category  data  (cat)  for  the  selected vector type and layer will be
74       written as scalar data with name "cat_{vectorname}". If no cat  exists,
75       the  value  will  set  to -1 as normal cat's are always positive.  If a
76       vector has more categories in one layer, only the first  category  will
77       be exported.
78       3d  vectors  are  supported  by  default.  The  created VTK data always
79       includes x, y and z coordinates (z = 0 if not a 3d vector  map).   Note
80       that  you  can  easily  convert  your  2d  vectors into 3d vectors with
81       v.drape.
82       Because of the 32bit limits of OpenGL which is used by VTK,  visualisa‐
83       tion errors may occure if the grass region contains coordinates greater
84       than 1.000.000 and vector coordinates with 0.01 - 0.001 meters precisi‐
85       son.  For  this  reason,  the  flag "-c" was added. The coordinates are
86       transformed to smaller coordinates (by decreasing the coordinates  with
87       the region center).
88       If  the  "-c"  flag  is used and the data should be visualised together
89       with other data exported via *.out.vtk modules, be sure the  "-c"  flag
90       was  also set in these modules.  But this will only work with data from
91       the SAME location (The reference point for the coordinates  transforma‐
92       tion is based on the default region).
93       The GRASS vector data is converted into the polydata format of VTK:
94
95                     vtk Vertices -- representing points and centroids
96
97                     vtk lines -- representing lines and boundaries
98
99                     vtk polygons -- representing areas and faces
100
101       The VTK file can be visualized with VTK Toolkit, Paraview and MayaVi.
102
103   Attention
104       If areas or faces are exported, the data have to be triangulated within
105       Paraview or MayaVi.
106

EXAMPLE

108       Spearfish example:
109
110       Export the soils with cats in layer 1:
111       v.out.vtk input=soils type=area layer=1 output=/tmp/soils.vtk
112        Export the streams with cats in layer 1:
113       v.out.vtk input=streams type=line layer=1 output=/tmp/streams.vtk
114        Write the archsite vtk output to stdout with cats in layer 1:
115       v.out.vtk input=archsites type=point layer=1
116
117

SEE ALSO

119        v.out.ascii
120       r.out.vtk
121       r3.out.vtk
122
123

AUTHOR

125       Soeren Gebbert
126
127       Full index
128
129       © 2003-2008 GRASS Development Team
130
131
132
133GRASS 6.3.0                                                       v.out.vtk(1)
Impressum