Hey there,
I'm currently in the process of creating a 3D model that involves interpolating pressure values across a 3D surface. To achieve this, I have access to 144 coordinates with corresponding pressure values that serve as known points for my model.
The main goal is to generate a detailed pressure map throughout the entire model based on these initial data points.
My approach has involved using the Thinplate node package. However, during implementation, I encountered the following error:
rbf failed to compile with given centers.
Centers must be unique :/
You can find the code snippet below where I pass array values into the function:
If you have any insights on what might have caused the issue or alternate methods to help me achieve the same outcome, please do share your thoughts.
Thanks, Adam
Code:
const sensor_locations = [insert array values here]
const sensor_pressures_raw = [insert array values here]
// rest of the code goes here...
fitpoints
individual coordinate arrays would be listed here...