Uses of Interface
org.goplanit.utils.zoning.DirectedConnectoid
-
Packages that use DirectedConnectoid Package Description org.goplanit.osm.converter.zoning org.goplanit.osm.converter.zoning.handler.helper org.goplanit.utils.zoning zoning oriented utility classesorg.goplanit.zoning org.goplanit.zoning.modifier.event.handler -
-
Uses of DirectedConnectoid in org.goplanit.osm.converter.zoning
Methods in org.goplanit.osm.converter.zoning that return types with arguments of type DirectedConnectoid Modifier and Type Method Description Collection<DirectedConnectoid>
OsmZoningReaderPlanitData. getConnectoidsByTransferZone(TransferZone transferZone)
Collect transfer zone's registered connectoidsMap<org.locationtech.jts.geom.Point,List<DirectedConnectoid>>
OsmZoningReaderPlanitData. getDirectedConnectoidsByLocation(MacroscopicNetworkLayer networkLayer)
collect the registered connectoids indexed by their locations for a given network layer (unmodifiable)List<DirectedConnectoid>
OsmZoningReaderPlanitData. getDirectedConnectoidsByLocation(org.locationtech.jts.geom.Point nodeLocation, MacroscopicNetworkLayer networkLayer)
Collect the registered connectoids by given locations and network layer (unmodifiable)Methods in org.goplanit.osm.converter.zoning with parameters of type DirectedConnectoid Modifier and Type Method Description void
OsmZoningReaderPlanitData. addConnectoidByTransferZone(TransferZone transferZone, DirectedConnectoid connectoid)
Register a known mapping from transfer zone to connectoidboolean
OsmZoningReaderPlanitData. addDirectedConnectoidByLocation(MacroscopicNetworkLayer networkLayer, org.locationtech.jts.geom.Point connectoidLocation, DirectedConnectoid connectoid)
Add a connectoid to the registered connectoids indexed by their OSM id -
Uses of DirectedConnectoid in org.goplanit.osm.converter.zoning.handler.helper
Methods in org.goplanit.osm.converter.zoning.handler.helper that return types with arguments of type DirectedConnectoid Modifier and Type Method Description Collection<DirectedConnectoid>
ConnectoidHelper. createAndRegisterDirectedConnectoidsOnTopOfTransferZone(TransferZone transferZone, MacroscopicNetworkLayer networkLayer, Mode planitMode, PlanitJtsCrsUtils geoUtils)
Create directed connectoids for transfer zones that reside on osw ways. -
Uses of DirectedConnectoid in org.goplanit.utils.zoning
Fields in org.goplanit.utils.zoning with type parameters of type DirectedConnectoid Modifier and Type Field Description static Class<DirectedConnectoid>
DirectedConnectoid. DIRECTED_CONNECTOID_ID_CLASS
the class to use for the additional directed connectoid id generationMethods in org.goplanit.utils.zoning that return DirectedConnectoid Modifier and Type Method Description DirectedConnectoid
DirectedConnectoidFactory. registerNew(LinkSegment accessLinkSegment)
Create a new directed connectoid with default length 0 and no parent zone (yet)DirectedConnectoid
DirectedConnectoidFactory. registerNew(LinkSegment accessLinkSegment, Zone parentZone)
Create a new directed connectoid, with default length 0DirectedConnectoid
DirectedConnectoidFactory. registerNew(LinkSegment accessLinkSegment, Zone parentZone, double length)
Create a new directed connectoidMethods in org.goplanit.utils.zoning that return types with arguments of type DirectedConnectoid Modifier and Type Method Description default Class<DirectedConnectoid>
DirectedConnectoid. getDirectedConnectoidIdClass()
the class for directed connectoid id generation -
Uses of DirectedConnectoid in org.goplanit.zoning
Classes in org.goplanit.zoning that implement DirectedConnectoid Modifier and Type Class Description class
DirectedConnectoidImpl
Undirected connectoid connecting one or more (transfer/OD) zone(s) to the physical road network, each connection will yield a connectoid edge and two connectoid segments when constructing the transport network internally based on the referenced nodeMethods in org.goplanit.zoning that return DirectedConnectoid Modifier and Type Method Description DirectedConnectoid
DirectedConnectoidFactoryImpl. registerNew(LinkSegment accessLinkSegment)
Create a new directed connectoid with default length 0 and no parent zone (yet)DirectedConnectoid
DirectedConnectoidFactoryImpl. registerNew(LinkSegment accessLinkSegment, Zone parentZone)
Create a new directed connectoid, with default length 0DirectedConnectoid
DirectedConnectoidFactoryImpl. registerNew(LinkSegment accessLinkSegment, Zone parentZone, double length)
Create a new directed connectoid -
Uses of DirectedConnectoid in org.goplanit.zoning.modifier.event.handler
Constructor parameters in org.goplanit.zoning.modifier.event.handler with type arguments of type DirectedConnectoid Constructor Description UpdateDirectedConnectoidsOnBreakLinkSegmentHandler(Map<org.locationtech.jts.geom.Point,DirectedConnectoid> connectoidsAccessNodeLocationBeforeBreakLink)
Constructor taking information regarding the access link segment downstream vertex that the connectoid is attached to before any breaking of links.
-