![]() |
Eclipse SUMO - Simulation of Urban MObility
|
Definition of vehicle stop (position and duration) More...
#include <SUMOVehicleParameter.h>
Public Member Functions | |
void | clearParameter () |
Clears the parameter map. More... | |
double | getDouble (const std::string &key, const double defaultValue) const |
Returns the value for a given key converted to a double. More... | |
const std::string | getParameter (const std::string &key, const std::string &defaultValue="") const |
Returns the value for a given key. More... | |
const std::map< std::string, std::string > & | getParametersMap () const |
Returns the inner key/value map. More... | |
std::string | getParametersStr () const |
Returns the inner key/value map in string format "key1=value1|key2=value2|...|keyN=valueN". More... | |
bool | knowsParameter (const std::string &key) const |
Returns whether the parameter is known. More... | |
void | setParameter (const std::string &key, const std::string &value) |
Sets a parameter. More... | |
void | setParameters (const Parameterised ¶ms) |
set the inner key/value map in map<string, string> format More... | |
void | setParametersMap (const std::map< std::string, std::string > ¶msMap) |
set the inner key/value map in map<string, string> format More... | |
void | setParametersStr (const std::string ¶msString) |
set the inner key/value map in string format "key1=value1|key2=value2|...|keyN=valueN" More... | |
Stop () | |
constructor More... | |
void | unsetParameter (const std::string &key) |
Removes a parameter. More... | |
void | updateParameters (const std::map< std::string, std::string > &mapArg) |
Adds or updates all given parameters from the map. More... | |
void | write (OutputDevice &dev) const |
Writes the stop as XML. More... | |
void | writeParams (OutputDevice &device) const |
write Params in the given outputdevice More... | |
Static Public Member Functions | |
static bool | areParametersValid (const std::string &value, bool report=false) |
check if given string can be parsed to a parameters map "key1=value1|key2=value2|...|keyN=valueN" More... | |
Data Fields | |
std::vector< std::tuple< std::string, double, double > > | accessPos |
lanes and positions connected to this stop (only used by duarouter where Stop is used to store stopping places) More... | |
std::string | actType |
act Type (only used by Persons) (used by NETEDIT) More... | |
std::set< std::string > | awaitedContainers |
IDs of containers the vehicle has to wait for until departing. More... | |
std::set< std::string > | awaitedPersons |
IDs of persons the vehicle has to wait for until departing. More... | |
std::string | busstop |
(Optional) bus stop if one is assigned to the stop More... | |
std::string | chargingStation |
(Optional) charging station if one is assigned to the stop More... | |
std::string | containerstop |
(Optional) container stop if one is assigned to the stop More... | |
bool | containerTriggered |
whether an arriving container lets the vehicle continue More... | |
SUMOTime | duration |
The stopping duration. More... | |
double | endPos |
The stopping position end. More... | |
SUMOTime | extension |
The maximum time extension for boarding / loading. More... | |
bool | friendlyPos |
enable or disable friendly position (used by NETEDIT) More... | |
int | index |
at which position in the stops list More... | |
std::string | lane |
The lane to stop at. More... | |
std::string | line |
the new line id of the trip within a cyclical public transport route More... | |
int | parametersSet = 0 |
Information for the output which parameter were set. More... | |
bool | parking |
whether the vehicle is removed from the net while stopping More... | |
std::string | parkingarea |
(Optional) parking area if one is assigned to the stop More... | |
double | speed |
the speed at which this stop counts as reached (waypoint mode) More... | |
double | startPos |
The stopping position start. More... | |
bool | triggered |
whether an arriving person lets the vehicle continue More... | |
std::string | tripId |
id of the trip within a cyclical public transport route More... | |
SUMOTime | until |
The time at which the vehicle may continue its journey. More... | |
Static Private Member Functions | |
static bool | isParameterValid (const std::string &value, bool report) |
check if given string can be parsed to a parameter of type "key=value" More... | |
Private Attributes | |
std::map< std::string, std::string > | myMap |
The key->value map. More... | |
Definition of vehicle stop (position and duration)
Definition at line 572 of file SUMOVehicleParameter.h.
SUMOVehicleParameter::Stop::Stop | ( | ) |
constructor
Definition at line 159 of file SUMOVehicleParameter.cpp.
|
staticinherited |
check if given string can be parsed to a parameters map "key1=value1|key2=value2|...|keyN=valueN"
Definition at line 166 of file Parameterised.cpp.
References StringTokenizer::getVector(), Parameterised::isParameterValid(), and WRITE_WARNING.
Referenced by GNEBusStop::isValid(), GNEContainerStop::isValid(), GNEChargingStation::isValid(), GNEParkingArea::isValid(), GNEDetectorE1::isValid(), GNEDetectorEntryExit::isValid(), GNEVaporizer::isValid(), GNERouteProbe::isValid(), GNEClosingReroute::isValid(), GNERouteProbReroute::isValid(), GNEDestProbReroute::isValid(), GNEClosingLaneReroute::isValid(), GNEDetectorE3::isValid(), GNEDetectorE1Instant::isValid(), GNEParkingAreaReroute::isValid(), GNEParkingSpace::isValid(), GNEVariableSpeedSignStep::isValid(), GNECalibratorFlow::isValid(), GNERerouterInterval::isValid(), GNETAZSourceSink::isValid(), GNEVariableSpeedSign::isValid(), GNECrossing::isValid(), GNEAccess::isValid(), GNERerouter::isValid(), GNEDetectorE2::isValid(), GNECalibrator::isValid(), GNETAZ::isValid(), GNEConnection::isValid(), GNEVehicleType::isValid(), GNEPoly::isValid(), GNELane::isValid(), GNEPOI::isValid(), GNERide::isValid(), GNEJunction::isValid(), GNEPersonTrip::isValid(), GNEWalk::isValid(), GNERoute::isValid(), GNEEdge::isValid(), GNEPerson::isValid(), GNEVehicle::isValid(), and GNEFrameAttributesModuls::ParametersEditor::onCmdSetParameters().
|
inherited |
Clears the parameter map.
Definition at line 100 of file Parameterised.cpp.
References Parameterised::myMap.
Referenced by NLHandler::beginEdgeParsing(), and GNERouteHandler::closeRoute().
|
inherited |
Returns the value for a given key converted to a double.
[in] | key | The key to ask for |
[in] | defaultValue | The default value to return if no value is stored under the key |
Definition at line 82 of file Parameterised.cpp.
References Parameterised::myMap, StringUtils::toDouble(), and WRITE_WARNING.
Referenced by MSDevice_Battery::buildVehicleDevices(), MSSOTLPolicy5DStimulus::getStimCox(), MSSOTLPolicy5DStimulus::getStimCoxExpDispersionIn(), MSSOTLPolicy5DStimulus::getStimCoxExpDispersionOut(), MSSOTLPolicy5DStimulus::getStimCoxExpIn(), MSSOTLPolicy5DStimulus::getStimCoxExpOut(), MSSOTLPolicy5DStimulus::getStimDivisorDispersionIn(), MSSOTLPolicy5DStimulus::getStimDivisorDispersionOut(), MSSOTLPolicy5DStimulus::getStimDivisorIn(), MSSOTLPolicy5DStimulus::getStimDivisorOut(), MSSOTLPolicy5DStimulus::getStimOffsetDispersionIn(), MSSOTLPolicy5DStimulus::getStimOffsetDispersionOut(), MSSOTLPolicy5DStimulus::getStimOffsetIn(), MSSOTLPolicy5DStimulus::getStimOffsetOut(), and MSSOTLPolicy5DFamilyStimulus::MSSOTLPolicy5DFamilyStimulus().
|
inherited |
Returns the value for a given key.
[in] | key | The key to ask for |
[in] | defaultValue | The default value to return if no value is stored under the key |
Definition at line 72 of file Parameterised.cpp.
References Parameterised::myMap.
Referenced by NBEdge::addRestrictedLane(), FareModul::addStop(), NBEdge::append(), MSDevice_Battery::buildVehicleDevices(), MSDevice_Bluelight::buildVehicleDevices(), MSDevice_Example::buildVehicleDevices(), ROEdge::cacheParamRestrictions(), SUMOVTypeParameter::cacheParamRestrictions(), GNEEdge::drawEdgeName(), GNEConnection::drawGL(), GUIEdge::drawGL(), GUIBaseVehicle::drawOnPos(), libsumo::Simulation::findIntermodalRoute(), MSSwarmTrafficLightLogic::getBetaNo(), MSSwarmTrafficLightLogic::getBetaSp(), MSDevice::getBoolParam(), NBRailwayTopologyAnalyzer::getBrokenRailNodes(), MSSwarmTrafficLightLogic::getChangePlanProbability(), GUIVehicle::getColorValue(), GNELane::getColorValue(), GUILane::getColorValue(), MSSOTLTrafficLightLogic::getDecayConstant(), MSDevice_SSM::getDetectionRange(), MSDevice_SSM::getExtraTime(), MSDevice::getFloatParam(), MSSwarmTrafficLightLogic::getForgettingCox(), MSSwarmTrafficLightLogic::getGammaNo(), MSSwarmTrafficLightLogic::getGammaSp(), MSTLLogicControl::WAUTSwitchProcedure::getGSPValue(), MSSOTLTrafficLightLogic::getInputSensorsLength(), MSSwarmTrafficLightLogic::getLearningCox(), MSSwarmTrafficLightLogic::getMaxCongestionDuration(), MSDevice_SSM::getMeasuresAndThresholds(), MSSOTLRequestPolicy::getMinDecisionalPhaseDuration(), MSSOTLTrafficLightLogic::getMode(), GUIJunctionWrapper::getOptionalName(), GUIBaseVehicle::getOptionalName(), MSDevice_ToC::getOutputFilename(), MSDevice_SSM::getOutputFilename(), MSSOTLTrafficLightLogic::getOutputSensorsLength(), libsumo::Route::getParameter(), libsumo::Polygon::getParameter(), libsumo::POI::getParameter(), libsumo::Person::getParameter(), libsumo::TrafficLight::getParameter(), libsumo::Edge::getParameter(), libsumo::Lane::getParameter(), libsumo::VehicleType::getParameter(), libsumo::Vehicle::getParameter(), libsumo::Simulation::getParameter(), MSSwarmTrafficLightLogic::getPheroMaxVal(), MSSwarmTrafficLightLogic::getPoliciesParam(), MSSwarmTrafficLightLogic::getReinforcementMode(), MSSOTLTrafficLightLogic::getSpeedThreshold(), MSTLLogicControl::WAUTSwitchProcedure_Stretch::getStretchAreaNo(), MSTLLogicControl::WAUTSwitchProcedure_Stretch::getStretchBereichDef(), MSDevice::getStringParam(), MSSwarmTrafficLightLogic::getThetaInit(), MSSwarmTrafficLightLogic::getThetaMax(), MSSwarmTrafficLightLogic::getThetaMin(), MSSOTLTrafficLightLogic::getThreshold(), MSTriggeredRerouter::getWeight(), PushButtonLogic::init(), MSSOTLPhasePolicy::init(), SigmoidLogic::init(), MSSOTLTrafficLightLogic::init(), MSSwarmTrafficLightLogic::init(), GNEVehicleType::initRailVisualizationParameters(), MSVehicleType::initRailVisualizationParameters(), MSSOTLTrafficLightLogic::isDecayThresholdActivated(), MSSOTLTrafficLightLogic::isPushButtonPressed(), MSActuatedTrafficLightLogic::MSActuatedTrafficLightLogic(), MSDelayBasedTrafficLightLogic::MSDelayBasedTrafficLightLogic(), MSSOTLPolicy::MSSOTLPolicy(), MSSOTLPolicy5DFamilyStimulus::MSSOTLPolicy5DFamilyStimulus(), MSSwarmTrafficLightLogic::MSSwarmTrafficLightLogic(), GNEVehicleType::overwriteVType(), MSDevice_SSM::requestsTrajectories(), NBEdgeCont::splitAt(), MSDevice_SSM::useGeoCoords(), NWWriter_DlrNavteq::writeLinksUnsplitted(), and NWWriter_OpenDrive::writeRoadObjects().
|
inherited |
Returns the inner key/value map.
Definition at line 106 of file Parameterised.cpp.
References Parameterised::myMap.
Referenced by NIImporter_SUMO::_loadNetwork(), NBEdge::addLane(), GUIParameterTableWindow::closeBuilding(), NLHandler::closeEdge(), NBTrafficLightDefinition::compute(), GUITrafficLightLogicWrapper::getParameterWindow(), GUIPolygon::getParameterWindow(), GUIJunctionWrapper::getParameterWindow(), GUIPointOfInterest::getParameterWindow(), GUILane::getParameterWindow(), GUIPerson::getTypeParameterWindow(), GUIContainer::getTypeParameterWindow(), GUIVehicle::getTypeParameterWindow(), GUIMEVehicle::getTypeParameterWindow(), NIImporter_OpenStreetMap::insertEdge(), NBEdge::NBEdge(), NBLoadedSUMOTLDef::NBLoadedSUMOTLDef(), GUIParameterTableWindow::numParams(), GNEVehicleType::overwriteVType(), TraCIServerAPI_TrafficLight::processGet(), and Parameterised::setParameters().
|
inherited |
Returns the inner key/value map in string format "key1=value1|key2=value2|...|keyN=valueN".
Definition at line 112 of file Parameterised.cpp.
References Parameterised::myMap.
Referenced by GNEBusStop::getAttribute(), GNEContainerStop::getAttribute(), GNEChargingStation::getAttribute(), GNEParkingArea::getAttribute(), GNEVaporizer::getAttribute(), GNERouteProbe::getAttribute(), GNEDetectorE1::getAttribute(), GNEClosingReroute::getAttribute(), GNEDestProbReroute::getAttribute(), GNERouteProbReroute::getAttribute(), GNEDetectorE3::getAttribute(), GNEClosingLaneReroute::getAttribute(), GNEDetectorEntryExit::getAttribute(), GNEParkingAreaReroute::getAttribute(), GNEParkingSpace::getAttribute(), GNEVariableSpeedSignStep::getAttribute(), GNECalibratorFlow::getAttribute(), GNETAZSourceSink::getAttribute(), GNERerouterInterval::getAttribute(), GNEVariableSpeedSign::getAttribute(), GNEDetectorE1Instant::getAttribute(), GNEAccess::getAttribute(), GNERerouter::getAttribute(), GNECalibrator::getAttribute(), GNEDetectorE2::getAttribute(), GNETAZ::getAttribute(), GNEVehicleType::getAttribute(), GNEConnection::getAttribute(), GNEPoly::getAttribute(), GNELane::getAttribute(), GNERide::getAttribute(), GNEPOI::getAttribute(), GNEPersonTrip::getAttribute(), GNEJunction::getAttribute(), GNEWalk::getAttribute(), GNERoute::getAttribute(), GNEEdge::getAttribute(), GNEPerson::getAttribute(), and GNEVehicle::getAttribute().
|
staticprivateinherited |
check if given string can be parsed to a parameter of type "key=value"
Definition at line 189 of file Parameterised.cpp.
References StringTokenizer::getVector(), SUMOXMLDefinitions::isValidParameterKey(), and SUMOXMLDefinitions::isValidParameterValue().
Referenced by Parameterised::areParametersValid().
|
inherited |
Returns whether the parameter is known.
[in] | key | The key to ask for |
Definition at line 66 of file Parameterised.cpp.
References Parameterised::myMap.
Referenced by NBEdge::append(), MSDevice_Bluelight::buildVehicleDevices(), MSDevice_Example::buildVehicleDevices(), MSDevice::getBoolParam(), NWWriter_DlrNavteq::getBrunnelType(), MSDevice_SSM::getDetectionRange(), MSDevice_SSM::getExtraTime(), MSDevice::getFloatParam(), MSDevice_SSM::getMeasuresAndThresholds(), MSDevice_ToC::getOutputFilename(), MSDevice_SSM::getOutputFilename(), libsumo::Simulation::getParameter(), MSDevice::getStringParam(), MSTriggeredRerouter::getWeight(), GNEVehicleType::initRailVisualizationParameters(), MSVehicleType::initRailVisualizationParameters(), GNEVehicleType::overwriteVType(), MSDevice_SSM::requestsTrajectories(), MSDevice_SSM::useGeoCoords(), and NWWriter_OpenDrive::writeRoadObjects().
|
inherited |
Sets a parameter.
[in] | key | The parameter's name |
[in] | value | The parameter's value |
Definition at line 46 of file Parameterised.cpp.
References Parameterised::myMap.
Referenced by NLHandler::addDistrict(), RONetHandler::addParam(), SUMORouteHandler::addParam(), ShapeHandler::addPOI(), NBEdge::append(), NIImporter_OpenStreetMap::insertNodeChecking(), NBNodeCont::joinNodeCluster(), NBEdge::Lane::Lane(), NIImporter_OpenDrive::loadNetwork(), NIXMLTrafficLightsHandler::myStartElement(), MSStateHandler::myStartElement(), ShapeHandler::myStartElement(), NIXMLNodesHandler::myStartElement(), NIImporter_MATSim::EdgesHandler::myStartElement(), GNEAdditionalHandler::parseParameter(), GNEVehicleType::setAttribute(), NIImporter_OpenDrive::setLaneAttributes(), libsumo::Route::setParameter(), libsumo::Polygon::setParameter(), libsumo::POI::setParameter(), libsumo::TrafficLight::setParameter(), libsumo::Edge::setParameter(), and libsumo::Lane::setParameter().
|
inherited |
set the inner key/value map in map<string, string> format
Definition at line 127 of file Parameterised.cpp.
References Parameterised::getParametersMap(), and Parameterised::myMap.
|
inherited |
set the inner key/value map in map<string, string> format
Definition at line 133 of file Parameterised.cpp.
References Parameterised::myMap.
|
inherited |
set the inner key/value map in string format "key1=value1|key2=value2|...|keyN=valueN"
Definition at line 139 of file Parameterised.cpp.
References StringTokenizer::getVector(), and Parameterised::myMap.
Referenced by GNEContainerStop::setAttribute(), GNEBusStop::setAttribute(), GNEChargingStation::setAttribute(), GNEParkingArea::setAttribute(), GNEDetectorE1::setAttribute(), GNEDetectorEntryExit::setAttribute(), GNEDetectorE1Instant::setAttribute(), GNEVaporizer::setAttribute(), GNEClosingReroute::setAttribute(), GNEDestProbReroute::setAttribute(), GNEClosingLaneReroute::setAttribute(), GNERouteProbReroute::setAttribute(), GNEParkingAreaReroute::setAttribute(), GNEVariableSpeedSignStep::setAttribute(), GNETAZSourceSink::setAttribute(), GNEVariableSpeedSign::setAttribute(), GNERerouterInterval::setAttribute(), GNERouteProbe::setAttribute(), GNEParkingSpace::setAttribute(), GNEAccess::setAttribute(), GNERerouter::setAttribute(), GNEDetectorE3::setAttribute(), GNEDetectorE2::setAttribute(), GNECalibrator::setAttribute(), GNEConnection::setAttribute(), GNECalibratorFlow::setAttribute(), GNEVehicleType::setAttribute(), GNEPOI::setAttribute(), GNETAZ::setAttribute(), GNERide::setAttribute(), GNEPersonTrip::setAttribute(), GNELane::setAttribute(), GNEPoly::setAttribute(), GNEWalk::setAttribute(), GNERoute::setAttribute(), GNEJunction::setAttribute(), GNEPerson::setAttribute(), GNEVehicle::setAttribute(), and GNEEdge::setAttribute().
|
inherited |
Removes a parameter.
[in] | key | The parameter's name |
Definition at line 52 of file Parameterised.cpp.
References Parameterised::myMap.
Referenced by NIImporter_OpenStreetMap::insertEdge(), and GNEVehicleType::setAttribute().
|
inherited |
Adds or updates all given parameters from the map.
[in] | mapArg | The keys/values to insert |
Definition at line 58 of file Parameterised.cpp.
References Parameterised::myMap.
Referenced by NIImporter_SUMO::_loadNetwork(), PCLoaderOSM::addPOI(), PCLoaderOSM::addPolygon(), NLHandler::closeEdge(), NLJunctionControlBuilder::closeJunction(), NBTrafficLightDefinition::compute(), NIImporter_OpenStreetMap::insertEdge(), NBEdge::NBEdge(), and NBLoadedSUMOTLDef::NBLoadedSUMOTLDef().
void SUMOVehicleParameter::Stop::write | ( | OutputDevice & | dev | ) | const |
Writes the stop as XML.
[in,out] | dev | The device to write into |
IOError | not yet implemented |
Definition at line 175 of file SUMOVehicleParameter.cpp.
References OutputDevice::closeTag(), SUMOVehicleParameter::line, OutputDevice::openTag(), SUMOVehicleParameter::parametersSet, STOP_CONTAINER_TRIGGER_SET, STOP_DURATION_SET, STOP_END_SET, STOP_EXPECTED_CONTAINERS_SET, STOP_EXPECTED_SET, STOP_EXTENSION_SET, STOP_LINE_SET, STOP_PARKING_SET, STOP_SPEED_SET, STOP_START_SET, STOP_TRIGGER_SET, STOP_TRIP_ID_SET, STOP_UNTIL_SET, SUMO_ATTR_ACTTYPE, SUMO_ATTR_BUS_STOP, SUMO_ATTR_CHARGING_STATION, SUMO_ATTR_CONTAINER_STOP, SUMO_ATTR_CONTAINER_TRIGGERED, SUMO_ATTR_DURATION, SUMO_ATTR_ENDPOS, SUMO_ATTR_EXPECTED, SUMO_ATTR_EXPECTED_CONTAINERS, SUMO_ATTR_EXTENSION, SUMO_ATTR_FRIENDLY_POS, SUMO_ATTR_LANE, SUMO_ATTR_LINE, SUMO_ATTR_PARKING, SUMO_ATTR_PARKING_AREA, SUMO_ATTR_SPEED, SUMO_ATTR_STARTPOS, SUMO_ATTR_TRIGGERED, SUMO_ATTR_TRIP_ID, SUMO_ATTR_UNTIL, SUMO_TAG_STOP, time2string(), and OutputDevice::writeAttr().
Referenced by ROPerson::Stop::saveAsXML(), MEVehicle::saveState(), MSDevice_Vehroutes::stopEnded(), and GNEStop::writeDemandElement().
|
inherited |
write Params in the given outputdevice
Definition at line 154 of file Parameterised.cpp.
References OutputDevice::closeTag(), StringUtils::escapeXML(), Parameterised::myMap, OutputDevice::openTag(), SUMO_ATTR_KEY, SUMO_ATTR_VALUE, SUMO_TAG_PARAM, and OutputDevice::writeAttr().
Referenced by ROVehicle::saveAsXML(), ROPerson::saveAsXML(), MEVehicle::saveState(), MSVehicle::saveState(), SUMOVTypeParameter::write(), GNEAdditional::writeAdditional(), NWWriter_SUMO::writeConnection(), GNERide::writeDemandElement(), GNEPersonTrip::writeDemandElement(), GNEWalk::writeDemandElement(), GNERoute::writeDemandElement(), GNEPerson::writeDemandElement(), GNEVehicle::writeDemandElement(), NWWriter_SUMO::writeEdge(), NWWriter_XML::writeEdgesAndConnections(), NWWriter_SUMO::writeJunction(), NWWriter_SUMO::writeLane(), NWWriter_XML::writeNodes(), MSDevice_Vehroutes::writeOutput(), PointOfInterest::writeXML(), and SUMOPolygon::writeXML().
std::vector<std::tuple<std::string, double, double> > SUMOVehicleParameter::Stop::accessPos |
lanes and positions connected to this stop (only used by duarouter where Stop is used to store stopping places)
Definition at line 646 of file SUMOVehicleParameter.h.
Referenced by RONetHandler::parseAccess().
std::string SUMOVehicleParameter::Stop::actType |
act Type (only used by Persons) (used by NETEDIT)
Definition at line 634 of file SUMOVehicleParameter.h.
Referenced by GNEStop::getAttribute(), GNEStopFrame::getStopParameter(), and GNEStop::setAttribute().
std::set<std::string> SUMOVehicleParameter::Stop::awaitedContainers |
IDs of containers the vehicle has to wait for until departing.
Definition at line 628 of file SUMOVehicleParameter.h.
Referenced by MSVehicle::addStop(), GNEStop::getAttribute(), GNEStopFrame::getStopParameter(), SUMORouteHandler::parseStop(), and GNEStop::setAttribute().
std::set<std::string> SUMOVehicleParameter::Stop::awaitedPersons |
IDs of persons the vehicle has to wait for until departing.
Definition at line 625 of file SUMOVehicleParameter.h.
Referenced by MSVehicle::addStop(), GNEStop::getAttribute(), GNEStopFrame::getStopParameter(), SUMORouteHandler::parseStop(), and GNEStop::setAttribute().
std::string SUMOVehicleParameter::Stop::busstop |
(Optional) bus stop if one is assigned to the stop
Definition at line 589 of file SUMOVehicleParameter.h.
Referenced by IntermodalNetwork< E, L, N, V >::addSchedule(), MSRouteHandler::addStop(), RORouteHandler::addStop(), GNERouteHandler::addStop(), MSVehicle::addStop(), MSVehicle::addTraciStopAtStoppingPlace(), GNERouteHandler::buildStop(), GNEStopFrame::getStopParameter(), RONet::getStoppingPlaceName(), MSLane::handleCollisionBetween(), SUMORouteHandler::parseStop(), RONetHandler::parseStoppingPlace(), GUIVehicle::rerouteDRTStop(), and MSStopOut::stopEnded().
std::string SUMOVehicleParameter::Stop::chargingStation |
(Optional) charging station if one is assigned to the stop
Definition at line 598 of file SUMOVehicleParameter.h.
Referenced by MSRouteHandler::addStop(), GNERouteHandler::addStop(), MSVehicle::addStop(), MSVehicle::addTraciStopAtStoppingPlace(), GNERouteHandler::buildStop(), GNEStopFrame::getStopParameter(), MSLane::handleCollisionBetween(), SUMORouteHandler::parseStop(), and MSStopOut::stopEnded().
std::string SUMOVehicleParameter::Stop::containerstop |
(Optional) container stop if one is assigned to the stop
Definition at line 592 of file SUMOVehicleParameter.h.
Referenced by MSRouteHandler::addStop(), RORouteHandler::addStop(), GNERouteHandler::addStop(), MSVehicle::addStop(), MSVehicle::addTraciStopAtStoppingPlace(), GNERouteHandler::buildStop(), GNEStopFrame::getStopParameter(), MSLane::handleCollisionBetween(), SUMORouteHandler::parseStop(), and MSStopOut::stopEnded().
bool SUMOVehicleParameter::Stop::containerTriggered |
whether an arriving container lets the vehicle continue
Definition at line 619 of file SUMOVehicleParameter.h.
Referenced by MSVehicle::addStop(), MSVehicle::addTraciStop(), MSVehicle::addTraciStopAtStoppingPlace(), GNEStopFrame::getStopParameter(), libsumo::Vehicle::getStopState(), MSLane::handleCollisionBetween(), SUMORouteHandler::parseStop(), GUIVehicle::rerouteDRTStop(), and GNEStop::setAttribute().
SUMOTime SUMOVehicleParameter::Stop::duration |
The stopping duration.
Definition at line 607 of file SUMOVehicleParameter.h.
Referenced by MSRouteHandler::addStop(), MSVehicle::addStop(), MSVehicle::addTraciStop(), MSVehicle::addTraciStopAtStoppingPlace(), GNEStop::getAttribute(), ROPerson::Stop::getDuration(), GNEStopFrame::getStopParameter(), MSLane::handleCollisionBetween(), SUMORouteHandler::parseStop(), MSVehicle::replaceParkingArea(), GUIVehicle::rerouteDRTStop(), GNEStop::setAttribute(), and MSDevice_ToC::triggerMRM().
double SUMOVehicleParameter::Stop::endPos |
The stopping position end.
Definition at line 604 of file SUMOVehicleParameter.h.
Referenced by RORouteHandler::addPersonTrip(), ROVehicle::addStop(), MSRouteHandler::addStop(), RORouteHandler::addStop(), MEVehicle::addStop(), GNERouteHandler::addStop(), MSVehicle::addStop(), MSVehicle::addTraciStop(), MSVehicle::addTraciStopAtStoppingPlace(), MSTransportableControl::boardAnyWaiting(), GNEStop::commitGeometryMoving(), GNEStop::enableAttribute(), GNEStop::getAttribute(), GNEStop::getAttributeDouble(), GNEStop::getDemandElementProblem(), ROPerson::Stop::getDestinationPos(), GNEStop::getEndGeometryPositionOverLane(), GNEStop::getPositionInView(), GNEStop::getStartGeometryPositionOverLane(), GNEStopFrame::getStopParameter(), ROEdge::getStopPosition(), MSEdge::getStopPosition(), MSLane::handleCollisionBetween(), GNEStop::isDemandElementValid(), MSLane::isInsertionSuccess(), MSVehicle::isStoppedInRange(), GNEStop::isValid(), MSTransportableControl::loadAnyWaiting(), GNEStop::moveGeometry(), RONetHandler::parseStoppingPlace(), MSVehicle::planMoveInternal(), MEVehicle::processStop(), MSVehicle::replaceParkingArea(), GUIVehicle::rerouteDRTStop(), GNEStop::setAttribute(), and MSDevice_ToC::triggerMRM().
SUMOTime SUMOVehicleParameter::Stop::extension |
The maximum time extension for boarding / loading.
Definition at line 613 of file SUMOVehicleParameter.h.
Referenced by GNEStop::getAttribute(), GNEStopFrame::getStopParameter(), SUMORouteHandler::parseStop(), MSVehicle::processNextStop(), and GNEStop::setAttribute().
bool SUMOVehicleParameter::Stop::friendlyPos |
enable or disable friendly position (used by NETEDIT)
Definition at line 631 of file SUMOVehicleParameter.h.
Referenced by GNERouteHandler::addStop(), GNEStop::getAttribute(), GNEStopFrame::getStopParameter(), GNEStop::isDemandElementValid(), GNEStop::isValid(), and GNEStop::setAttribute().
int SUMOVehicleParameter::Stop::index |
at which position in the stops list
Definition at line 649 of file SUMOVehicleParameter.h.
Referenced by ROVehicle::addStop(), MEVehicle::addStop(), MSVehicle::addStop(), MSVehicle::addTraciStop(), MSVehicle::addTraciStopAtStoppingPlace(), GNEStop::getAttribute(), GNEStopFrame::getStopParameter(), MSLane::handleCollisionBetween(), SUMORouteHandler::parseStop(), GUIVehicle::rerouteDRTStop(), and GNEStop::setAttribute().
std::string SUMOVehicleParameter::Stop::lane |
The lane to stop at.
Definition at line 586 of file SUMOVehicleParameter.h.
Referenced by RORouteHandler::addPersonTrip(), ROVehicle::addStop(), MSRouteHandler::addStop(), RORouteHandler::addStop(), MEVehicle::addStop(), GNERouteHandler::addStop(), MSVehicle::addStop(), MSVehicle::addTraciStop(), MSVehicle::addTraciStopAtStoppingPlace(), GNERouteHandler::buildStop(), GNEStopFrame::getStopParameter(), ROEdge::getStopPosition(), MSEdge::getStopPosition(), MSLane::handleCollisionBetween(), RORouteHandler::myStartElement(), SUMORouteHandler::parseStop(), RONetHandler::parseStoppingPlace(), MSVehicle::replaceParkingArea(), GUIVehicle::rerouteDRTStop(), and MSDevice_ToC::triggerMRM().
std::string SUMOVehicleParameter::Stop::line |
the new line id of the trip within a cyclical public transport route
Definition at line 640 of file SUMOVehicleParameter.h.
Referenced by SUMORouteHandler::parseStop(), MSVehicle::processNextStop(), and MSStopOut::stopEnded().
|
privateinherited |
The key->value map.
Definition at line 120 of file Parameterised.h.
Referenced by Parameterised::clearParameter(), Parameterised::getDouble(), Parameterised::getParameter(), Parameterised::getParametersMap(), Parameterised::getParametersStr(), Parameterised::knowsParameter(), Parameterised::setParameter(), Parameterised::setParameters(), Parameterised::setParametersMap(), Parameterised::setParametersStr(), Parameterised::unsetParameter(), Parameterised::updateParameters(), and Parameterised::writeParams().
int SUMOVehicleParameter::Stop::parametersSet = 0 |
Information for the output which parameter were set.
Definition at line 652 of file SUMOVehicleParameter.h.
Referenced by MSVehicle::addTraciStop(), MSVehicle::addTraciStopAtStoppingPlace(), GNEStop::commitGeometryMoving(), GNEStop::disableAttribute(), GNEStop::enableAttribute(), GNEStop::getAttribute(), GNEStop::getAttributeDouble(), GNEStop::getEndGeometryPositionOverLane(), GNEStop::getPositionInView(), GNEStop::getStartGeometryPositionOverLane(), GNEStopFrame::getStopParameter(), GNEStop::isAttributeEnabled(), GNEStop::isDemandElementValid(), GNEStop::moveGeometry(), SUMORouteHandler::parseStop(), GUIVehicle::rerouteDRTStop(), GNEStop::setAttribute(), and GNEStop::setEnabledAttribute().
bool SUMOVehicleParameter::Stop::parking |
whether the vehicle is removed from the net while stopping
Definition at line 622 of file SUMOVehicleParameter.h.
Referenced by MSVehicle::addTraciStop(), MSVehicle::addTraciStopAtStoppingPlace(), GNEStop::getAttribute(), GNEStopFrame::getStopParameter(), libsumo::Vehicle::getStopState(), MSLane::handleCollisionBetween(), SUMORouteHandler::parseStop(), GUIVehicle::rerouteDRTStop(), GNEStop::setAttribute(), MSStopOut::stopEnded(), and MSDevice_ToC::triggerMRM().
std::string SUMOVehicleParameter::Stop::parkingarea |
(Optional) parking area if one is assigned to the stop
Definition at line 595 of file SUMOVehicleParameter.h.
Referenced by MSRouteHandler::addStop(), RORouteHandler::addStop(), GNERouteHandler::addStop(), MSVehicle::addStop(), MSVehicle::addTraciStopAtStoppingPlace(), GNERouteHandler::buildStop(), GNEStopFrame::getStopParameter(), MSLane::handleCollisionBetween(), SUMORouteHandler::parseStop(), MSVehicle::replaceParkingArea(), MSStopOut::stopEnded(), and MSDevice_ToC::triggerMRM().
double SUMOVehicleParameter::Stop::speed |
the speed at which this stop counts as reached (waypoint mode)
Definition at line 643 of file SUMOVehicleParameter.h.
Referenced by SUMORouteHandler::parseStop(), MSVehicle::planMoveInternal(), and MSVehicle::processNextStop().
double SUMOVehicleParameter::Stop::startPos |
The stopping position start.
Definition at line 601 of file SUMOVehicleParameter.h.
Referenced by RORouteHandler::addPersonTrip(), MSRouteHandler::addStop(), RORouteHandler::addStop(), GNERouteHandler::addStop(), MSVehicle::addStop(), MSVehicle::addTraciStop(), MSVehicle::addTraciStopAtStoppingPlace(), MSTransportableControl::boardAnyWaiting(), GNEStop::commitGeometryMoving(), GNEStop::getAttribute(), GNEStop::getAttributeDouble(), GNEStop::getDemandElementProblem(), ROPerson::Stop::getDestinationPos(), GNEStop::getPositionInView(), GNEStop::getStartGeometryPositionOverLane(), GNEStopFrame::getStopParameter(), ROEdge::getStopPosition(), MSEdge::getStopPosition(), MSLane::handleCollisionBetween(), GNEStop::isDemandElementValid(), MSVehicle::isStoppedInRange(), GNEStop::isValid(), MSTransportableControl::loadAnyWaiting(), GNEStop::moveGeometry(), RONetHandler::parseStoppingPlace(), MSVehicle::planMoveInternal(), MSVehicle::processNextStop(), MSVehicle::replaceParkingArea(), GUIVehicle::rerouteDRTStop(), libsumo::Vehicle::resume(), GNEStop::setAttribute(), MSDevice_ToC::triggerMRM(), and MSVehicle::updateBestLanes().
bool SUMOVehicleParameter::Stop::triggered |
whether an arriving person lets the vehicle continue
Definition at line 616 of file SUMOVehicleParameter.h.
Referenced by MSVehicle::addStop(), MSVehicle::addTraciStop(), MSVehicle::addTraciStopAtStoppingPlace(), GNEStopFrame::getStopParameter(), libsumo::Vehicle::getStopState(), MSLane::handleCollisionBetween(), SUMORouteHandler::parseStop(), GUIVehicle::rerouteDRTStop(), and GNEStop::setAttribute().
std::string SUMOVehicleParameter::Stop::tripId |
id of the trip within a cyclical public transport route
Definition at line 637 of file SUMOVehicleParameter.h.
Referenced by GNEStop::getAttribute(), GNEStopFrame::getStopParameter(), SUMORouteHandler::parseStop(), MSVehicle::processNextStop(), GNEStop::setAttribute(), and MSStopOut::stopEnded().
SUMOTime SUMOVehicleParameter::Stop::until |
The time at which the vehicle may continue its journey.
Definition at line 610 of file SUMOVehicleParameter.h.
Referenced by IntermodalNetwork< E, L, N, V >::addSchedule(), MSRouteHandler::addStop(), MSVehicle::addStop(), MSVehicle::addTraciStop(), MSVehicle::addTraciStopAtStoppingPlace(), GNEStop::getAttribute(), GNEStopFrame::getStopParameter(), MSLane::handleCollisionBetween(), SUMORouteHandler::parseStop(), MSVehicle::processNextStop(), GUIVehicle::rerouteDRTStop(), GNEStop::setAttribute(), and MSStopOut::stopEnded().