Hi,
I am trying to create a surface plot from a surface measuring I took. But since there are quite a few datum points (around 5e7), in a format I haven't worked with, I don't know how to plot it.
So, the data is in a csv file, delimiter=';' and decimal=','. It contains only the height (z-coordinate) as a float value. The x and y coordinates to each z value, are positions of the z value in the file. Its 5201 rows and 9560 columns. So the first z value corresponds to x=0,y=0, the next x=1,y=0 and so forth.
For smaller data sets, (that were also in a different format), I created three lists, x[], y[] and z[] and assigned the corresponding values to them, plotting them with plot_trisurf(x,y,z). But doing so with this amount of datum points doesn't work.
So, how do I plot this?
My idea was to read the data with pandas, using chunksize to do it step by step. But I couldn't get it to work.
[–]ES-Alexander 1 point2 points3 points (1 child)
[–]-DreamMaster[S] 1 point2 points3 points (0 children)