SUMO - Simulation of Urban MObility
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
RODFEdge Class Reference

#include <RODFEdge.h>

Inheritance diagram for RODFEdge:
ROEdge Named

Public Types

enum  EdgeType { ET_NORMAL, ET_DISTRICT, ET_SOURCE, ET_SINK }
 Possible types of edges. More...

Public Member Functions

void addTo (const StoringVisitor &cont) const
 Adds this object to the given container.
SUMOReal getDistanceTo (const ROEdge *other) const
 optimistic distance heuristic for use in routing
const std::vector< FlowDef > & getFlows () const
const std::string & getID () const
 Returns the id.
int getPriority () const
 get edge priority (road class)
 RODFEdge (const std::string &id, RONode *from, RONode *to, unsigned int index, const int priority)
 Constructor.
void setFlows (const std::vector< FlowDef > &flows)
void setID (const std::string &newID)
 resets the id
 ~RODFEdge ()
 Destructor.
Set-up methods
virtual void addLane (ROLane *lane)
 Adds a lane to the edge while loading.
virtual void addFollower (ROEdge *s, std::string dir="")
 Adds information about a connected edge.
void setType (EdgeType type)
 Sets the type of te edge.
void buildTimeLines (const std::string &measure)
 Builds the internal representation of the travel time/effort.
Getter methods
EdgeType getType () const
 Returns the type of the edge.
SUMOReal getLength () const
 Returns the length of the edge.
unsigned int getNumericalID () const
 Returns the index (numeric id) of the edge.
SUMOReal getSpeed () const
 Returns the speed allowed on this edge.
unsigned int getLaneNo () const
 Returns the number of lanes this edge has.
RONodegetFromNode () const
 Returns the node this edge starts at.
RONodegetToNode () const
 Returns the node this edge ends at.
bool isConnectedTo (const ROEdge *const e) const
 returns the information whether this edge is directly connected to the given
bool prohibits (const ROVehicle *const vehicle) const
 Returns whether this edge prohibits the given vehicle to pass it.
SVCPermissions getPermissions () const
bool allFollowersProhibit (const ROVehicle *const vehicle) const
 Returns whether this edge succeding edges prohibit the given vehicle to pass them.
Methods for getting/setting travel time and cost information
void addEffort (SUMOReal value, SUMOReal timeBegin, SUMOReal timeEnd)
 Adds a weight value.
void addTravelTime (SUMOReal value, SUMOReal timeBegin, SUMOReal timeEnd)
 Adds a travel time value.
unsigned int getNoFollowing () const
 Returns the number of edges this edge is connected to.
ROEdgegetFollower (unsigned int pos) const
 Returns the edge at the given position from the list of reachable edges.
SUMOReal getEffort (const ROVehicle *const veh, SUMOReal time) const
 Returns the effort for this edge.
SUMOReal getTravelTime (const ROVehicle *const veh, SUMOReal time) const
 Returns the travel time for this edge.
SUMOReal getTravelTime (const SUMOReal maxSpeed, SUMOReal time) const
 Returns the travel time for this edge.
SUMOReal getMinimumTravelTime (const ROVehicle *const veh) const
 Returns the travel time for this edge without using any stored timeLine.
SUMOReal getCOEffort (const ROVehicle *const veh, SUMOReal time) const
SUMOReal getCO2Effort (const ROVehicle *const veh, SUMOReal time) const
SUMOReal getPMxEffort (const ROVehicle *const veh, SUMOReal time) const
SUMOReal getHCEffort (const ROVehicle *const veh, SUMOReal time) const
SUMOReal getNOxEffort (const ROVehicle *const veh, SUMOReal time) const
SUMOReal getFuelEffort (const ROVehicle *const veh, SUMOReal time) const
SUMOReal getNoiseEffort (const ROVehicle *const veh, SUMOReal time) const

Static Public Member Functions

static ROEdgedictionary (size_t index)
 Returns the ROEdge at the index.
static size_t dictSize ()
 Returns the number of edges.
static void setTimeLineOptions (bool useBoundariesOnOverrideTT, bool useBoundariesOnOverrideE, bool interpolate)

Protected Member Functions

bool getStoredEffort (SUMOReal time, SUMOReal &ret) const
 Retrieves the stored effort.

Protected Attributes

SVCPermissions myCombinedPermissions
 The list of allowed vehicle classes combined across lanes.
ValueTimeLine< SUMORealmyEfforts
 Container storing passing time varying over time for the edge.
std::vector< ROEdge * > myFollowingEdges
 List of edges that may be approached from this edge.
RONode *const myFromNode
 The nodes this edge is connecting.
std::string myID
 The name of the object.
const unsigned int myIndex
 The index (numeric id) of the edge.
std::vector< ROLane * > myLanes
 This edge's lanes.
SUMOReal myLength
 The length of the edge.
const int myPriority
 The edge priority (road class)
SUMOReal mySpeed
 The maximum speed allowed on this edge.
RONode *const *const myToNode
ValueTimeLine< SUMORealmyTravelTimes
 Container storing passing time varying over time for the edge.
EdgeType myType
 The type of the edge.
bool myUsingETimeLine
 Information whether the time line shall be used instead of the length value.
bool myUsingTTTimeLine
 Information whether the time line shall be used instead of the length value.

Static Protected Attributes

static std::vector< ROEdge * > myEdges
static bool myHaveEWarned = false
 Information whether the edge has reported missing weights.
static bool myHaveTTWarned = false
 Information whether the edge has reported missing weights.
static bool myInterpolate = false
 Information whether to interpolate at interval boundaries.
static bool myUseBoundariesOnOverrideE = false
 Whether overriding weight boundaries shall be reported.
static bool myUseBoundariesOnOverrideTT = false
 Whether overriding weight boundaries shall be reported.

Private Member Functions

RODFEdgeoperator= (const RODFEdge &src)
 Invalidated assignment operator.
 RODFEdge (const RODFEdge &src)
 Invalidated copy constructor.

Private Attributes

std::vector< FlowDefmyFlows

Detailed Description

Definition at line 54 of file RODFEdge.h.

Member Enumeration Documentation

enum ROEdge::EdgeType
inherited

Possible types of edges.

Enumerator:
ET_NORMAL 

A normal edge.

ET_DISTRICT 

An edge representing a whole district.

ET_SOURCE 

An edge where vehicles are inserted at (no vehicle may come from back)

ET_SINK 

An edge where vehicles disappear (no vehicle may leave this edge)

Definition at line 73 of file ROEdge.h.

Constructor & Destructor Documentation

RODFEdge::RODFEdge ( const std::string &  id,
RONode from,
RONode to,
unsigned int  index,
const int  priority 
)

Constructor.

Parameters
[in]idThe id of the edge
[in]fromThe node the edge begins at
[in]toThe node the edge ends at
[in]indexThe numeric id of the edge

Definition at line 44 of file RODFEdge.cpp.

RODFEdge::~RODFEdge ( )

Destructor.

Definition at line 48 of file RODFEdge.cpp.

RODFEdge::RODFEdge ( const RODFEdge src)
private

Invalidated copy constructor.

Member Function Documentation

void ROEdge::addEffort ( SUMOReal  value,
SUMOReal  timeBegin,
SUMOReal  timeEnd 
)
inherited

Adds a weight value.

Parameters
[in]valueThe value to add
[in]timeBeginThe begin time of the interval the given value is valid for [s]
[in]timeEndThe end time of the interval the given value is valid for [s]

Definition at line 111 of file ROEdge.cpp.

References ValueTimeLine< T >::add(), ROEdge::myEfforts, and ROEdge::myUsingETimeLine.

Referenced by ROLoader::EdgeFloatTimeLineRetriever_EdgeWeight::addEdgeWeight().

void ROEdge::addFollower ( ROEdge s,
std::string  dir = "" 
)
virtualinherited

Adds information about a connected edge.

The edge is added to "myFollowingEdges".

Parameters
[in]sThe edge to add
Todo:
What about vehicle-type aware connections?
Note
: if HAVE_INTERNAL is defined, the backward connections is added as well

Reimplemented in ROJTREdge.

Definition at line 100 of file ROEdge.cpp.

References ROEdge::myFollowingEdges.

Referenced by RONetHandler::parseConnection(), RONetHandler::parseDistrict(), and RONetHandler::parseDistrictEdge().

void ROEdge::addLane ( ROLane lane)
virtualinherited

Adds a lane to the edge while loading.

The lane's length is adapted. Additionally, the information about allowed/disallowed vehicle classes is patched using the information stored in the lane.

Parameters
[in]laneThe lane to add
Todo:
What about vehicle-type aware connections?

Definition at line 86 of file ROEdge.cpp.

References ROLane::getLength(), ROLane::getPermissions(), ROLane::getSpeed(), ROEdge::myCombinedPermissions, ROEdge::myLanes, ROEdge::myLength, ROEdge::mySpeed, and SUMOReal.

Referenced by RONetHandler::parseLane().

void Named::addTo ( const StoringVisitor cont) const
inlineinherited

Adds this object to the given container.

Parameters
in,filled]cont The container to add this item to

Definition at line 114 of file Named.h.

References Named::StoringVisitor::add().

void ROEdge::addTravelTime ( SUMOReal  value,
SUMOReal  timeBegin,
SUMOReal  timeEnd 
)
inherited

Adds a travel time value.

Parameters
[in]valueThe value to add
[in]timeBeginThe begin time of the interval the given value is valid for [s]
[in]timeEndThe end time of the interval the given value is valid for [s]

Definition at line 118 of file ROEdge.cpp.

References ValueTimeLine< T >::add(), ROEdge::myTravelTimes, and ROEdge::myUsingTTTimeLine.

Referenced by ROLoader::EdgeFloatTimeLineRetriever_EdgeTravelTime::addEdgeWeight().

bool ROEdge::allFollowersProhibit ( const ROVehicle *const  vehicle) const
inherited

Returns whether this edge succeding edges prohibit the given vehicle to pass them.

Parameters
[in]vehicleThe vehicle for which the information has to be returned
Returns
Whether the vehicle may continue its route on any of the following edges

Definition at line 349 of file ROEdge.cpp.

References ROEdge::myFollowingEdges.

Referenced by ROJTREdge::chooseNext().

void ROEdge::buildTimeLines ( const std::string &  measure)
inherited

Builds the internal representation of the travel time/effort.

Should be called after weights / travel times have been loaded.

In the case "weight-attribute" is one of "CO", "CO2", "HC", "NOx", "PMx", or "fuel" the proper value (departs/s) is computed and multiplied with the travel time.

Parameters
[in]measureThe name of the measure to use.

Definition at line 318 of file ROEdge.cpp.

References HelpersHBEFA::computeCO(), HelpersHBEFA::computeCO2(), HelpersHBEFA::computeFuel(), HelpersHBEFA::computeHC(), HelpersHBEFA::computeNOx(), HelpersHBEFA::computePMx(), ValueTimeLine< T >::fillGaps(), ROEdge::myEfforts, ROEdge::myLength, ROEdge::mySpeed, ROEdge::myTravelTimes, ROEdge::myUseBoundariesOnOverrideE, ROEdge::myUseBoundariesOnOverrideTT, ROEdge::myUsingETimeLine, ROEdge::myUsingTTTimeLine, SUMOReal, and SVE_UNKNOWN.

ROEdge * ROEdge::dictionary ( size_t  index)
staticinherited

Returns the ROEdge at the index.

Definition at line 360 of file ROEdge.cpp.

References ROEdge::myEdges.

static size_t ROEdge::dictSize ( )
inlinestaticinherited

Returns the number of edges.

Definition at line 350 of file ROEdge.h.

References ROEdge::myEdges.

SUMOReal ROEdge::getDistanceTo ( const ROEdge other) const
inherited

optimistic distance heuristic for use in routing

Definition at line 135 of file ROEdge.cpp.

References Position::distanceTo2D(), ROEdge::getFromNode(), RONode::getPosition(), and ROEdge::getToNode().

SUMOReal ROEdge::getEffort ( const ROVehicle *const  veh,
SUMOReal  time 
) const
inherited

Returns the effort for this edge.

Parameters
[in]vehThe vehicle for which the effort on this edge shall be retrieved
[in]timeThe tim for which the effort shall be returned [s]
Returns
The effort needed by the given vehicle to pass the edge at the given time
Todo:
Recheck whether the vehicle's maximum speed is considered

Definition at line 125 of file ROEdge.cpp.

References ROEdge::getStoredEffort(), ROVehicle::getType(), SUMOVTypeParameter::maxSpeed, MIN2(), ROEdge::myLength, ROEdge::mySpeed, and SUMOReal.

const std::vector< FlowDef > & RODFEdge::getFlows ( ) const

Definition at line 58 of file RODFEdge.cpp.

References myFlows.

Referenced by RODFNet::revalidateFlows().

ROEdge* ROEdge::getFollower ( unsigned int  pos) const
inlineinherited

Returns the edge at the given position from the list of reachable edges.

Parameters
[in]posThe position of the list within the list of following
Returns
The following edge, stored at position pos

Definition at line 270 of file ROEdge.h.

References ROEdge::myFollowingEdges.

Referenced by RODFRouteCont::addAllEndFollower(), and RODFNet::buildApproachList().

RONode* ROEdge::getFromNode ( ) const
inlineinherited

Returns the node this edge starts at.

Returns
The node this edge starts at

Definition at line 189 of file ROEdge.h.

References ROEdge::myFromNode.

Referenced by RODFNet::buildApproachList(), AGPosition::compute2dPosition(), and ROEdge::getDistanceTo().

const std::string& Named::getID ( ) const
inlineinherited

Returns the id.

Returns
The stored id

Reimplemented in MS_E2_ZS_CollectorOverLanes.

Definition at line 60 of file Named.h.

References Named::myID.

Referenced by Named::StoringVisitor::add(), MSDetectorControl::add(), RORouteDef::addAlternative(), MSNet::addBusStop(), NBLoadedSUMOTLDef::addConnection(), NLHandler::addConnection(), RONet::addEdge(), ROJTREdge::addFollowerProbability(), RONet::addNode(), NIImporter_SUMO::addPhase(), RONet::addRouteDef(), NBDistrict::addSink(), NBDistrict::addSource(), NBTrafficLightLogic::addStep(), MSRouteHandler::addStop(), NIXMLTrafficLightsHandler::addTlConnection(), NIVissimDisturbance::addToNode(), MSVehicle::addTraciStop(), MSPerson::MSPersonStage_Driving::beginEventOutput(), MSPerson::MSPersonStage_Waiting::beginEventOutput(), NIVisumTL::build(), RODFNet::buildApproachList(), MS_E2_ZS_CollectorOverLanes::buildCollector(), NIImporter_VISUM::buildDistrictNode(), NIVissimConnection::buildEdgeConnections(), RODFNet::buildEdgeFlowMap(), NBEdge::buildInnerEdges(), NGEdge::buildNBEdge(), NIVissimEdge::buildNBEdge(), NBRampsComputer::buildOffRamp(), NBRampsComputer::buildOnRamp(), MSVehicleTransfer::checkInsertions(), ODDistrictHandler::closeDistrict(), NLHandler::closeEdge(), RORouteHandler::closeRouteDistribution(), RORouteHandler::closeVehicle(), NBTrafficLightDefinition::collectAllLinks(), NBTrafficLightDefinition::collectEdges(), ROJTRRouter::compute(), NBTrafficLightDefinition::compute(), NBNode::computeInternalLaneShape(), NBEdge::computeLaneShapes(), NBNode::computeLogic(), NBNode::computeNodeShape(), NBTrafficLightLogicCont::computeSingleLogic(), NBTurningDirectionsComputer::computeTurnDirectionsForNode(), NGNet::connect(), NBEdge::connections_sorter(), NLDetectorBuilder::convUncontE2PosLength(), MSLane::detectCollisions(), NIVissimDistrictConnection::dict_BuildDistricts(), MSPerson::MSPersonStage_Driving::endEventOutput(), MSPerson::MSPersonStage_Waiting::endEventOutput(), MSE3Collector::enter(), MSCalibrator::execute(), Command_SaveTLSSwitches::execute(), MSVTypeProbe::execute(), MSVehicle::executeMove(), MSLane::executeMovements(), NBNodeCont::extract(), NBTrafficLightLogicCont::extract(), NBEdgeCont::extract(), RODFDetectorCon::getAggFlowFor(), RODFDetectorCon::getAnyDetectorForEdge(), MSNet::getBusStopID(), MS_E2_ZS_CollectorOverLanes::getLanePredeccessorLanes(), AGStreet::getName(), NIImporter_VISUM::getNamedEdgeContinuating(), NLTriggerBuilder::getPosition(), NLDetectorBuilder::getPositionChecking(), NBNode::getPossiblySplittedIncoming(), NBNode::getPossiblySplittedOutgoing(), NIImporter_VISUM::getReversedContinuating(), NBEdgeCont::ignoreFilterMatch(), MSActuatedTrafficLightLogic::init(), MSAgentbasedTrafficLightLogic::init(), NIImporter_SUMO::initTrafficLightLogic(), NIXMLTrafficLightsHandler::initTrafficLightLogic(), NBDistrictCont::insert(), NBTrafficLightLogicCont::insert(), NBNodeCont::insert(), NBEdgeCont::insert(), NBEdgeCont::joinSameNodeConnectingEdges(), MSE3Collector::leave(), NIImporter_OpenDrive::loadNetwork(), NBRampsComputer::moveRampRight(), MSPerson::MSPersonStage_Waiting::MSPersonStage_Waiting(), MSVehicle::MSVehicle(), NBOwnTLDef::myCompute(), NBLoadedTLDef::myCompute(), NIXMLTrafficLightsHandler::myEndElement(), NIXMLEdgesHandler::myEndElement(), NIImporter_SUMO::myEndElement(), NIXMLConnectionsHandler::myStartElement(), MSLaneSpeedTrigger::myStartElement(), MSTriggeredRerouter::myStartElement(), NBConnection::NBConnection(), NBRequest::NBRequest(), MSDevice_Tripinfo::notifyEnter(), MSDevice_Tripinfo::notifyLeave(), MSDevice_Person::notifyLeave(), RORouteHandler::openRoute(), Named::ComparatorIdLess::operator()(), NBTurningDirectionsComputer::combination_by_angle_sorter::operator()(), RODFNet::idComp::operator()(), NBOwnTLDef::edge_by_incoming_priority_sorter::operator()(), NBNetBuilder::by_id_sorter::operator()(), NBContHelper::same_connection_edge_sorter::operator()(), NBNode::nodes_by_id_sorter::operator()(), MSEdge::by_id_sorter::operator()(), NIImporter_VISUM::parse_EdgePolys(), NIImporter_VISUM::parse_Lanes(), NIImporter_VISUM::parse_LanesConnections(), NIImporter_VISUM::parse_Turns(), NIImporter_VISUM::parse_TurnsToSignalGroups(), NIXMLConnectionsHandler::parseDeprecatedLaneDefinition(), NIXMLConnectionsHandler::parseLaneBound(), NBLoadedTLDef::SignalGroup::patchTYellow(), AGStreet::print(), TraCIServerAPI_InductionLoop::processGet(), TraCIServerAPI_TLS::processGet(), TraCIServerAPI_Lane::processGet(), TraCIServerAPI_Vehicle::processGet(), TraCIServerAPI_Vehicle::processSet(), NWWriter_SUMO::prohibitionConnection(), NBEdgeCont::recheckPostProcessConnections(), NBLoadedTLDef::SignalGroup::remapIncoming(), NBLoadedTLDef::SignalGroup::remapOutgoing(), NBLoadedSUMOTLDef::removeConnection(), NBNode::removeSelfLoops(), NBEdgeCont::removeUnwishedEdges(), NBNodeCont::removeUnwishedNodes(), NBNodeCont::rename(), NBEdgeCont::rename(), NBConnection::replaceFrom(), MSBaseVehicle::replaceRouteEdges(), NBConnection::replaceTo(), NIImporter_DlrNavteq::TrafficlightsHandler::report(), NIXMLTrafficLightsHandler::retrieveLaneIndex(), PCPolyContainer::save(), RONet::saveAndRemoveRoutesUntil(), NBNodeCont::setAsTLControlled(), NBEdge::setControllingTLInformation(), NIXMLEdgesHandler::setNodes(), NBOwnTLDef::setTLControllingInformation(), NBLoadedSUMOTLDef::setTLControllingInformation(), NBLoadedTLDef::setTLControllingInformation(), NBEdgeCont::splitAt(), NIXMLConnectionsHandler::validateLaneInfo(), TraCIServerAPI_Vehicle::vtdMap_matchingEdgeLane(), TraCIServerAPI_Vehicle::vtdMap_matchingRoutePosition(), MSEmissionExport::write(), MSFCDExport::write(), MSInstantInductLoop::write(), NBSign::writeAsPOI(), NWWriter_SUMO::writeConnection(), NWWriter_SUMO::writeDistrict(), MSFullExport::writeEdge(), MSXMLRawOut::writeEdge(), NWWriter_SUMO::writeEdge(), MSMeanData::writeEdge(), NWWriter_XML::writeEdgesAndConnections(), NWWriter_SUMO::writeInternalConnections(), NWWriter_SUMO::writeJunction(), MSQueueExport::writeLane(), MSFullExport::writeLane(), NWWriter_DlrNavteq::writeLinksUnsplitted(), NWWriter_OpenDrive::writeNetwork(), NWWriter_XML::writeNodes(), NWWriter_DlrNavteq::writeNodesUnsplitted(), MSInductLoop::writeTypedXMLOutput(), MSFullExport::writeVehicles(), MSRouteProbe::writeXMLOutput(), and MSE2Collector::writeXMLOutput().

unsigned int ROEdge::getLaneNo ( ) const
inlineinherited

Returns the number of lanes this edge has.

Returns
This edge's number of lanes

Definition at line 181 of file ROEdge.h.

References ROEdge::myLanes.

Referenced by RODFDetectorHandler::myStartElement().

SUMOReal ROEdge::getLength ( ) const
inlineinherited

Returns the length of the edge.

Returns
This edge's length

Definition at line 158 of file ROEdge.h.

References ROEdge::myLength.

Referenced by RORouteHandler::addStop(), AGStreet::AGStreet(), RODFNet::buildRoutes(), RODFNet::getAbsPos(), AGStreet::getLength(), and AGStreet::print().

SUMOReal ROEdge::getMinimumTravelTime ( const ROVehicle *const  veh) const
inherited

Returns the travel time for this edge without using any stored timeLine.

Parameters
[in]vehThe vehicle for which the effort on this edge shall be retrieved
[in]timeThe time for which the effort shall be returned [s]

Definition at line 178 of file ROEdge.cpp.

References ROVehicle::getType(), SUMOVTypeParameter::maxSpeed, MIN2(), ROEdge::myLength, ROEdge::mySpeed, and SUMOReal.

Referenced by computeRoutes().

unsigned int ROEdge::getNoFollowing ( ) const
inherited

Returns the number of edges this edge is connected to.

If this edge's type is set to "sink", 0 is returned, otherwise the number of edges stored in "myFollowingEdges".

Returns
The number of edges following this edge

Definition at line 292 of file ROEdge.cpp.

References ROEdge::ET_SINK, ROEdge::getType(), and ROEdge::myFollowingEdges.

Referenced by RODFRouteCont::addAllEndFollower(), RODFNet::buildApproachList(), and RORouteHandler::parseFromTo().

SUMOReal ROEdge::getNoiseEffort ( const ROVehicle *const  veh,
SUMOReal  time 
) const
inherited
unsigned int ROEdge::getNumericalID ( ) const
inlineinherited

Returns the index (numeric id) of the edge.

Returns
This edge's numerical id

Definition at line 165 of file ROEdge.h.

References ROEdge::myIndex.

SVCPermissions ROEdge::getPermissions ( ) const
inlineinherited

Definition at line 221 of file ROEdge.h.

References ROEdge::myCombinedPermissions.

int ROEdge::getPriority ( ) const
inlineinherited

get edge priority (road class)

Definition at line 364 of file ROEdge.h.

References ROEdge::myPriority.

SUMOReal ROEdge::getSpeed ( ) const
inlineinherited

Returns the speed allowed on this edge.

Returns
The speed allowed on this edge

Definition at line 173 of file ROEdge.h.

References ROEdge::mySpeed.

Referenced by RODFNet::buildEdgeFlowMap(), RODFNet::buildRoutes(), RODFNet::computeRoutesFor(), RODFNet::isDestination(), RODFNet::isFalseSource(), and RODFNet::isSource().

bool ROEdge::getStoredEffort ( SUMOReal  time,
SUMOReal ret 
) const
protectedinherited

Retrieves the stored effort.

Parameters
[in]vehThe vehicle for which the effort on this edge shall be retrieved
[in]timeThe tim for which the effort shall be returned
Returns
Whether the effort is given

Definition at line 267 of file ROEdge.cpp.

References ValueTimeLine< T >::describesTime(), ValueTimeLine< T >::getSplitTime(), ValueTimeLine< T >::getValue(), ROEdge::myEfforts, ROEdge::myHaveEWarned, Named::myID, ROEdge::myInterpolate, ROEdge::myTravelTimes, ROEdge::myUsingETimeLine, SUMOReal, toString(), and WRITE_WARNING.

Referenced by ROEdge::getCO2Effort(), ROEdge::getCOEffort(), ROEdge::getEffort(), ROEdge::getFuelEffort(), ROEdge::getHCEffort(), ROEdge::getNoiseEffort(), ROEdge::getNOxEffort(), and ROEdge::getPMxEffort().

RONode* ROEdge::getToNode ( ) const
inlineinherited

Returns the node this edge ends at.

Returns
The node this edge ends at

Definition at line 197 of file ROEdge.h.

References ROEdge::myToNode.

Referenced by RODFNet::buildApproachList(), AGPosition::compute2dPosition(), and ROEdge::getDistanceTo().

SUMOReal ROEdge::getTravelTime ( const ROVehicle *const  veh,
SUMOReal  time 
) const
inherited

Returns the travel time for this edge.

Parameters
[in]vehThe vehicle for which the effort on this edge shall be retrieved
[in]timeThe time for which the effort shall be returned [s]
Returns
The traveltime needed by the given vehicle to pass the edge at the given time

Definition at line 146 of file ROEdge.cpp.

References ROVehicle::getType(), and SUMOVTypeParameter::maxSpeed.

Referenced by ROJTRRouter::compute(), computeRoutes(), ROEdge::getCO2Effort(), ROEdge::getCOEffort(), ROEdge::getFuelEffort(), ROEdge::getHCEffort(), ROEdge::getNOxEffort(), ROEdge::getPMxEffort(), and ROEdge::getTravelTime().

SUMOReal ROEdge::getTravelTime ( const SUMOReal  maxSpeed,
SUMOReal  time 
) const
inherited

Returns the travel time for this edge.

Parameters
[in]maxSpeedThe maximum speed to assume if no travel times are stored
[in]timeThe time in seconds(!) for which the traveltime shall be returned
Returns
The traveltime needed to pass the edge at the given time

Definition at line 152 of file ROEdge.cpp.

References ROEdge::getTravelTime(), MAX2(), and ROEdge::myLength.

EdgeType ROEdge::getType ( ) const
inlineinherited

Returns the type of the edge.

Returns
This edge's type
See Also
EdgeType

Definition at line 150 of file ROEdge.h.

References ROEdge::myType.

Referenced by ROJTRRouter::compute(), and ROEdge::getNoFollowing().

bool ROEdge::isConnectedTo ( const ROEdge *const  e) const
inlineinherited

returns the information whether this edge is directly connected to the given

Parameters
[in]eThe edge which may be connected
Returns
Whether the given edge is a direct successor to this one

Definition at line 207 of file ROEdge.h.

References ROEdge::myFollowingEdges.

RODFEdge& RODFEdge::operator= ( const RODFEdge src)
private

Invalidated assignment operator.

bool ROEdge::prohibits ( const ROVehicle *const  vehicle) const
inlineinherited

Returns whether this edge prohibits the given vehicle to pass it.

Parameters
[in]vehicleThe vehicle for which the information has to be returned
Returns
Whether the vehicle must not enter this edge

Definition at line 216 of file ROEdge.h.

References ROVehicle::getVClass(), and ROEdge::myCombinedPermissions.

Referenced by ROJTREdge::chooseNext(), and ROJTRRouter::compute().

void RODFEdge::setFlows ( const std::vector< FlowDef > &  flows)

Definition at line 52 of file RODFEdge.cpp.

References myFlows.

void Named::setID ( const std::string &  newID)
inlineinherited

resets the id

Parameters
[in]newIDThe new id of this object

Definition at line 68 of file Named.h.

References Named::myID.

Referenced by NBNodeCont::rename(), and NBEdgeCont::rename().

static void ROEdge::setTimeLineOptions ( bool  useBoundariesOnOverrideTT,
bool  useBoundariesOnOverrideE,
bool  interpolate 
)
inlinestaticinherited
void ROEdge::setType ( ROEdge::EdgeType  type)
inherited

Sets the type of te edge.

Parameters
[in]typeThe new type for the edge

Definition at line 312 of file ROEdge.cpp.

References ROEdge::myType.

Referenced by loadJTRDefinitions(), ROJTRTurnDefLoader::myStartElement(), RONetHandler::parseDistrict(), and RONetHandler::parseEdge().

Field Documentation

SVCPermissions ROEdge::myCombinedPermissions
protectedinherited

The list of allowed vehicle classes combined across lanes.

Definition at line 433 of file ROEdge.h.

Referenced by ROEdge::addLane(), ROEdge::getPermissions(), and ROEdge::prohibits().

std::vector< ROEdge * > ROEdge::myEdges
staticprotectedinherited

Definition at line 435 of file ROEdge.h.

Referenced by ROEdge::dictionary(), ROEdge::dictSize(), and ROEdge::ROEdge().

ValueTimeLine<SUMOReal> ROEdge::myEfforts
mutableprotectedinherited

Container storing passing time varying over time for the edge.

Definition at line 404 of file ROEdge.h.

Referenced by ROEdge::addEffort(), ROEdge::buildTimeLines(), and ROEdge::getStoredEffort().

std::vector<FlowDef> RODFEdge::myFlows
private

Definition at line 75 of file RODFEdge.h.

Referenced by getFlows(), and setFlows().

std::vector<ROEdge*> ROEdge::myFollowingEdges
protectedinherited
RONode* const ROEdge::myFromNode
protectedinherited

The nodes this edge is connecting.

Definition at line 381 of file ROEdge.h.

Referenced by ROEdge::getFromNode().

bool ROEdge::myHaveEWarned = false
staticprotectedinherited

Information whether the edge has reported missing weights.

Definition at line 414 of file ROEdge.h.

Referenced by ROEdge::getStoredEffort().

bool ROEdge::myHaveTTWarned = false
staticprotectedinherited

Information whether the edge has reported missing weights.

Definition at line 416 of file ROEdge.h.

Referenced by ROEdge::getTravelTime().

const unsigned int ROEdge::myIndex
protectedinherited

The index (numeric id) of the edge.

Definition at line 384 of file ROEdge.h.

Referenced by ROEdge::getNumericalID().

bool ROEdge::myInterpolate = false
staticprotectedinherited

Information whether to interpolate at interval boundaries.

Definition at line 411 of file ROEdge.h.

Referenced by ROEdge::getStoredEffort(), ROEdge::getTravelTime(), and ROEdge::setTimeLineOptions().

std::vector<ROLane*> ROEdge::myLanes
protectedinherited

This edge's lanes.

Definition at line 430 of file ROEdge.h.

Referenced by ROEdge::addLane(), ROEdge::getLaneNo(), and ROEdge::~ROEdge().

SUMOReal ROEdge::myLength
protectedinherited
const int ROEdge::myPriority
protectedinherited

The edge priority (road class)

Definition at line 387 of file ROEdge.h.

Referenced by ROEdge::getPriority().

RONode* const * const ROEdge::myToNode
protectedinherited

Definition at line 381 of file ROEdge.h.

Referenced by ROEdge::getToNode().

ValueTimeLine<SUMOReal> ROEdge::myTravelTimes
mutableprotectedinherited

Container storing passing time varying over time for the edge.

Definition at line 397 of file ROEdge.h.

Referenced by ROEdge::addTravelTime(), ROEdge::buildTimeLines(), ROEdge::getStoredEffort(), and ROEdge::getTravelTime().

EdgeType ROEdge::myType
protectedinherited

The type of the edge.

Definition at line 427 of file ROEdge.h.

Referenced by ROEdge::getType(), and ROEdge::setType().

bool ROEdge::myUseBoundariesOnOverrideE = false
staticprotectedinherited

Whether overriding weight boundaries shall be reported.

Definition at line 408 of file ROEdge.h.

Referenced by ROEdge::buildTimeLines(), and ROEdge::setTimeLineOptions().

bool ROEdge::myUseBoundariesOnOverrideTT = false
staticprotectedinherited

Whether overriding weight boundaries shall be reported.

Definition at line 401 of file ROEdge.h.

Referenced by ROEdge::buildTimeLines(), and ROEdge::setTimeLineOptions().

bool ROEdge::myUsingETimeLine
protectedinherited

Information whether the time line shall be used instead of the length value.

Definition at line 406 of file ROEdge.h.

Referenced by ROEdge::addEffort(), ROEdge::buildTimeLines(), and ROEdge::getStoredEffort().

bool ROEdge::myUsingTTTimeLine
protectedinherited

Information whether the time line shall be used instead of the length value.

Definition at line 399 of file ROEdge.h.

Referenced by ROEdge::addTravelTime(), ROEdge::buildTimeLines(), and ROEdge::getTravelTime().


The documentation for this class was generated from the following files: