Uses of Class
rgu.transport.geospatial.multimodal.TransitNetwork.Builder
Packages that use TransitNetwork.Builder
Package
Description
Multimodal geospatial data such as public transport networks.
Implementation of General Transit Feed Specification (GTFS) data loading.
-
Uses of TransitNetwork.Builder in rgu.transport.geospatial.multimodal
Methods in rgu.transport.geospatial.multimodal that return TransitNetwork.BuilderModifier and TypeMethodDescriptionTransitNetwork.Builder.addLocation(GeoLocation location) Add the specified location.TransitNetwork.Builder.addRoad(GeoLocation from, GeoLocation to) Adds the specified road edge.TransitNetwork.Builder.addRoadGraph(Graph<GeoLocation, ?> graph, ProgressListener progress) TransitNetwork.Builder.addTransit(GeoLocation from, GeoLocation to, LocalTime departureTime, LocalTime arrivalTime) static TransitNetwork.BuilderTransitNetwork.builder()Creates a builder object from HashTransitNetwork.static TransitNetwork.BuilderTransitNetwork.builder(boolean suppressDuplicates) Creates a builder object from HashTransitNetwork.static TransitNetwork.BuilderTransitNetwork.copyAll(Collection<TransitNetwork> networks, BiConsumer<GeoLocation, GeoLocation> edgeConsumer) Creates a builder by copying the contents of a collection of transit networks. -
Uses of TransitNetwork.Builder in rgu.transport.geospatial.multimodal.gtfs
Methods in rgu.transport.geospatial.multimodal.gtfs with parameters of type TransitNetwork.BuilderModifier and TypeMethodDescriptionstatic voidGTFSLoader.load(GTFSDataSource source, TransitNetwork.Builder builder, AtomicReference<Runnable> cancel, BiConsumer<GeoLocation, GeoLocation> drawLine, boolean skipMissingInRoute) Deprecated, for removal: This API element is subject to removal in a future version.static voidGTFSLoader.load(GTFSDataSource source, TransitNetwork.Builder builder, AtomicReference<Runnable> cancel, BiConsumer<GeoLocation, GeoLocation> drawLine, boolean skipMissingInRoute, GTFSProgressListener progress) Deprecated, for removal: This API element is subject to removal in a future version.static voidGTFSLoader.load(GTFSDataSource source, TransitNetwork.Builder builder, Predicate<GeoLocation> spatialFilter, Predicate<LocalTime> temporalFilter, AtomicReference<Runnable> cancel, BiConsumer<GeoLocation, GeoLocation> drawLine, boolean skipMissingInRoute) Deprecated, for removal: This API element is subject to removal in a future version.static voidGTFSLoader.load(GTFSDataSource source, TransitNetwork.Builder builder, Predicate<GeoLocation> spatialFilter, Predicate<LocalTime> temporalFilter, AtomicReference<Runnable> cancel, BiConsumer<GeoLocation, GeoLocation> drawLine, boolean skipMissingInRoute, GTFSProgressListener progress) Deprecated, for removal: This API element is subject to removal in a future version.static voidGTFSLoader.load(GTFSDataSource source, TransitNetwork.Builder builder, Set<GeoLocation> points, AtomicReference<Runnable> cancel, BiConsumer<GeoLocation, GeoLocation> drawLine, boolean skipMissingInRoute) Deprecated, for removal: This API element is subject to removal in a future version.static voidGTFSLoader.load(GTFSDataSource source, TransitNetwork.Builder builder, Set<GeoLocation> points, AtomicReference<Runnable> cancel, BiConsumer<GeoLocation, GeoLocation> drawLine, boolean skipMissingInRoute, GTFSProgressListener progress) Deprecated, for removal: This API element is subject to removal in a future version.static voidGTFSLoader.load(GTFSDataSource source, TransitNetwork.Builder builder, Set<GeoLocation> points, Predicate<GeoLocation> spatialFilter, Predicate<LocalTime> temporalFilter, AtomicReference<Runnable> cancel, BiConsumer<GeoLocation, GeoLocation> drawLine, boolean skipMissingInRoute) Deprecated, for removal: This API element is subject to removal in a future version.static voidGTFSLoader.load(GTFSDataSource source, TransitNetwork.Builder builder, Set<GeoLocation> points, Predicate<GeoLocation> spatialFilter, Predicate<LocalTime> temporalFilter, AtomicReference<Runnable> cancel, BiConsumer<GeoLocation, GeoLocation> drawLine, boolean skipMissingInRoute, GTFSProgressListener progress) Deprecated, for removal: This API element is subject to removal in a future version.static voidGTFSParser.load(GTFSDataSource source, TransitNetwork.Builder builder, Range<LocalDate> dateRange, Predicate<GeoLocation> locationFilter, boolean allowBrokenRoutes, GTFSProgressListener progress, AtomicReference<Runnable> cancel, BiConsumer<GeoLocation, GeoLocation> edgeLocationConsumer) Loads the specified GTFS data source.