.deactivate_osm_rail_modes(+)

OsmRailwaySettings method

Description

Deactivate chosen OSM rail modes that are currently activated and supported.

Signature

.deactivate_osm_rail_modes(modes: List[str])

with

Parameter Type Unit Default Description
modes List of String None N/A OSM rail 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 regular trains and funicular from the rail modes to parse
osm_reader.settings.activate_railway_parser(True)
osm_reader.settings.railway_settings.deactivate_osm_rail_modes(["train","funicular"])

See also

N/A

Source code

Class OsmRailwaySettingsWrapper in converterwrappers.py