<font color="#000000"><font face="arial,helvetica,sans-serif">Thanks a lot for your answer. I will use your suggestion. Unfortunately, I am know facing the problem of getting those screenshots remotely, without X server, and I have not been able to compile paraview with offscreen support. When I finally got it, I will return to the script. Thanks again.<br clear="all">


</font></font><br style="font-family:arial,helvetica,sans-serif"><span style="font-family:arial,helvetica,sans-serif">Best regards / Cordialmente,</span><br style="font-family:arial,helvetica,sans-serif"><span style="font-family:arial,helvetica,sans-serif"><br>


</span><div><span style="font-family:arial,helvetica,sans-serif">William-Fernando Oquendo</span><div><div style="font-family:arial,helvetica,sans-serif">--------------------------</div><div style="font-family:arial,helvetica,sans-serif">


Este correo puede carecer de tildes o eñes debido al teclado. </div><div style="font-family:arial,helvetica,sans-serif"><br></div></div></div><br>
<br><br><div class="gmail_quote">On Tue, Apr 24, 2012 at 10:37 AM, Utkarsh Ayachit <span dir="ltr">&lt;<a href="mailto:utkarsh.ayachit@kitware.com" target="_blank">utkarsh.ayachit@kitware.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 wouldn&#39;t go about loading the state again and again merely to change<br>
the filename, instead change the filename directly on the reader<br>
proxy.<br>
<br>
Use GetSources() to get a map of all the sources in the state. Looking<br>
at the names, you should be able to figure out what&#39;s the reader<br>
proxy. Then you can change the FileName on it.<br>
<br>
Utkarsh<br>
<div><div><br>
On Sat, Apr 21, 2012 at 5:07 PM, William Oquendo &lt;<a href="mailto:woquendo@gmail.com" target="_blank">woquendo@gmail.com</a>&gt; wrote:<br>
&gt; In the following link you can find two examples of vtp file and the model<br>
&gt; state file. Thanks.<br>
&gt; <a href="http://goo.gl/XjPpE" target="_blank">http://goo.gl/XjPpE</a><br>
&gt;<br>
&gt;<br>
&gt; Best regards / Cordialmente,<br>
&gt;<br>
&gt; William-Fernando Oquendo<br>
&gt; --------------------------<br>
&gt; Este correo puede carecer de tildes o eñes debido al teclado.<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; On Sat, Apr 21, 2012 at 4:03 PM, William Oquendo &lt;<a href="mailto:woquendo@gmail.com" target="_blank">woquendo@gmail.com</a>&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; Dear all,<br>
&gt;&gt; I am currently able to visualize correctly in ParaView a .vtp file for<br>
&gt;&gt; each time step of a simulation, and to print a screenshot for each. I want<br>
&gt;&gt; to do that in batch, but I want to keep the same state for each one (view<br>
&gt;&gt; point, filters applied, etc). I Have already saved the state into a .psvm<br>
&gt;&gt; file , and I tried to write a python script which, after being run by<br>
&gt;&gt; pvbatch, will (hopefully) print the screenshots. But, unfortunately, it is<br>
&gt;&gt; not working. I tried to change the filename in the state by processing<br>
&gt;&gt; search and replace, but still is not working. For instance, it keeps working<br>
&gt;&gt; on the first data input only. I use ParaView 3.14.0 in Snow Leopard. The<br>
&gt;&gt; reader stuff (commented) is giving me errors. I am sure this is easy, but I<br>
&gt;&gt; am overwhelmed with the large amount of info about python and paraview with<br>
&gt;&gt; no reference to this issue. Please, please, any advice is greatly welcome,<br>
&gt;&gt; and I am sorry if this has been answered previously (I looked at google and<br>
&gt;&gt; the mailing list). Below is my script, which can also be found<br>
&gt;&gt; at <a href="http://pastebin.com/UkDAcnHE" target="_blank">http://pastebin.com/UkDAcnHE</a> .<br>
&gt;&gt;<br>
&gt;&gt; #!/bin/python<br>
&gt;&gt; import glob, string, os, commands<br>
&gt;&gt; from paraview.simple import *<br>
&gt;&gt;<br>
&gt;&gt; #help(servermanager)<br>
&gt;&gt; # vtp files are inside the local subdir DISPLAY<br>
&gt;&gt; files = (commands.getoutput(&quot;ls DISPLAY/data-*.vtp | grep -v<br>
&gt;&gt; contacts&quot;)).split()<br>
&gt;&gt;<br>
&gt;&gt; # process each file<br>
&gt;&gt; for filename in files:<br>
&gt;&gt;     fullfn = commands.getoutput(&quot;ls $PWD/&quot; + filename).replace(&#39;/&#39;,&#39;\/&#39;)<br>
&gt;&gt;     fn = filename.replace(&#39;DISPLAY/&#39;, &#39;&#39;)<br>
&gt;&gt;     #os.system(&quot;cp ../dem_git/addons/paraview_state.pvsm tmp.pvsm&quot;)<br>
&gt;&gt;     os.system(&quot;cp ~/Desktop/state.pvsm tmp.pvsm&quot;)<br>
&gt;&gt;     os.system(&quot;sed -i.bck &#39;s/DATA.vtp/&quot; + fullfn + &quot;/1&#39; tmp.pvsm&quot;) #<br>
&gt;&gt; replace first intance with full path<br>
&gt;&gt;     os.system(&quot;sed -i.bck &#39;s/DATA.vtp/&quot; + fullfn + &quot;/1&#39; tmp.pvsm&quot;) #<br>
&gt;&gt; replace second intance with full path<br>
&gt;&gt;     os.system(&quot;sed -i.bck &#39;s/DATA.vtp/&quot; + fn + &quot;/1&#39; tmp.pvsm&quot;) # replace<br>
&gt;&gt; third with just the filename path<br>
&gt;&gt;     servermanager.LoadState(&quot;tmp.pvsm&quot;)<br>
&gt;&gt;     pm = servermanager.ProxyManager()<br>
&gt;&gt;     #reader = pm.GetProxy(&quot;sources&quot;,fullfn)<br>
&gt;&gt;     #reader.FileNames = fullfn<br>
&gt;&gt;     #reader.FileNameChanged()<br>
&gt;&gt;     #reader.UpdatePipeline()<br>
&gt;&gt;     SetActiveView(GetRenderView())<br>
&gt;&gt;     Render()<br>
&gt;&gt;     WriteImage(fn + &quot;-image.png&quot;)<br>
&gt;&gt;     os.system(&quot;rm -f tmp.pvsm&quot;)<br>
&gt;&gt;     #servermanager.Finalize()<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; Best regards / Cordialmente,<br>
&gt;&gt;<br>
&gt;&gt; William-Fernando Oquendo<br>
&gt;&gt; --------------------------<br>
&gt;&gt; Este correo puede carecer de tildes o eñes debido al teclado.<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;<br>
&gt;<br>
</div></div>&gt; _______________________________________________<br>
&gt; Powered by <a href="http://www.kitware.com/" target="_blank">www.kitware.com</a><br>
&gt;<br>
&gt; Visit other Kitware open-source projects at<br>
&gt; <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
&gt;<br>
&gt; Please keep messages on-topic and check the ParaView Wiki at:<br>
&gt; <a href="http://paraview.org/Wiki/ParaView" target="_blank">http://paraview.org/Wiki/ParaView</a><br>
&gt;<br>
&gt; Follow this link to subscribe/unsubscribe:<br>
&gt; <a href="http://www.paraview.org/mailman/listinfo/paraview" target="_blank">http://www.paraview.org/mailman/listinfo/paraview</a><br>
&gt;<br>
</blockquote></div><br>