TOOLS

Convert vtk data array to another vtk data array

General

Often, meshes contain geometrical data in common with data used for process simulation. Usually, such data used by the process simulation is associated to the mesh nodes or to the mesh cells. In the VTK unstructured grid file format the geometrical and the process data information is stored in one file - in so called data arrays.

Some tools, for instance ParaView, export data arrays always using a floating point data type. OpenGeoSys expects the ‘MaterialIDs’ cell data array to have int data-type.

Other tools, for instance GOCAD, export data associated with cells or nodes sometimes as float. The tool can convert the cell data arrays to double data-type.

Usage

convertVtkDataArrayToVtkDataArray
    --in-mesh <file name>
    --existing-property-name <name of the cell data array as string>
    --out-mesh <filename for the output mesh>
    --new-property-name <name of the new cell data array>
    --new-property-data-type <data type as string>

Example

convertVtkDataArrayToVtkDataArray
    -i doubleValuedMaterialIDs.vtu
    -e MaterialIDs_double
    --new-property-data-type int
    -n MaterialIDs
    -o intValuedMaterialIDs.vtu

This article was written by Thomas Fischer. If you are missing something or you find an error please reach out to us on our forum.
Generated with Hugo 0.164.0 in CI job 825193 | Last revision: April 20, 2026
Commit: refactor(MeshLib): remove PropertyVector::push_back 870422dde  | Edit this page on