convert from .csv data

hi,I want to convert .csv(or .txt) data to .vtk format in Paraview but haven’t found the solution.Could you please tell me how to do it?Thanks.

hi,Does paraview have such a function? Input. CSV data file and convert it to. VTK data file.

You are going to have to be more specific on what you are trying to do. ParaView interprets .csv files as a table (naturally), but the .vtk file format does not support tables. The .vtk file format is for geometric structures (like meshes in space), not tables.

If your csv file is actually specifying data in spatial domain, you typically use filters like Table to Points or Table to Structured Grid to convert the data in the .csv file to points in 3D space (which can be represented in a vtk file).

yes,it contains geometric data and can be converted to 3D space points.so how to export it as .vtk format?

Load the .csv file in ParaView. Run the Table to Points filter on it. Save the data as a .vtk file.