osmnx-examples
osmnx-examples copied to clipboard
Gallery of OSMnx tutorials, usage examples, and feature demonstations.
Thanks for this comprehensive library. I found and old example of yours, which interesting for our organization of field work. https://github.com/gboeing/network-clustering/blob/main/network-clustering-simple.ipynb I would love to see this as part of...
Added two examples that further demonstrate how to use the custom_filter parameter. These examples should make it easier to understand how to filter out specific feature keys and options. Examples...
In the markdown block starting with: ## Part 2: download and model street networks... You mention that the default network_type is 'all', however according to the osmnx documentation, I see...
Typo fix for “02-routing-speed-time.ipynb” under the section “3. Imputing travel speeds and times”
As discussed in https://github.com/gboeing/osmnx/issues/1110 Namely https://github.com/gboeing/osmnx/issues/1110#issuecomment-1974666772
Function was added in https://github.com/gboeing/osmnx/pull/1214
I would be curious on how to do more advanced custom filters, for example how to combine two (in and OR fasion). ```Python custom_filter = '["highway"~"motorway|motorway_link"]' construction_filter = '["construction"~"motorway|motorway_link"]' full_filter...