Skip to content

Commit f4e2943

Browse files
fix: indicator description field of GeoJSON props
1 parent 7371200 commit f4e2943

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@
1414
- Rename API query parameter `layerName` to `layerKey` and API endpoint `listLayerNames` to `listLayerKeys` ([#376])
1515
- Rename endpoints for listing of indicator, report, layer, dataset and fid-field names ([#397])
1616

17+
### Bug Fixes
18+
19+
- Fix indicator description field of GeoJSON properties ([#396])
20+
1721
### New Features
1822

1923
- Add new representative report `RoadReport` ([#357])

workers/ohsome_quality_analyst/base/indicator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ def as_feature(self, flatten: bool = False, include_data: bool = False) -> Featu
9393
properties = {
9494
"metadata": {
9595
"name": self.metadata.name,
96-
"description": self.metadata.name,
96+
"description": self.metadata.description,
9797
},
9898
"layer": {
9999
"key": self.layer.key,

0 commit comments

Comments
 (0)