Hello,

I am currently writing my visualization data to vtk-xml files in unstructured grid format. As long as I do not add any cell information, this works fine. However, as soon as I have a single cell inside my data, Paraview 3.10.1 (32 bit precompiled binary on SUSE Linux) crashes when I press "Apply" after loading the data.

In the attachment, there is a very small example of my files - can anybody see a mistake therein?

Thank you in advance,

Mathias

<VTKFile type="UnstructuredGrid" version="0.1" byte_order="BigEndian">
<UnstructuredGrid GhostLevel="0">
<Piece NumberOfPoints="8" NumberOfCells="1">
<Points>
<DataArray Name="xyz" NumberOfComponents="3" type="Float64" format="ascii">
0.0   0.0   0.0
0.0   0.0   1.0
0.0   1.0   0.0
0.0   1.0   1.0
1.0   0.0   0.0
1.0   0.0   1.0
1.0   1.0   0.0
1.0   1.0   1.0
</DataArray>
</Points>
<PointData>
</PointData>
<Cells>
<DataArray type="Int32" Name="connectivity">
0 1 2 3 4 5 6 7
</DataArray>
<DataArray type="Int32" Name="offsets">
1
</DataArray>
<DataArray type="UInt8" Name="types">
12
</DataArray>
</Cells>
<CellData>
<DataArray Name="test" NumberOfComponents="3" type="Float64" format="ascii">
1.0   0.0   0.0
</DataArray>
</CellData>
</Piece>
</UnstructuredGrid>
</VTKFile>

_______________________________________________
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview

Reply via email to