Skip to content

Commit e1feb41

Browse files
authored
Add output min and max metadata to slope algorithm (#1089)
* Add output min and max metadata to slope algorithm * Update changelog
1 parent 9dff048 commit e1feb41

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

CHANGES.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Release Notes
22

3+
## Unreleased
4+
5+
### titiler.core
6+
7+
* add `output_min` and `output_max` metadata attributes to `slope` algorithm (@tayden, https://github.com/developmentseed/titiler/pull/1089)
8+
39
## 0.21.1 (2025-01-29)
410

511
### titiler.core

src/titiler/core/titiler/core/algorithm/dem.py

+2
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,8 @@ class Slope(BaseAlgorithm):
7676
input_nbands: int = 1
7777
output_nbands: int = 1
7878
output_dtype: str = "float32"
79+
output_min: float = 0
80+
output_max: float = 90
7981

8082
def __call__(self, img: ImageData) -> ImageData:
8183
"""Calculate degrees slope from DEM dataset."""

0 commit comments

Comments
 (0)