It has been reported that one could get the following error:

when running ohsome2label vector from the server.
We found out this issue was related to the security certificate check in Python requests, especially via the server traffic.
One easy solution/walkaround is to change the following code in your repo:
|
r = requests.get(api, params) |
just to disable the verification, while a better solution should be considered in the future:
r = requests.get(api, params, verify=False)
It has been reported that one could get the following error:
when running
ohsome2label vectorfrom the server.We found out this issue was related to the security certificate check in Python requests, especially via the server traffic.
One easy solution/walkaround is to change the following code in your repo:
ohsome2label/ohsome2label/utils.py
Line 22 in 5921866
just to disable the verification, while a better solution should be considered in the future:
r = requests.get(api, params, verify=False)