CSV Writer from VTK

Hi everyone,

I am trying to extract data from a VTK in the form of CSV. Now, I want it to have columns of X, Y, Z, and the Resistivity. I have used the CSV writer for this:

image

Now, if I click on point data, only XYZ columns are generated in the CSV. if I choose cell data, only resistivity data shows up. if I choose field data, I get a blank CSV. I am not certain if the cells in cell data CSV and point data CSV match each other so I did not join them into one.

Here’s the VTK file:

Many thanks,
Raymond

HI @rmdmagalong

You are probably looking to use CellDataToPointData before save the output as .csv

Best,

It worked like a charm! Thanks, Mathieu!

Regards,
Raymond

1 Like