kriging-rs 0.4.0

Geostatistical kriging library with WASM support
Documentation
1
2
3
4
5
6
7
8
9
10
//! Space–time kriging model families.
//!
//! Mirrors the 2-D [`kriging`](crate::kriging) module but takes [`SpaceTimeCoord`] inputs
//! and a [`SpaceTimeVariogram`]. Parametrized over a [`SpatialMetric`] so the same
//! implementations work for geographic and projected spatial coordinates.

pub mod binomial;
pub mod ordinary;
pub mod simple;
pub mod universal;