From ef6c6c1e16062bcf5c03c58ec9cc7aae9dc9cb9e Mon Sep 17 00:00:00 2001 From: Moritz Schott Date: Thu, 27 Jun 2024 16:42:59 +0200 Subject: [PATCH] fix(response): assert tags are exploded even if not present None-filled --- ohsome/response.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ohsome/response.py b/ohsome/response.py index e7c11ce..1706548 100644 --- a/ohsome/response.py +++ b/ohsome/response.py @@ -90,7 +90,7 @@ def _as_geodataframe( for feature in self.data["features"]: properties = feature["properties"] tags = {} - new_properties = {} + new_properties = {k: None for k in explode_tags} for k in properties.keys(): if ( (k.startswith("@"))