.deactivate_all_osm_rail_modes_except(+)
OsmRailwaySettings method
Description
Deactivate all OSM rail modes except the ones indicated.
Signature
.deactivate_all_rail_modes_except(modes: List[str])
with
Parameter | Type | Unit | Default | Description |
---|---|---|---|---|
modes |
List of String |
None |
N/A | OSM rail modes that are not 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 all modes except trains
osm_reader.settings.activate_railway_parser(True)
osm_reader.settings.railway_settings.deactivate_all_osm_rail_modes_except(["train"])
See also
N/A
Source code
Class OsmRailwaySettingsWrapper
in converterwrappers.py