Skip to content

Commit

Permalink
fix(raster_processing): fix masking parameter literal
Browse files Browse the repository at this point in the history
  • Loading branch information
nmaarnio committed Aug 26, 2024
1 parent a0101b0 commit f58f69b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eis_toolkit/raster_processing/unifying.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def _unify_raster_grids(
base_raster: rasterio.io.DatasetReader,
rasters_to_unify: Sequence[rasterio.io.DatasetReader],
resampling_method: Resampling,
masking: Optional[Literal["extents", "extents_and_nodata"]],
masking: Optional[Literal["extents", "full"]],
) -> List[Tuple[np.ndarray, Profile]]:

dst_crs = base_raster.crs
Expand Down

0 comments on commit f58f69b

Please sign in to comment.