We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9dff048 commit e1feb41Copy full SHA for e1feb41
CHANGES.md
@@ -1,5 +1,11 @@
1
# Release Notes
2
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
9
## 0.21.1 (2025-01-29)
10
11
### titiler.core
src/titiler/core/titiler/core/algorithm/dem.py
@@ -76,6 +76,8 @@ class Slope(BaseAlgorithm):
76
input_nbands: int = 1
77
output_nbands: int = 1
78
output_dtype: str = "float32"
79
+ output_min: float = 0
80
+ output_max: float = 90
81
82
def __call__(self, img: ImageData) -> ImageData:
83
"""Calculate degrees slope from DEM dataset."""
0 commit comments