.waterway_settings
OsmNetworkReaderSettings property
Description
The .waterway_settings property allows access to the OsmWaterwaySettings specific to
configuring the parsing of all OSM ways tagged as route=ferry and/or ferry=<osm_highay_type> and is present on
the OsmNetworkReaderSettings.
Return type
Example 1
from planit import *
# create a network converter
planit_instance = Planit()
network_converter = planit_instance.converter_factory.create(ConverterType.NETWORK)
# example Open Street Map (OSM) network reader and access to its highway settings
osm_reader = network_converter.create_reader(NetworkReaderType.OSM, "<country_name>")
osm_reader.settings.waterway_settings.<some_method>
See also
OsmRailwaySettings the settings available
OsmHighwaySettings the settings available
OsmWaterwaySettings the settings available
Source code
Class OsmNetworkReaderSettingsWrapper in converterwrappers.py