Turrustrial is an experimental geostats library written entirely in rust with a focus on performance.
Example
// Read point cloud from file.
let cond = from_csv_index
.expect;
// Some function create the blocks.
let blocks = get_blocks;
// Create a group provider
let groups = optimized_groups;
// Variogram rotation
let vgram_rot = from_euler_angles;
// Variogram range
let range = new;
// Variogram sill
let sill = 1.0;
// Create a composite variogram
let spherical_vgram = new;
// Create search ellipsoid
let search_ellipsoid = new;
// Create default conditioning params
let params = default;
// Estimate grades using ordinary kriging
let values = estimate;