<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
</head>
<body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; color: rgb(0, 0, 0); font-size: 14px; ">
<div>
<div style="font-family: Georgia, sans-serif; ">This is a python script, and <u>I haven't actually run this</u></div>
<div style="font-family: Georgia, sans-serif; ">but it should work something like the following:</div>
<div style="font-family: Georgia, sans-serif; "><br>
</div>
<div><font class="Apple-style-span" face="Courier">import glob, vtk</font></div>
<div><font class="Apple-style-span" face="Courier"><br>
</font></div>
<div><font class="Apple-style-span" face="Courier"># get a list of VTK polydata files in your current directory</font></div>
<div><font class="Apple-style-span" face="Courier">files = glob.glob("*vtp")</font></div>
<div><font class="Apple-style-span" face="Courier"><br>
</font></div>
<div><font class="Apple-style-span" face="Courier"># create an append filter to hold your data</font></div>
<div><font class="Apple-style-span" face="Courier">append = vtk.vtkAppendPolyData()</font></div>
<div><font class="Apple-style-span" face="Courier"><br>
</font></div>
<div><font class="Apple-style-span" face="Courier"># loop over your files </font>
</div>
<div><font class="Apple-style-span" face="Courier">for f in files:</font></div>
<div><font class="Apple-style-span" face="Courier">  rdr = vtk.vtkPolyDataReader()</font></div>
<div><font class="Apple-style-span" face="Courier">  rdr.SetFileName(f)</font></div>
<div><font class="Apple-style-span" face="Courier">  append.AddInputData(rdr.GetData())</font></div>
<div><font class="Apple-style-span" face="Courier"><br>
</font></div>
<div><font class="Apple-style-span" face="Courier"># make sure your data is updated</font></div>
<div><font class="Apple-style-span" face="Courier">append.Update()</font></div>
<div><font class="Apple-style-span" face="Courier"><br>
</font></div>
<div><font class="Apple-style-span" face="Courier"># write out your appended data</font></div>
<div><font class="Apple-style-span" face="Courier">writer = vtk.vtkPolyDataWriter()</font></div>
<div><font class="Apple-style-span" face="Courier">writer.SetFileName("big_glob_of_polydata.vtp")</font></div>
<div><font class="Apple-style-span" face="Courier">writer.SetInputConnection(append.GetOutputPort())</font></div>
<div><font class="Apple-style-span" face="Courier">writer.Write()</font></div>
</div>
<div style="font-family: Georgia, sans-serif; "><br>
</div>
<div style="font-family: Georgia, sans-serif; ">On 9/25/14 3:11 PM, "jetvermillion" <<a href="mailto:mattgoh01@gmail.com">mattgoh01@gmail.com</a>> wrote:</div>
<div style="font-family: Georgia, sans-serif; "><br>
</div>
<blockquote id="MAC_OUTLOOK_ATTRIBUTION_BLOCKQUOTE" style="font-family: Georgia, sans-serif; border-left-color: rgb(181, 196, 223); border-left-width: 5px; border-left-style: solid; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 5px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 5px; ">
<div>Thanks for the link. Unfortunately I'm not a programmer by any means, so I'm</div>
<div>still a bit lost. I have VTK and vtkAppendFilter built on my machine. Could</div>
<div>you give me an example on how to read in the data using vtkPolyDataReader? I</div>
<div>have a general understanding on what tools' functions, but not so much on</div>
<div>how to execute them. Thank you</div>
<div><br>
</div>
<div><br>
</div>
<div><br>
</div>
<div>--</div>
<div>View this message in context: <a href="http://vtk.1045678.n5.nabble.com/combine-vtk-tp5728850p5728900.html">
http://vtk.1045678.n5.nabble.com/combine-vtk-tp5728850p5728900.html</a></div>
<div>Sent from the VTK - Users mailing list archive at Nabble.com.</div>
<div>_______________________________________________</div>
<div>Powered by www.kitware.com</div>
<div><br>
</div>
<div>Visit other Kitware open-source projects at <a href="http://www.kitware.com/opensource/opensource.html">
http://www.kitware.com/opensource/opensource.html</a></div>
<div><br>
</div>
<div>Please keep messages on-topic and check the VTK FAQ at: <a href="http://www.vtk.org/Wiki/VTK_FAQ">
http://www.vtk.org/Wiki/VTK_FAQ</a></div>
<div><br>
</div>
<div>Follow this link to subscribe/unsubscribe:</div>
<div><a href="http://public.kitware.com/mailman/listinfo/vtkusers">http://public.kitware.com/mailman/listinfo/vtkusers</a></div>
<div><br>
</div>
<div><br>
</div>
</blockquote>
</body>
</html>