.network_settings
PlanitIntermodalReaderSettings property
Description
The .network_settings
property allows access to thePlanitNetworkReaderSettings
and is present on the PlanitIntermodalReaderSettings
. These settings are identical to the settings on the
PlanitNetworkReader
since under the hood the PlanitIntermodalReader
utilises the PlanitNetworkReader for the
parsing of the physical road and rail network and is therefore configured via the same settings.
Return type
Example 1
from planit import *
# create an intermodal converter
planit_instance = Planit()
intermodal_converter = planit_instance.converter_factory.create(ConverterType.INTERMODAL)
# PLANit intermodal reader
planit_reader = intermodal_converter.create_reader(IntermodalReaderType.PLANIT)
planit_reader.settings.network_settings.<some_method>
See also
PlanitNetworkReaderSettings for the network specific settings available
Source code
Class ReaderSettingsWrapper
in converterwrappers.py