.deactivate_all_osm_rail_modes()

OsmRailwaySettings method

Description

Deactivate all OSM rail modes.

Signature

.deactivate_all_osm_rail_modes()

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 
osm_reader.settings.activate_railway_parser(True)
osm_reader.settings.railway_settings.deactivate_all_osm_rail_modes()

See also

N/A

Source code

Class OsmRailwaySettingsWrapper in converterwrappers.py