That is exactly what I was looking for!<br>Thank you very much.<br><br>Julien<br><br><div><span class="gmail_quote">2007/6/13, Olivier Ricou &lt;<a href="mailto:olivier@ricou.eu.org">olivier@ricou.eu.org</a>&gt;:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
die 13/06/07, ad 12h13, Jul D &lt;<a href="mailto:juliolatengo@gmail.com">juliolatengo@gmail.com</a>&gt; dixit :<br>&gt; Hello all,<br>&gt;<br>&gt; I&#39;m currently using Paraview 3.0.0 to visualize Ensight data. I am able to
<br>&gt; plot a 1D graph with the &quot;plot over line&quot; filter. I would like to process<br>&gt; those results but unlike in Paraview 2.x, it is here not possible to export<br>&gt; the data in a *.csv file. Do you think a Python script would do this? I
<br>&gt; found very few documentation on Python scripting in Paraview.<br><br>do you plot with ProbeLine then with that element activated, choose<br>Programmable Filter and put this script :<br><br>print &quot;------------------&quot;
<br>pdi = self.GetInput()<br>nbp = pdi.GetNumberOfPoints()<br>vals = pdi.GetPointData().GetScalars(&quot;p&quot;)<br>for i in range(0,nbp):<br>&nbsp;&nbsp;print &quot;%d : %e&quot; % (i,vals.GetValue(i))<br>print &quot;------ done ----------&quot;
<br><br>of course you have to print in the csv format and to choose your variable<br>(instead of &quot;p&quot;).<br><br>Olivier.<br><br>-----BEGIN PGP SIGNATURE-----<br>Version: GnuPG v1.4.3 (GNU/Linux)<br><br>iD8DBQFGb9feXwl5UewLtBARApgsAJ4pt5vNXPM73TChu0MhfzvC3YMtsQCeNOb8
<br>HkuWtAmNwUsxUZaPT1r02ag=<br>=YWUv<br>-----END PGP SIGNATURE-----<br><br></blockquote></div><br>