We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 273b4c4 commit 38f0c6bCopy full SHA for 38f0c6b
SuomiGeoData/core.py
@@ -251,9 +251,11 @@ def raster_clipping_by_mask(
251
)
252
# update clipped raster profile
253
profile.update(
254
- {'height': output_array.shape[1],
255
- 'width': output_array.shape[2],
256
- 'transform': output_transform}
+ {
+ 'height': output_array.shape[1],
+ 'width': output_array.shape[2],
257
+ 'transform': output_transform
258
+ }
259
260
# save the clipped raster
261
with rasterio.open(output_file, 'w', **profile) as output_raster:
0 commit comments