geotrellis.raster.interpolation.Interpolation.scala Maven / Gradle / Ivy
/*
* Copyright (c) 2015 Azavea.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package geotrellis.raster.interpolation
import geotrellis.raster._
import geotrellis.vector.Extent
import geotrellis.vector.interpolation.Kriging
import spire.syntax.cfor._
object Interpolation {
/**
* Interpolation for a Tile
* @param rasterExtent RasterExtent to be interpolated
* @param predictor The Kriging predictor function
* @return Tile set with the interpolated values
*/
def apply(rasterExtent: RasterExtent)(predictor: (Double, Double) => Double): Tile = {
val result = DoubleArrayTile.empty(rasterExtent.cols, rasterExtent.rows)
cfor(0)(_ < result.cols, _ + 1) { col: Int =>
cfor(0)(_ < result.rows, _ + 1) { row: Int =>
val (x, y) = rasterExtent.gridToMap(col, row)
val prediction: Double = predictor(x, y)
result.setDouble(col, row, prediction)
}
}
result
}
def kriging(rasterExtent: RasterExtent)(kriging: Kriging): Tile =
apply(rasterExtent) { (x: Double, y: Double) => kriging(x, y)._1 }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy