Skip to content

Commit

Permalink
Merge pull request #194 from jbouffard/mask-fix
Browse files Browse the repository at this point in the history
zoomLevel Kept When Using Mask
  • Loading branch information
echeipesh committed May 15, 2017
2 parents c48850c + e8efea4 commit cde2e81
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ class SpatialTiledRasterRDD(
result.map({ case (k, v) => (k, MultibandTile(v)) }),
result.metadata
)
SpatialTiledRasterRDD(None, multiBand)
SpatialTiledRasterRDD(zoomLevel, multiBand)
}

def stitch: (Array[Byte], String) = {
Expand Down Expand Up @@ -386,7 +386,7 @@ class TemporalTiledRasterRDD(
result.map({ case (k, v) => (k, MultibandTile(v)) }),
result.metadata
)
TemporalTiledRasterRDD(None, multiBand)
TemporalTiledRasterRDD(zoomLevel, multiBand)
}

def reproject(
Expand Down

0 comments on commit cde2e81

Please sign in to comment.