pyinterp.RTree3DFloat64.kriging

pyinterp.RTree3DFloat64.kriging#

RTree3DFloat64.kriging(self, coordinates: numpy.ndarray[dtype=float64, shape=(*, *), writable=False], config: pyinterp.core.config.rtree.Kriging | None = None) tuple[numpy.ndarray[dtype=float64, shape=(*), order='C'], numpy.ndarray[dtype=uint32, shape=(*), order='C']]#

Kriging interpolation.

Interpolate values at query locations using kriging.

Parameters:
  • coordinates – Query coordinates, shape (n, 3) or (n, 2).

  • config – Configuration for kriging interpolation.

Returns:

  • values: Kriged values at query points

  • neighbor_counts: Number of neighbors used in interpolation

Return type:

Tuple of (values, neighbor_counts) where