You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
The key has expired.
2.3.0 (2021-06-21)
Added a single_outlet_tuple parameter to routing.fill_pits that
forces a DEM to only have one outlet at any point on the raster. The
fill effect is that all pixels will drain to the raster coordinate at single_outlet_tuple.
Added a detect_lowest_sink_and_drain function that finds the lowest
DEM pixel that drains to nodata/edge and the lowest DEM pixel that could
be a sink. The values that result from this call can be used to condition
a DEM that is known to have a single drain using the single_outlet_tuple parameter in routing.fill_pits.
Fixed a bug in routing.fill_pits that could cause the nodata region of
a DEM to be incorrectly filled with non-nodata values.
Fixed an issue where create_raster_from_vector_extent would use an
approximation of the layer extent to infer the input vector extent. Now
uses the individual geometry to infer vector extents.
Fixed a bug in routing.distance_to_channel_mfd where pixels that drained
off the edge of the raster had negative values rather than nodata values.
Expanded the error message raised by transform_bounding_box when the
bounding box cannot be transformed to provide more helpful details.
Add support and testing for GDAL 3.3.0.
Fixed exception occuring in stitch_rasters when base rasters were
larger than the target raster on the y axis.