Uses of Class
org.goplanit.gtfs.converter.GtfsConverterReaderSettingsWithModeMapping
-
Packages that use GtfsConverterReaderSettingsWithModeMapping Package Description org.goplanit.gtfs.converter org.goplanit.gtfs.converter.service org.goplanit.gtfs.converter.zoning org.goplanit.gtfs.util -
-
Uses of GtfsConverterReaderSettingsWithModeMapping in org.goplanit.gtfs.converter
Methods in org.goplanit.gtfs.converter that return GtfsConverterReaderSettingsWithModeMapping Modifier and Type Method Description GtfsConverterReaderSettingsWithModeMapping
GtfsConverterHandlerData. getSettings()
Access to GTFS zoning reader settingsMethods in org.goplanit.gtfs.converter with parameters of type GtfsConverterReaderSettingsWithModeMapping Modifier and Type Method Description static void
RouteTypeExtendedToPredefinedPlanitModeMappingCreator. execute(GtfsConverterReaderSettingsWithModeMapping settings)
Perform and populate mapping in provided settingsstatic void
RouteTypeOriginalToPlanitModeMappingCreator. execute(GtfsConverterReaderSettingsWithModeMapping settings)
Perform and populate mapping in provided settingsConstructors in org.goplanit.gtfs.converter with parameters of type GtfsConverterReaderSettingsWithModeMapping Constructor Description GtfsConverterHandlerData(ServiceNetwork serviceNetwork, GtfsConverterReaderSettingsWithModeMapping settings)
ConstructorGtfsConverterReaderSettingsWithModeMapping(GtfsConverterReaderSettingsWithModeMapping other)
Copy constructor (reference copy because we use it to share the same mode mapping across multiple instance) todo not great because technically this is a hack and we do not create a shallow copy but simply assign references... -
Uses of GtfsConverterReaderSettingsWithModeMapping in org.goplanit.gtfs.converter.service
Subclasses of GtfsConverterReaderSettingsWithModeMapping in org.goplanit.gtfs.converter.service Modifier and Type Class Description class
GtfsServicesReaderSettings
Configurable settings for the Gtfs to PLANit routed services reader -
Uses of GtfsConverterReaderSettingsWithModeMapping in org.goplanit.gtfs.converter.zoning
Subclasses of GtfsConverterReaderSettingsWithModeMapping in org.goplanit.gtfs.converter.zoning Modifier and Type Class Description class
GtfsZoningReaderSettings
Capture all the user configurable settings regarding how to parse (if at all) (public transport) transfer infrastructure such as stations, poles, platforms, and other stop and transfer related infrastructure captured from raw (static) GTFS feedsConstructors in org.goplanit.gtfs.converter.zoning with parameters of type GtfsConverterReaderSettingsWithModeMapping Constructor Description GtfsZoningReaderSettings(GtfsConverterReaderSettingsWithModeMapping settings)
Copy constructor creating a shallow copy of the underlying mode mapping so it is synced with the provided settings. -
Uses of GtfsConverterReaderSettingsWithModeMapping in org.goplanit.gtfs.util
Methods in org.goplanit.gtfs.util with parameters of type GtfsConverterReaderSettingsWithModeMapping Modifier and Type Method Description static HashMap<RouteType,List<Mode>>
GtfsConverterReaderHelper. createCombinedActivatedPlanitModes(GtfsConverterReaderSettingsWithModeMapping settings, Modes allAvailablePlanitModes)
Based on the settings which define both custom and predefined mappings, we construct the instance mappings from Gtfs mode to PLANit mode, e.g., when a predefined mode type is configured, it results in an instance of that type on a network, this instance should be available in the passed in #allAvailablePlanitMdes, we then combine these mappings with the custom mode mappings on the settings to create a single consolidated set which can be used during parsing without the need of checking whether a mode is predefined or not.
-