We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 011ddd1 commit 499cb3bCopy full SHA for 499cb3b
ohsome_quality_analyst/oqt.py
@@ -35,7 +35,10 @@ async def create_indicator(
35
feature["id"] = i
36
# Only enforce size limit if ohsome API data is not provided
37
# Disable size limit for the Mapping Saturation indicator
38
- if isinstance(topic, TopicDefinition) and key != "mapping-saturation":
+ if isinstance(topic, TopicDefinition) and key not in [
39
+ "mapping-saturation",
40
+ "currentness",
41
+ ]:
42
validate_area(feature)
43
tasks.append(_create_indicator(key, feature, topic, include_figure))
44
return await gather_with_semaphore(tasks)
0 commit comments