Skip to content

Commit

Permalink
fix: global coverage geojson
Browse files Browse the repository at this point in the history
  • Loading branch information
Gigaszi committed Oct 10, 2024
1 parent 2852b4d commit b41c1cb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@

- New Topics and Project for UNICEF education access project have been added ([#832])

### Bug Fixes

- fix: global coverage is now returned correctly ([#821])


[#821]: https://github.com/GIScience/ohsome-quality-api/issues/821


## Release 1.5.0

Expand Down
2 changes: 1 addition & 1 deletion ohsome_quality_api/indicators/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ async def coverage(cls, inverse=False) -> list[Feature]:
)
]
else:
return [Feature(Polygon(coordinates=[]))]
return [Feature(geometry=Polygon(coordinates=[]))]

@abstractmethod
async def preprocess(self) -> None:
Expand Down

0 comments on commit b41c1cb

Please sign in to comment.