Skip to content
Discussion options

You must be logged in to vote

@alexandrebtessael - Currently the internal table functions only support structured formats. For my use cases, I use python to process the unstructured data and convert it into an equivalent structured table. While this requires you to choose a table resolution, it gives you access to the wide variety of interpolators in scipy. For example:

from scipy.interpolate import LinearNDInterpolator
import numpy as np

# Target grid axes
axes = [np.linspace(-1, 1, 21),
        np.linspace(-1, 1, 21),
        np.linspace(-1, 1, 21)]

# Unstructured data
xyz = np.random.random((100, 3))
v = np.random.random(100)

# Interpolate data
grid = np.meshgrid(axes[0], axes[1], axes[2], indexing='ij')
v_interp =

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by cssherman
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants