Is there any way to specify multiple subcategories for an infrastructure type while importing roads using osmnx. From this question I understand that we can select only freeways by specifying infrastructure='way["highway"~"motorway"]'
. How can we expand this to include multiple categories such as highways = motorway or primary or secondary
or highway is not footway
I tried the following without success:
infrastructure='way["highway"~"motorway"],way["highway"~"primary"]'
infrastructure='way["highway"~"motorway", "primary"]'
infrastructure='way["highway"~"motorway" OR "primary"]'
It would be nice to have better filtering such as highway=primary or highway=primary_link
(examples here , keys here)