<div dir="ltr">All,<div><br></div><div>I've found a problem in Paraview that seems to be in every version from 4.2 to current (4.4) which involves the selecting and exporting of points as .csv files.  This problem doesn't appear in version 4.1, and I don't recall it appearing in versions prior, but I've not tested that fully.</div><div><br></div><div>I've also only tested the problem out with moderate sized data sets (around 10k or more points) and only on a Mac Pro (with 64 Gigs of Ram).</div><div><br></div><div>To test the problem, I used the following R script will create a file named 'break.csv' (though this seems to be a problem with any large set of points) :</div><div><br></div><div>#!/usr/bin/env Rscript</div><div># cols x,y,z are position</div><div># col r is radius, col n is an index number</div><div>df=data.frame(x=rnorm(10000),y=rnorm(10000),z=rnorm(10000),n=seq(10000))</div><div>df$r=sqrt(df$x**2 + df$y**2 + df$z**2)</div><div>write.csv(df, 'break.csv', row.names=F, quote=F)</div><div><br></div><div><br></div><div><br></div><div>Load the file in Paraview, then add 'Table To Points', assigning X,Y and Z appropriately.</div><div>Enable the 'Table To Points' filter in the 3D view and use the 'Select points through (g)' button on the 3D view to select about half of the points.</div><div><br></div><div>In the Spreadsheet view, make sure the 'TableToPoints*' filter is selected and click the 'Show only selected elements'.</div><div><br></div><div>With the Spreadsheet view still active:</div><div>File -> Export Scene...</div><div>and save the file as a .CSV.</div><div><br></div><div>If you load the newly saved .CSV file and apply 'Table To Points' to Points:0, Points:1 and Points:2, the data is a mess (you may have to reset your view to see some of the mess.)</div><div><br></div><div>Is anybody else able to reproduce this?  If so, is there already an open ticket somewhere, or does a bug report need to be written?</div><div><br></div><div>-David Ortley.</div></div>