o

geotrellis.raster.interpolation

InverseDistanceWeighted

object InverseDistanceWeighted

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. InverseDistanceWeighted
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. case class Options(radiusX: Double = Double.PositiveInfinity, radiusY: Double = Double.PositiveInfinity, rotation: Double = 0.0, weightingPower: Double = 2.0, smoothingFactor: Double = 0.0, equalWeightRadius: Double = 0.0000000000001, cellType: CellType = IntConstantNoDataCellType, onSet: (Double) ⇒ Double = x => x) extends Product with Serializable

Value Members

  1. def apply[D](points: Traversable[PointFeature[D]], rasterExtent: RasterExtent, options: Options = Options.DEFAULT)(implicit ev: (D) ⇒ Double): Raster[Tile]

    Compute an Inverse Distance Weighting raster over the given extent from the given set known-points.

    Compute an Inverse Distance Weighting raster over the given extent from the given set known-points. Please see https://en.wikipedia.org/wiki/Inverse_distance_weighting for more details. Implementation taken partially from GDAL GDALGridInverseDistanceToAPower

    points

    A collection of known-points

    rasterExtent

    The study area

    returns

    The data interpolated across the study area

  2. object Options extends Serializable