.settings

PlanitZoningReader property
Description

The .settings property allows access to the settings of the PlanitZoningReader.

Return type

PlanitZoningReaderSettings implementation

Example 1

from planit import *

# create a zoning converter
planit_instance = Planit()
converter = planit_instance.converter_factory.create(ConverterType.ZONING)

# prerequisite network reader
# PLANIT_INPUT_PATH = ...
planit_net_reader = planit_instance.converter_factory.create(ConverterType.NETWORK).create_reader(NetworkReaderType.PLANIT)
planit_net_reader.settings.set_input_directory(PLANIT_INPUT_PATH)

# PLANit zoning reader        
planit_reader = converter.create_reader(ZoningReaderType.PLANIT, planit_net_reader)
planit_reader.settings.set_inputdirectory(PLANIT_INPUT_PATH)

planit_reader.settings.<some_method>

See also

PlanitZoningReaderSettings the settings available

Source code

Class PlanitZoningReaderWrapper in converterwrappers.py