Skip to content

Commit

Permalink
Assume correct extents in binary operationsto avoid floating point er…
Browse files Browse the repository at this point in the history
…rors (#91)
  • Loading branch information
moradology authored Apr 17, 2019
1 parent 63d0f30 commit 9a90251
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jvm/src/main/scala/eval/tile/LazyRaster.scala
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ object LazyRaster {
require(children.length == arity, s"Incorrect arity: $arity argument(s) expected, ${children.length} found")
def fst = children(0)
def snd = children(1)
def rasterExtent: RasterExtent = fst.rasterExtent combine snd.rasterExtent
def rasterExtent: RasterExtent = fst.rasterExtent
def crs = fst.crs
}

Expand Down

0 comments on commit 9a90251

Please sign in to comment.