<div dir="ltr">Hi everyone,<div><br></div><div>I've been using the `vtkUnstructuredGridReader` and the `vtkXMLUnstructuredGridReader` for a while now to read VTK/VTU meshes, e.g.,</div><div>```</div><div><div>        reader = vtk.vtkUnstructuredGridReader()</div><div>        reader.SetFileName(filename)</div><div>        reader.Update()</div><div>        vtk_mesh = reader.GetOutput()</div></div><div>```</div><div>and then</div><div>```</div><div><div>    points = vtk.util.numpy_support.vtk_to_numpy(</div><div>            vtk_mesh.GetPoints().GetData()</div><div>            )</div></div><div>```</div><div>etc. From the documentation, it seemed easy enough to phase in the `vtkXdmfReader`. However,</div><div>```</div><div><div>AttributeError: 'vtkIOXdmf2Python.vtkXdmfReader' object has no attribute 'GetOutput'</div></div><div>```</div><div>Any hints on how to use the `vtkXdmfReader`?</div><div><br></div><div>Cheers,</div><div>Nico</div><div><br></div><div>[1] <a href="http://www.vtk.org/doc/nightly/html/classvtkXdmfReader.html">http://www.vtk.org/doc/nightly/html/classvtkXdmfReader.html</a><br></div></div>