One possible reason may be the different order of the data.<br><br>Looks like your original data stored in the order (Row major format):<br><br>for i=<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; for j=<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; for k=<br><br>But paraview is reading as (Column major format):<br>
<br>for k=<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; for j=<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; for i=<br><br>If this is the case, you should write the data in correct order.<br><br>Good luck!<br><br><br><div class="gmail_quote">On Fri, Oct 31, 2008 at 1:35 PM, Lester Anderson <span dir="ltr">&lt;<a href="mailto:lester_anderson1963@hotmail.com">lester_anderson1963@hotmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">



<div>
Hello all<br>
&nbsp;<br>
I have started to compile myhuge dataset and I noticed a bit of a problem in terms of the coordinates, as indicated by the cube axes. I have attached a couple small jpegs to show what I mean. PV_test1.JPG is a screenshot from Paraview and PV_test2.jpg is a image from SURFER where I gridded the data up from XYZ files. The data in SURFER are gridded and oriented correctly with respect to the axes whereas the data as displayed in Paraview are rotated by 90 degrees it seems. This is the header file I have used to test the data:<br>

&nbsp;<br>
# vtk DataFile Version 3.0<br>vtk output<br>ASCII<br>DATASET STRUCTURED_POINTS<br>DIMENSIONS 151 151 2<br>SPACING 200 -200 -100<br>ORIGIN 291024 2055975 0<br>POINT_DATA 45602<br>SCALARS density double<br>LOOKUP_TABLE default<br>
2.28<br>2.28<br>2.28<br>
&nbsp;<br>
Any ideas how I can get the data oriented correctly to match the output of SURFER?<br>
&nbsp;<br>
Thanks<br><font color="#888888">
&nbsp;<br>
Lester<br></font><div class="WgoR0d"><br><hr>For the best free wallpapers from MSN  <a href="http://wallpapers.msn.com/?ocid=%5BB001MSN42A0716B%5D" target="_blank">Click here!</a></div></div>
<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" target="_blank">http://www.paraview.org/mailman/listinfo/paraview</a><br>
<br></blockquote></div><br>