Combine Tables

This example will demonstrate how to to merge to vtkTable objects with the same number of rows into a single vtkTable.

This example demos PVGeo.filters.CombineTables

Please note that this example only works on version of PyVista>=0.22.0

import numpy as np
import pyvista as pv

from PVGeo.filters import CombineTables

Create some input tables

t0 = pv.Table()
t1 = pv.Table()

# Populate the tables
n = 100
titles = ("Array 0", "Array 1", "Array 2")
arr0 = np.random.random(n)  # Table 0
arr1 = np.random.random(n)  # Table 0
t0[titles[0]] = arr0
t0[titles[1]] = arr1
arr2 = np.random.random(n)  # Table 1
t1[titles[2]] = arr2
arrs = [arr0, arr1, arr2]
t0
HeaderData Arrays
TableInformation
N Rows100
N Arrays2
NameTypeN CompMinMax
Array 0float6412.183e-039.941e-01
Array 1float6415.599e-039.985e-01


t1
HeaderData Arrays
TableInformation
N Rows100
N Arrays1
NameTypeN CompMinMax
Array 2float6412.889e-039.866e-01


# Now use the `CombineTables` filter:
output = CombineTables().apply(t0, t1)
output
HeaderData Arrays
TableInformation
N Rows100
N Arrays3
NameTypeN CompMinMax
Array 0float6412.183e-039.941e-01
Array 1float6415.599e-039.985e-01
Array 2float6412.889e-039.866e-01


# Here I verify the result
for i in range(len(titles)):
    arr = output[titles[i]]
    assert np.allclose(arr, arrs[i], rtol=0.0001)

Total running time of the script: (0 minutes 0.004 seconds)

Gallery generated by Sphinx-Gallery