0

I need to write a xml vtk file with python. Specifically in a StructuredGrid. I have the coordinata of x, y, z axis and the value of x,y,z components for every point in the space. How can i write this file?

user2046107
  • 19
  • 2
  • 3

2 Answers2

1

(edit) You can do that through this function (in python)

def writeVtkStructuredGrid(StructuredGrid, file_name):
    """
    StructuredGrid  : StructuredGrid input object
    file_name   : output xml path file (example: 'out.vtp')
    """

    sg = vtkXMLStructuredGridWriter()
    sg.SetFileName(file_name)
    sg.SetInput(StructuredGrid)
    sg.Write()

the documentation about vtkXMLPolyDataWriter object is in: vtkXMLPolyDataWriter class reference

ljofre
  • 314
  • 5
  • 18
  • He is referring to a vtkStructuredGrid file and not a vtkPolyData file. I dont't think he has a vtkStructuredGrid built yet and needs to do that from his current data. – andybauer Feb 07 '13 at 19:06
-1

Please check this Stackoverflow link tweaking the commented code you can get your work done. StackOverflow Link. concrete example from tvtk

A example code is

from numpy import mgrid, empty, sin, pi
from tvtk.api import tvtk, write_data

# Generate some points.
x, y, z = mgrid[1:6:11j, 0:4:13j, 0:3:6j]
base = x[..., 0] + y[..., 0]
# Some interesting z values.
for i in range(z.shape[2]):
        z[..., i] = base * 0.25 * i

# The actual points.
pts = empty(z.shape + (3,), dtype=float)
pts[..., 0] = x
pts[..., 1] = y
pts[..., 2] = z

# Simple scalars.
scalars = x * x + y * y + z * z
# Some vectors
vectors = empty(z.shape + (3,), dtype=float)
vectors[..., 0] = (4 - y * 2)
vectors[..., 1] = (x * 3 - 12)
vectors[..., 2] = sin(z * pi)

# We reorder the points, scalars and vectors so this is as per VTK's
# requirement of x first, y next and z last.
pts = pts.transpose(2, 1, 0, 3).copy()
pts.shape = pts.size / 3, 3
scalars = scalars.T.copy()
vectors = vectors.transpose(2, 1, 0, 3).copy()
vectors.shape = vectors.size / 3, 3

# Create the dataset.
sg = tvtk.StructuredGrid(dimensions=x.shape, points=pts)
sg.point_data.scalars = scalars.ravel()
sg.point_data.scalars.name = 'temperature'
sg.point_data.vectors = vectors
sg.point_data.vectors.name = 'velocity'
write_data(sg, 'test') # creates test.vtu xml file
#write_data(sg, 'test.vtk') # creates test.vtk
Community
  • 1
  • 1
abhra
  • 174
  • 2
  • 6