Is this a multiblock dataset? ParaView 2.4 and VTK 5 support multiblock datasets. You have to create a .vtm file. The vtm file supports multi-block as well as hierarchical structured AMR datasets. For more information, look at the header files of these:
<br><br>vtkMultiGroupDataSet<br>vtkMultiBlockDataSet<br>vtkHierarchicalDataSet<br>vtkHierarchicalBoxDataSet<br>vtkXMLMultiGroupDataSetReader<br>vtkXMLMultiBlockDataSetReader<br><br>The format is simple. The vtm file is a meta-file that points to other XML files. Here is a small example:
<br><br>&lt;?xml version=&quot;1.0&quot;?&gt;<br>&lt;VTKFile type=&quot;vtkMultiBlockDataSet&quot; version=&quot;0.1&quot; byte_order=&quot;LittleEndian&quot; compressor=&quot;vtkZLibDataCompressor&quot;&gt;<br>&nbsp; &lt;vtkMultiBlockDataSet&gt;
<br>&nbsp;&nbsp;&nbsp; &lt;DataSet group=&quot;0&quot; dataset=&quot;0&quot; file=&quot;test/test_0.vts&quot;/&gt;<br>&nbsp;&nbsp;&nbsp; &lt;DataSet group=&quot;1&quot; dataset=&quot;0&quot; file=&quot;test/test_1.vts&quot;/&gt;<br>&nbsp;&nbsp;&nbsp; &lt;DataSet group=&quot;2&quot; dataset=&quot;0&quot; file=&quot;test/test_2.vts&quot;/&gt;
<br>&nbsp; &lt;/vtkMultiBlockDataSet&gt;<br>&lt;/VTKFile&gt;<br><br>You can also have distributed multi-block datasets. Each group corresponds to one block and can contain one or more datasets. These &quot;sub blocks&quot; are the distributed data.
<br><br>-Berk<br><br><br><div><span class="gmail_quote">On 11/11/05, <b class="gmail_sendername">Steve Hudson</b> &lt;<a href="mailto:s_hudson13@hotmail.com">s_hudson13@hotmail.com</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
I am using Paraview version 2.2 to read a StructuredGrid. If I create more<br>than one &quot;piece&quot; in the same file, it displays only the last piece entered<br>and ignores the others. Is this what you would expect? I would like to
<br>display multiple pieces using in the same file. If this cannot be done I<br>guess I will have to use an unstructured grid.<br><br>Thanks<br><br>Steve<br><br><br>_______________________________________________<br>ParaView mailing list
<br><a href="mailto:ParaView@paraview.org">ParaView@paraview.org</a><br><a href="http://www.paraview.org/mailman/listinfo/paraview">http://www.paraview.org/mailman/listinfo/paraview</a><br></blockquote></div><br>