Uses of Interface
org.goplanit.utils.zoning.OdZones
-
Packages that use OdZones Package Description org.goplanit.assignment.traditionalstatic org.goplanit.od.demand Contains the definitions of the Origin-Destination Demand classesorg.goplanit.od.path This package holds the origin-destination path objects.org.goplanit.od.skim This package holds the origin-destination Skim Matrix objects.org.goplanit.utils.od Top-level abstract interfaces to handle Origin-Destination Dataorg.goplanit.utils.zoning zoning oriented utility classesorg.goplanit.zoning -
-
Uses of OdZones in org.goplanit.assignment.traditionalstatic
Methods in org.goplanit.assignment.traditionalstatic with parameters of type OdZones Modifier and Type Method Description void
TraditionalStaticAssignmentSimulationData. resetPathMatrix(Mode mode, OdZones zones)
Reset the path matrix to empty for a specified mode for all activatedvoid
TraditionalStaticAssignmentSimulationData. resetSkimMatrix(Mode mode, OdZones zones, OdOutputTypeConfiguration originDestinationOutputTypeConfiguration)
Reset the skim matrix to all zeroes for a specified mode for all activated skim output types -
Uses of OdZones in org.goplanit.od.demand
Methods in org.goplanit.od.demand with parameters of type OdZones Modifier and Type Method Description default void
OdDemands. forEachNonZeroDestinationDemand(OdZones odZones, OdZone origin, BiConsumer<OdZone,Double> consumer)
Apply the provided consumer to each destination of the origin provided that has non zero demandsdefault void
OdDemands. forEachNonZeroOdDemand(OdZones odZones, TriConsumer<OdZone,OdZone,Double> consumer)
Apply the provided consumer to each origin-destination combination found that has non zero demandsConstructors in org.goplanit.od.demand with parameters of type OdZones Constructor Description OdDemandMatrix(OdZones zones)
Constructor -
Uses of OdZones in org.goplanit.od.path
Constructors in org.goplanit.od.path with parameters of type OdZones Constructor Description OdPathMatrix(IdGroupingToken groupId, OdZones zones)
ConstructorOdPathsHashed(IdGroupingToken groupId, OdZones zones)
Constructor -
Uses of OdZones in org.goplanit.od.skim
Constructors in org.goplanit.od.skim with parameters of type OdZones Constructor Description OdSkimMatrix(OdZones zones, OdSkimSubOutputType odSkimOutputType)
Constructor -
Uses of OdZones in org.goplanit.utils.od
Fields in org.goplanit.utils.od declared as OdZones Modifier and Type Field Description protected OdZones
OdDataImpl. zones
holder for zones considered in the matrixprotected OdZones
OdHashedIterator. zones
Zones object to store travel analysis zones (from Zoning object)protected OdZones
OdMatrixIterator. zones
Zones object to store travel analysis zones (from Zoning object)Methods in org.goplanit.utils.od that return OdZones Modifier and Type Method Description protected OdZones
OdDataImpl. getOdZones()
Access to underlying zonesConstructors in org.goplanit.utils.od with parameters of type OdZones Constructor Description OdDataImpl(Class<? extends IdAble> idTokenClass, IdGroupingToken idToken, OdZones zones)
ConstructorOdHashedImpl(Class<? extends IdAble> idClass, IdGroupingToken groupId, OdZones zones)
ConstructorOdHashedIterator(OdHashed<T> container, OdZones zones)
ConstructorOdMatrixImpl(Class<? extends IdAble> idTokenClass, IdGroupingToken idToken, OdZones zones, U matrixContents)
Constructor for Od matrix containing primitives, i.e.OdMatrixIterator(U matrixContents, OdZones zones)
ConstructorOdNonPrimitiveMatrix(Class<? extends IdAble> idTokenClass, IdGroupingToken idToken, OdZones zones, T[][] matrixContents)
Constructor for full Od matrix containing non-primitives, i.e.OdNonPrimitiveMatrixIterator(T[][] matrixContents, OdZones zones)
ConstructorOdPrimitiveMatrix(Class<? extends IdAble> idTokenClass, IdGroupingToken idToken, OdZones zones, org.ojalgo.array.Array2D<T> matrixContents)
Constructor for Od matrix containing primitives, i.e.OdPrimitiveMatrixIterator(org.ojalgo.array.Array2D<T> matrixContents, OdZones zones)
Constructor -
Uses of OdZones in org.goplanit.utils.zoning
Methods in org.goplanit.utils.zoning that return OdZones Modifier and Type Method Description OdZones
OdZones. deepClone()
Deep clone implementationOdZones
OdZones. deepCloneWithMapping(BiConsumer<OdZone,OdZone> mapper)
Deep clone implementation where the mapping for its internal copies is captured by the provided mapperOdZones
OdZones. shallowClone()
Shallow clone implementation -
Uses of OdZones in org.goplanit.zoning
Classes in org.goplanit.zoning that implement OdZones Modifier and Type Class Description class
OdZonesImpl
implementation of the Zones <T> interface for Od zonesFields in org.goplanit.zoning declared as OdZones Modifier and Type Field Description protected OdZones
OdZoneFactoryImpl. odZones
container to useprotected OdZones
Zoning. odZones
provide access to zonesMethods in org.goplanit.zoning that return OdZones Modifier and Type Method Description OdZones
Zoning. getOdZones()
Access to the odZones containerConstructors in org.goplanit.zoning with parameters of type OdZones Constructor Description OdZoneFactoryImpl(IdGroupingToken groupId, OdZones odZones)
Constructor
-