Skip to content

Commit 499cb3b

Browse files
feat: remove size limitation for currentness indicator
1 parent 011ddd1 commit 499cb3b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

ohsome_quality_analyst/oqt.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,10 @@ async def create_indicator(
3535
feature["id"] = i
3636
# Only enforce size limit if ohsome API data is not provided
3737
# Disable size limit for the Mapping Saturation indicator
38-
if isinstance(topic, TopicDefinition) and key != "mapping-saturation":
38+
if isinstance(topic, TopicDefinition) and key not in [
39+
"mapping-saturation",
40+
"currentness",
41+
]:
3942
validate_area(feature)
4043
tasks.append(_create_indicator(key, feature, topic, include_figure))
4144
return await gather_with_semaphore(tasks)

0 commit comments

Comments
 (0)