Thanks for the info.&nbsp; It occured to me also that there is likely a lot of literature about various approaches for turning this type of data into geometry in the field of computer games, which routinely use 'height field' information generated by artist tools into terrain for the purpose of rendering via triangle lists.<br><br><b><i>John Biddiscombe &lt;biddisco@cscs.ch&gt;</i></b> wrote:<blockquote class="replbq" style="border-left: 2px solid rgb(16, 16, 255); margin-left: 5px; padding-left: 5px;">      <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">  If you look in <br> <br> <a class="moz-txt-link-freetext" href="https://svn.cscs.ch/vtkContrib/trunk/vtkCSCS/vtkCSCSCommon/">https://svn.cscs.ch/vtkContrib/trunk/vtkCSCS/vtkCSCSCommon/</a><br> <br> at the vtkCSV files, I have some old code which will load CVS as polydata or as a structured points (image).<br> <br> not maintained much, but the code still compiles. I use the CSV reader for turning
 arbitrary ascii into particles, there used to be an option to generate polygons from every N or after a scalar was read in column M - but I probably broke it recently when playing with some ASCII data. <br> The user can set XColumn,Y,Z etc to tell it which to use for coordinates. There is another class which is a subclass of cvsreader called AscciParticleReader which I keep elsewhere but which uses regex patterns to find the fields you want to use for x/y/z etc<br> <br> vtk has it's own vtkCSVxxx files (+vtkDelimited text reader)and vtkTable related stuff now, so probably these are uninteresting/obsolete, but I thought I'd mention it.<br> <br> Just in case it helps anyone.<br> <br> JB<br> <br> <br> <blockquote cite="mid:e85d6c9a0710040527g2a9b6324v15d333065244d0ad@mail.gmail.com" type="cite">   <pre wrap="">If the values are in the form of an n x m matrix, perhaps we could<br>make an n column by m row spreadsheet. The column headers can be given<br>labels and if three of
 those are POINT_X, POINT_Y, POINT_Z then the<br>output would become a pointset. The rest of the columns would be point<br>data values.<br><br>Similar controls would let the user specify the geometry for the<br>structured data types.<br><br>cheers<br>Dave<br><br>On 10/3/07, Moreland, Kenneth <a class="moz-txt-link-rfc2396E" href="mailto:kmorel@sandia.gov">&lt;kmorel@sandia.gov&gt;</a> wrote:<br>  </pre>   <blockquote type="cite">     <pre wrap=""> You are not the first person to ask about this.  I was going to bring up to the development team possible ways of deriving geometric data from table/csv data.  My thought was to have a simple filter that allowed the user to identify columns in a table and then produce a poly data containing the points.  From there you could apply other filters (such as Delaunay triangulation) to construct a topology.    Do you (or anyone else) have an opinion on how to interpret tables as geometry?    -Ken      ________________________________  
 From: fredrikaustin [<a class="moz-txt-link-freetext" href="mailto:fredrikaustin@yahoo.com">mailto:fredrikaustin@yahoo.com</a>]<br> Sent: Wednesday, October 03, 2007 10:15 AM<br> To: Moreland, Kenneth; <a class="moz-txt-link-abbreviated" href="mailto:paraview@paraview.org">paraview@paraview.org</a>  Subject: RE: [Paraview] paraview novice attempts 1st viz    Thanks for the reply, Ken.   Of course I know paraview cannot interpret the data; perhaps I should have said "I was looking for a way to tell paraview that I have three columns of data, and that they correspond to points in x,y,z space respectively. Please plot the data".  This is a simple enough request, provides all the information necessary, but I could not find any UI that seemed designed for this simple purpose.   If there is not a simple way to plot such csv 3d data (as points in space, as a surface, etc), I would think there should be.  It seems a lot of data would start in this very straight-forward format.  
 -thomas blom   "Moreland, Kenneth" <a class="moz-txt-link-rfc2396E" href="mailto:kmorel@sandia.gov">&lt;kmorel@sandia.gov&gt;</a> wrote:<br><br><br>Sorry Thomas, but you are asking for the impossible.  You cannot expect<br>ParaView to magically apply semantic meaning to the columns of your data and<br>generate a topology that is not nonsense (at least, not without a lot of<br>help).  You have asked ParaView to read in a table (a csv holds a table of<br>data, no more, no less) and that is exactly what ParaView has done.  You can<br>view the data in a spreadsheet-type view and you can plot the columns of<br>data.<br><br><br><br><br><br>You should use a data format that gives the topological nature of your data.<br> If your data is arranged in a 2D grid, you can store the data in a simple<br>image format.  The simplest image format is just a 2D array written out as<br>binary data to a file (read in with the "Raw (binary) Files" reader).<br>ParaView also reads in .png files
 and it's pretty easy to extend it to read<br>other image files.<br><br><br><br><br><br>You can also stuff your data into VTK Legacy File format.  This is a simple<br>file format that supports most of the types of data that VTK can handle and<br>is pretty easy to build by hand.  You can get information about hat format<br>from the VTK User's Guide or in the following link.<br><br><br><br><br><br><a class="moz-txt-link-freetext" href="http://www.vtk.org/pdf/file-formats.pdf">http://www.vtk.org/pdf/file-formats.pdf</a>      -Ken          ________________________________    From: <a class="moz-txt-link-abbreviated" href="mailto:paraview-bounces+kmorel=sandia.gov@paraview.org">paraview-bounces+kmorel=sandia.gov@paraview.org</a> [<a class="moz-txt-link-freetext" href="mailto:paraview-bounces+kmorel=sandia.gov@paraview.org">mailto:paraview-bounces+kmorel=sandia.gov@paraview.org</a>] On<br>Behalf Of fredrikaustin<br> Sent: Wednesday, October 03, 2007 7:14 AM<br> To: <a
 class="moz-txt-link-abbreviated" href="mailto:paraview@paraview.org">paraview@paraview.org</a>  Subject: [Paraview] paraview novice attempts 1st viz      Hello all,   I'm having a difficult time viewing what must be the simplest data set possible.  I have a csv file that includes 3 columns of numbers which I'd like to view as 'elevation' type data: 1st two columns give x &amp; y coord (regular, though step-size for x and y are different), and 3rd column gives a height (the data is actually error vs. 2 different params).   I can open the file, and  see that it has read the columns of data correctly, but can't get a plot of this surface.   Seems this should be simple to view, but after blundering around the interface for too long, it is not as obvious as one would hope.   Thanks,  Thomas Blom     ________________________________    Don't let your dream ride pass you by. Make it a reality with Yahoo! Autos.      look, advertising! -&gt;    ________________________________  
 Shape Yahoo! in your own image. Join our Network Research Panel today! _______________________________________________ ParaView mailing list <a class="moz-txt-link-abbreviated" href="mailto:ParaView@paraview.org">ParaView@paraview.org</a> <a class="moz-txt-link-freetext" href="http://www.paraview.org/mailman/listinfo/paraview">http://www.paraview.org/mailman/listinfo/paraview</a>       </pre>   </blockquote>   <pre wrap=""><!---->_______________________________________________<br>ParaView mailing list<br><a class="moz-txt-link-abbreviated" href="mailto:ParaView@paraview.org">ParaView@paraview.org</a> <a class="moz-txt-link-freetext" href="http://www.paraview.org/mailman/listinfo/paraview">http://www.paraview.org/mailman/listinfo/paraview</a>   </pre> </blockquote> <br> <br> <pre class="moz-signature" cols="78">-- <br>John Biddiscombe,                            <a class="moz-txt-link-freetext" href="email:biddisco">email:biddisco</a> @ cscs.ch<br><a
 class="moz-txt-link-freetext" href="http://www.cscs.ch/about/BJohn.php">http://www.cscs.ch/about/BJohn.php</a> CSCS, Swiss National Supercomputing Centre  | Tel:  +41 (91) 610.82.07 Via Cantonale, 6928 Manno, Switzerland      | Fax:  +41 (91) 610.82.82</pre> </blockquote><br><BR><BR><P>look, advertising! -&gt;</P><p>&#32;
      <hr size=1>Need a vacation? <a href="http://us.rd.yahoo.com/evt=48256/*http://travel.yahoo.com/;_ylc=X3oDMTFhN2hucjlpBF9TAzk3NDA3NTg5BHBvcwM1BHNlYwNncm91cHMEc2xrA2VtYWlsLW5jbQ--">Get great deals 
to amazing places </a>on Yahoo! Travel.