.deactivate_osm_road_modes(+)
OsmHighwaySettings method
Description
Deactivate chosen OSM road modes that are currently activated and supported.
More information on OSM modes; https://wiki.openstreetmap.org/wiki/Key:access
Signature
.deactivate_osm_road_modes(modes: List[str])
with
Parameter | Type | Unit | Default | Description |
---|---|---|---|---|
modes |
List of str |
None |
N/A | OSM road modes that are to be deactivated |
Return type
N/A
Example 1
from planit import *
# create a network converter
planit_instance = Planit()
network_converter = planit_instance.converter_factory.create(ConverterType.NETWORK)
# Open Street Map (OSM) network reader
osm_reader = network_converter.create_reader(NetworkReaderType.OSM, "<country_name>")
osm_reader.settings.set_input_file("<path_to_input_file>")
# deactivate buses and bicycles as an activated road mode
osm_reader.settings.highway_settings.deactivate_osm_road_modes(["bus", "bicycle"])
See also
N/A
Source code
Class OsmHighwaySettingsWrapper
in converterwrappers.py