Skip to content

Commit

Permalink
dsfg
Browse files Browse the repository at this point in the history
  • Loading branch information
Ethan Carrés committed Feb 3, 2021
1 parent c7435ab commit 9d14c0b
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions telluric/georaster.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,8 +222,14 @@ def key(rs):
return rasters_final


def _prepare_rasters(rasters: List["GeoRaster2"], merge_strategy: MergeStrategy, first: "GeoRaster2",
resampling: Resampling = Resampling.nearest, num_threads: int = 1, warp_mem_limit: int = 0):
def _prepare_rasters(rasters, # type: List[GeoRaster2]
merge_strategy, # type: MergeStrategy
first, # type: GeoRaster2
resampling=Resampling.nearest, # type: Resampling
num_threads=1, # type: int
warp_mem_limit=0 # type: int
):
# type: (...) -> Tuple[IndexedSet[str], List[Optional[_Raster]]]
"""Prepares the rasters according to the baseline (first) raster and the merge strategy.
The baseline (first) raster is used to crop and reproject the other rasters,
Expand Down

0 comments on commit 9d14c0b

Please sign in to comment.