Did you ever figure this out?  I&#39;m running into the exact same thing.<div><br></div><div>I just need to get the times associated with each timestep from an Exodus file.  Everything else is working beautifully... I just want to display the current time in my GUI.</div>
<div><br></div><div>Any help here would be greatly appreciated!</div><div><br></div><div>Derek</div><div class="gmail_extra"><br><br><div class="gmail_quote">On Mon, Sep 10, 2012 at 10:44 AM, Nico Schlömer <span dir="ltr">&lt;<a href="mailto:nico.schloemer@gmail.com" target="_blank">nico.schloemer@gmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">I wasn&#39;t quite sure if this is the same thing since I then get<br>
<br>
================ *snip* ================<br>
rdr.GetOutputPortInformation(0).Get(vtkStreamingDemandDrivenPipeline.TIME_STEPS())<br>
---------------------------------------------------------------------------<br>
TypeError                                 Traceback (most recent call last)<br>
&lt;ipython-input-10-dae571687634&gt; in &lt;module&gt;()<br>
----&gt; 1 rdr.GetOutputPortInformation(0).Get(vtkStreamingDemandDrivenPipeline.TIME_STEPS())<br>
<br>
TypeError: arguments do not match any overloaded methods<br>
================ *snap* ================<br>
<br>
--Nico<br>
<br>
<br>
<br>
On Mon, Sep 10, 2012 at 2:18 PM, David Thompson<br>
<div class="HOEnZb"><div class="h5">&lt;<a href="mailto:david.thompson@kitware.com">david.thompson@kitware.com</a>&gt; wrote:<br>
&gt; Hi Nico,<br>
&gt;<br>
&gt;&gt; rdr = vtkExodusIIReader()<br>
&gt;&gt; ...<br>
&gt;&gt; rdr.GetOutputInformation(0)<br>
&gt;&gt;<br>
&gt;&gt; yields and error saying that &quot;GetOutputInformation&quot; isn&#39;t a member of<br>
&gt;&gt; vtkExodusIIReader.<br>
&gt;&gt; From &lt;<a href="http://www.vtk.org/doc/nightly/html/classvtkExodusIIReader-members.html" target="_blank">http://www.vtk.org/doc/nightly/html/classvtkExodusIIReader-members.html</a>&gt;<br>
&gt;&gt; I see that it should be there though. Might this be a bug in the<br>
&gt;&gt; Python interface? This is with VTK 5.8.0.<br>
&gt;<br>
&gt; I believe in VTK 5.8 it was named GetOutputPortInformation().<br>
&gt;<br>
&gt;   <a href="http://www.vtk.org/doc/release/5.8/html/a00128.html" target="_blank">http://www.vtk.org/doc/release/5.8/html/a00128.html</a><br>
&gt;<br>
&gt;         David<br>
&gt;<br>
&gt;&gt; On Sat, Sep 8, 2012 at 6:26 PM, David Thompson<br>
&gt;&gt; &lt;<a href="mailto:david.thompson@kitware.com">david.thompson@kitware.com</a>&gt; wrote:<br>
&gt;&gt;&gt; Hi Nico,<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; after having read a particular (integer) time step from an Exodus file<br>
&gt;&gt;&gt;&gt; with the vtkExodusIIReader,<br>
&gt;&gt;&gt;&gt; <a href="http://www.vtk.org/doc/nightly/html/classvtkExodusIIReader.html" target="_blank">http://www.vtk.org/doc/nightly/html/classvtkExodusIIReader.html</a>, how<br>
&gt;&gt;&gt;&gt; do I extract the actual (float/double) time value that&#39;s associated<br>
&gt;&gt;&gt;&gt; with it?<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Filters that generate temporal data should set the vtkStreamingDemandDrivenPipeline::TIME_STEPS() key on their corresponding output&#39;s vtkInformation object. Access to any vtkAlgorithm&#39;s output information is available via the GetOutputInformation() method.<br>

&gt;&gt;&gt;<br>
&gt;&gt;&gt; Using the exodus reader on can.ex2 as an example, here&#39;s a vtkpython script to get time step information:<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; from vtk import *<br>
&gt;&gt;&gt; rdr = vtkExodusIIReader()<br>
&gt;&gt;&gt; rdr.SetFileName(&#39;/path/to/ParaViewData/Data/can.ex2&#39;)<br>
&gt;&gt;&gt; rdr.Update()<br>
&gt;&gt;&gt; rdr.GetOutputInformation(0).Get(vtkStreamingDemandDrivenPipeline.TIME_STEPS())<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; This returns a vector of doubles. You can use the integer time step as an index into the vector.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;        David<br>
&gt;<br>
_______________________________________________<br>
Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
<br>
Visit other Kitware open-source projects at <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
<br>
Please keep messages on-topic and check the VTK FAQ at: <a href="http://www.vtk.org/Wiki/VTK_FAQ" target="_blank">http://www.vtk.org/Wiki/VTK_FAQ</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://www.vtk.org/mailman/listinfo/vtkusers" target="_blank">http://www.vtk.org/mailman/listinfo/vtkusers</a><br>
</div></div></blockquote></div><br></div>