How to save point coordinates in csv after doing Resample to Image?

Hi,

I have my simulation data (i.e., pressure data) in 2D slices over time (.vtk files). I loaded my data in Paraview and reduced the domain as necessary. As my grid was unstructured and I needed a uniform grid, I used Resample to Image. However, once I saved my data in .csv, it just saved the time and pressure. I need to save the point0 (x) and point1 (y). Is there any way to do it? Please let me know.
For example, this is what it is currently saving.
Screenshot 2024-10-01 085249
but I need to save it like this
Screenshot 2024-10-01 085329

point coordinates are implicit with an image data, this is why they are not saved, if you want to save them you can generate them first using a calculator.

It worked. Thank you.