hoping someone can help me?
In summary, I am trying to retrieve nearby points of interest based on a set of given coordinates.
After doing some research, I found a neat function
osmnx.pois.pois_from_point(point, distance=None, amenities=None, custom_settings=None)
That works for pubs, restaurants etc.
However, hotels are not classified amenities, and nor are any other tourism related places.
I found that those are identified with tourism:hotel key/value pair.
Does anyone have an idea of how to retrieve those? I didn't seem to find a function which accepts tourism as a parameter to pass in, nor I could find any way to pass in customer attribute values for filtering.
Thanks in advance!