You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Extracting road features with geometries and attribute data (width) to buffer and create polygonal geometries. It would be useful to enrich existing timeseries of land-use/land-cover datasets that mostly based on remote sensing data (for example, UKCEH land-cover.
Request Description
Only limited number of tags is returned for POST/elements/(geometryType) when trying to fetch tags. Currently it is specified as "properties" : "tags". It would be more useful to bring all the tags available from OSM (or, at least, specify needed, for example, "properties" : "width").
Additional Information
For the sample request with a simple filter for road features, the query brings only 127 tags (compared to raw data fetched through Overpass Turbo API - 612 tags).
The Python code used is the following (template bounding bbox from Ohsome API documentation): url = 'https://api.ohsome.org/v1/elements/geometry' data = {"bboxes": "8.625,49.3711,8.7334,49.4397", "properties": "tags", "time": "2024-01-01", "filter": "highway=tertiary"} response = requests.post(url, data=data) print(response.json())
'Width' column persists in the 2023-2024 timestamp, but omitted from the earlier timestamps, which complicates the analysis of historical land use change.
The text was updated successfully, but these errors were encountered:
For the sample request with a simple filter for road features, the query brings only 127 tags (compared to raw data fetched through Overpass Turbo API - 612 tags).
I cannot really replicate this behaviour. When selecting features from overpass using the same filters, bbox and time parameter (https://overpass-turbo.eu/s/1Q62), there are also exactly 127 tags returned.
'Width' column persists in the 2023-2024 timestamp, but omitted from the earlier timestamps
Only limited number of tags is returned […] It would be more useful to bring all the tags available from OSM
The ohsome-api returns all tags that are present on the returned features. It is not practical to return all tags available in OSM, as that would mean that every query would have to return hundreds of thousands of tags (see taginfo).
Use Case Description
Extracting road features with geometries and attribute data (width) to buffer and create polygonal geometries. It would be useful to enrich existing timeseries of land-use/land-cover datasets that mostly based on remote sensing data (for example, UKCEH land-cover.
Request Description
Only limited number of tags is returned for POST/elements/(geometryType) when trying to fetch tags. Currently it is specified as "properties" : "tags". It would be more useful to bring all the tags available from OSM (or, at least, specify needed, for example, "properties" : "width").
Additional Information
For the sample request with a simple filter for road features, the query brings only 127 tags (compared to raw data fetched through Overpass Turbo API - 612 tags).
The Python code used is the following (template bounding bbox from Ohsome API documentation):
url = 'https://api.ohsome.org/v1/elements/geometry' data = {"bboxes": "8.625,49.3711,8.7334,49.4397", "properties": "tags", "time": "2024-01-01", "filter": "highway=tertiary"} response = requests.post(url, data=data) print(response.json())
'Width' column persists in the 2023-2024 timestamp, but omitted from the earlier timestamps, which complicates the analysis of historical land use change.
The text was updated successfully, but these errors were encountered: