Eclipse SUMO - Simulation of Urban MObility
|
Definition of vehicle stop (position and duration) More...
#include <SUMOVehicleParameter.h>
Public Types | |
typedef std::map< std::string, std::string > | Map |
parameters map | |
Public Member Functions | |
void | clearParameter () |
Clears the parameter map. | |
double | getDouble (const std::string &key, const double defaultValue) const |
Returns the value for a given key converted to a double. | |
std::vector< double > | getDoubles (const std::string &key, std::vector< double > defaultValue=std::vector< double >()) const |
Returns the value for a given key converted to a list of doubles. | |
int | getFlags () const |
return flags as per Vehicle::getStops | |
virtual const std::string | getParameter (const std::string &key, const std::string defaultValue="") const |
Returns the value for a given key. | |
const Parameterised::Map & | getParametersMap () const |
Returns the inner key/value map. | |
std::string | getParametersStr (const std::string kvsep="=", const std::string sep="|") const |
Returns the inner key/value map in string format "key1=value1|key2=value2|...|keyN=valueN". | |
std::vector< std::string > | getStoppingPlaceIDs () const |
return list of stopping place ids | |
std::vector< std::string > | getTriggers () const |
write trigger attribute | |
bool | hasParameter (const std::string &key) const |
Returns whether the parameter is set. | |
void | mergeParameters (const Parameterised::Map &mapArg, const std::string separator=" ", bool uniqueValues=true) |
Adds or appends all given parameters from the map. | |
virtual void | setParameter (const std::string &key, const std::string &value) |
Sets a parameter. | |
void | setParameters (const Parameterised ¶ms) |
set the inner key/value map in map<string, string> format | |
void | setParametersStr (const std::string ¶msString, const std::string kvsep="=", const std::string sep="|") |
set the inner key/value map in string format "key1=value1|key2=value2|...|keyN=valueN" | |
void | unsetParameter (const std::string &key) |
Removes a parameter. | |
void | updateParameters (const Parameterised::Map &mapArg) |
Adds or updates all given parameters from the map. | |
void | write (OutputDevice &dev, const bool close=true, const bool writeTagAndParents=true) const |
Writes the stop as XML. | |
void | writeParams (OutputDevice &device) const |
write Params in the given outputdevice | |
virtual | ~Stop () |
Destructor. | |
Static Public Member Functions | |
static bool | areAttributesValid (const std::string &value, bool report=false, const std::string kvsep="=", const std::string sep="|") |
check if given string can be parsed to an attributes map "key1=value1|key2=value2|...|keyN=valueN" (used in generic datas) | |
static bool | areParametersValid (const std::string &value, bool report=false, const std::string kvsep="=", const std::string sep="|") |
check if given string can be parsed to a parameters map "key1=value1|key2=value2|...|keyN=valueN" | |
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) | |
std::string | actType |
act Type (only used by Persons) (used by netedit) | |
SUMOTime | arrival = -1 |
The (expected) time at which the vehicle reaches the stop. | |
std::set< std::string > | awaitedContainers |
IDs of containers the vehicle has to wait for until departing. | |
std::set< std::string > | awaitedPersons |
IDs of persons the vehicle has to wait for until departing. | |
bool | breakDown = false |
Whether this stop was triggered by a car failure / mechanical problem / lack of energy. | |
std::string | busstop |
(Optional) bus stop if one is assigned to the stop | |
std::string | chargingStation |
(Optional) charging station if one is assigned to the stop | |
bool | collision = false |
Whether this stop was triggered by a collision. | |
std::string | containerstop |
(Optional) container stop if one is assigned to the stop | |
bool | containerTriggered = false |
whether an arriving container lets the vehicle continue | |
SUMOTime | duration = -1 |
The stopping duration. | |
std::string | edge |
The edge to stop at. | |
SUMOTime | ended = -1 |
the time at which this stop was ended | |
double | endPos = 0. |
The stopping position end. | |
SUMOTime | extension = -1 |
The maximum time extension for boarding / loading. | |
bool | friendlyPos = false |
enable or disable friendly position (used by netedit) | |
int | index = 0 |
at which position in the stops list | |
std::string | join |
the id of the vehicle (train portion) to which this vehicle shall be joined | |
bool | joinTriggered = false |
whether an joined vehicle lets this vehicle continue | |
SUMOTime | jump = -1 |
transfer time if there shall be a jump from this stop to the next route edge | |
std::string | lane |
The lane to stop at. | |
std::string | line |
the new line id of the trip within a cyclical public transport route | |
bool | onDemand = false |
whether the stop may be skipped | |
std::string | overheadWireSegment |
(Optional) overhead line segment if one is assigned to the stop | |
int | parametersSet = 0 |
Information for the output which parameter were set. | |
ParkingType | parking = ParkingType::ONROAD |
whether the vehicle is removed from the net while stopping | |
std::string | parkingarea |
(Optional) parking area if one is assigned to the stop | |
std::set< std::string > | permitted |
IDs of persons or containers that may board/load at this stop. | |
double | posLat = INVALID_DOUBLE |
the lateral offset when stopping | |
int | routeIndex = 0 |
at which position within the route (only used for state saving) | |
double | speed = 0. |
the speed at which this stop counts as reached (waypoint mode) | |
std::string | split |
the id of the vehicle (train portion) that splits of upon reaching this stop | |
SUMOTime | started = -1 |
the time at which this stop was reached | |
double | startPos = 0. |
The stopping position start. | |
bool | triggered = false |
whether an arriving person lets the vehicle continue | |
std::string | tripId |
id of the trip within a cyclical public transport route | |
SUMOTime | until = -1 |
The time at which the vehicle may continue its journey. | |
SUMOTime | waitUntil = -1 |
The earliest pickup time for a taxi stop. | |
Static Private Member Functions | |
static bool | isParameterValid (const std::string &value, const std::string &kvsep, const std::string &sep) |
check if given string can be parsed to a parameter of type "key=value" | |
Private Attributes | |
Parameterised::Map | myMap |
The key->value map. | |
Definition of vehicle stop (position and duration)
Definition at line 349 of file SUMOVehicleParameter.h.
|
inherited |
parameters map
Definition at line 45 of file Parameterised.h.
|
inlinevirtual |
Destructor.
Definition at line 352 of file SUMOVehicleParameter.h.
|
staticinherited |
check if given string can be parsed to an attributes map "key1=value1|key2=value2|...|keyN=valueN" (used in generic datas)
Definition at line 219 of file Parameterised.cpp.
References StringTokenizer::getVector(), Parameterised::isParameterValid(), TL, and WRITE_WARNINGF.
Referenced by GNEFrameAttributeModules::GenericDataAttributes::areAttributesValid(), GNEEdgeData::isValid(), GNEEdgeRelData::isValid(), and GNETAZRelData::isValid().
|
staticinherited |
check if given string can be parsed to a parameters map "key1=value1|key2=value2|...|keyN=valueN"
Definition at line 200 of file Parameterised.cpp.
References StringTokenizer::getVector(), Parameterised::isParameterValid(), TL, and WRITE_WARNINGF.
Referenced by GNEDetector::isDetectorValid(), GNEAccess::isValid(), GNEBusStop::isValid(), GNECalibrator::isValid(), GNECalibratorFlow::isValid(), GNEChargingStation::isValid(), GNEContainerStop::isValid(), GNEMultiEntryExitDetector::isValid(), GNEOverheadWire::isValid(), GNEParkingArea::isValid(), GNEParkingSpace::isValid(), GNERerouter::isValid(), GNERouteProbe::isValid(), GNETAZ::isValid(), GNETAZSourceSink::isValid(), GNETractionSubstation::isValid(), GNEVaporizer::isValid(), GNEVariableSpeedSign::isValid(), GNEContainer::isValid(), GNEPerson::isValid(), GNERoute::isValid(), GNEStop::isValid(), GNEVehicle::isValid(), GNEVType::isValid(), GNEConnection::isValid(), GNECrossing::isValid(), GNEEdge::isValid(), GNEEdgeType::isValid(), GNEJunction::isValid(), GNELane::isValid(), GNELaneType::isValid(), GNEPOI::isValid(), GNEPoly::isValid(), GNETLSEditorFrame::TLSAttributes::isValidParameters(), and GNEFrameAttributeModules::GenericDataAttributes::onCmdSetParameters().
|
inherited |
Clears the parameter map.
Definition at line 139 of file Parameterised.cpp.
References Parameterised::myMap.
Referenced by NLHandler::beginEdgeParsing(), and GNESingleParametersDialog::onCmdAccept().
|
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 100 of file Parameterised.cpp.
References Parameterised::myMap, TL, StringUtils::toDouble(), WRITE_WARNING, and WRITE_WARNINGF.
Referenced by MSPModel_JuPedSim::add(), MSVehicleType::build(), MSVehicleType::check(), EnergyParams::EnergyParams(), 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(), MSActuatedTrafficLightLogic::init(), MSDevice_ElecHybrid::MSDevice_ElecHybrid(), MSSOTLPolicy5DFamilyStimulus::MSSOTLPolicy5DFamilyStimulus(), and MSDevice_Battery::readParameterValue().
|
inherited |
Returns the value for a given key converted to a list of doubles.
[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 118 of file Parameterised.cpp.
References StringTokenizer::getVector(), Parameterised::myMap, TL, StringUtils::toDouble(), WRITE_WARNING, and WRITE_WARNINGF.
Referenced by EnergyParams::EnergyParams().
int SUMOVehicleParameter::Stop::getFlags | ( | ) | const |
return flags as per Vehicle::getStops
Definition at line 772 of file SUMOVehicleParameter.cpp.
References OFFROAD.
Referenced by libsumo::Helper::buildStopData(), MSStop::getStateFlagsOld(), and LIBSUMO_NAMESPACE::Vehicle::setStopParameter().
|
virtualinherited |
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 |
Reimplemented in MSActuatedTrafficLightLogic, MSSimpleTrafficLightLogic, and NEMALogic.
Definition at line 90 of file Parameterised.cpp.
References Parameterised::myMap.
Referenced by MSPModel_JuPedSim::add(), NBRailwayTopologyAnalyzer::addBidiEdge(), NBEdge::addRestrictedLane(), FareModul::addStop(), GUIInductLoop::buildDetectorGUIRepresentation(), MSDevice_ElecHybrid::buildVehicleDevices(), MSDevice_Example::buildVehicleDevices(), ROEdge::cacheParamRestrictions(), SUMOVTypeParameter::cacheParamRestrictions(), MSVehicleType::check(), MSRailSignal::constraintsAllow(), GUINet::createTLWrapper(), GNEEdge::drawEdgeName(), GNEConnection::drawEdgeValues(), GNEGenericData::drawFilteredAttribute(), GUIEdge::drawGL(), EnergyParams::EnergyParams(), MSDevice_SSM::filterByConflictType(), LIBSUMO_NAMESPACE::TrafficLight::findConstraintsDeadLocks(), LIBSUMO_NAMESPACE::Simulation::findIntermodalRoute(), GUIVehicle::getColorValue(), GNEEdgeData::getColorValue(), GNEEdgeRelData::getColorValue(), GNETAZRelData::getColorValue(), GNELane::getColorValue(), GUIEdge::getColorValue(), GUILane::getColorValue(), MSDevice_SSM::getDetectionRange(), MSDevice_SSM::getExtraTime(), LIBSUMO_NAMESPACE::TrafficLight::getFutureTripIds(), MSTLLogicControl::WAUTSwitchProcedure::getGSPTime(), RORoutable::getMaxSpeed(), MSDevice_SSM::getMDRAC_PRT(), MSDevice_SSM::getMeasuresAndThresholds(), MSSOTLRequestPolicy::getMinDecisionalPhaseDuration(), GUIBaseVehicle::getOptionalName(), GUITrafficLightLogicWrapper::getOptionalName(), MSDevice_SSM::getOutputFilename(), MSSimpleTrafficLightLogic::getParameter(), NEMALogic::getParameter(), LIBSUMO_NAMESPACE::Simulation::getParameter(), MSBaseVehicle::getPrefixedParameter(), GUIBaseVehicle::getScaleValue(), LIBSUMO_NAMESPACE::Vehicle::getStopParameter(), SUMOTrafficObject::getStringParam(), MSRailSignalConstraint::getVeh(), LIBSUMO_NAMESPACE::TrafficLight::getVehicleByTripId(), MSStoppingPlaceRerouter::getWeight(), MSRailSignal::hasInsertionConstraint(), MSRailSignalControl::haveDeadlock(), MSLink::ignoreFoe(), MSSOTLPhasePolicy::init(), MSStageDriving::init(), PushButtonLogic::init(), SigmoidLogic::init(), SUMOVTypeParameter::initRailVisualizationParameters(), NIImporter_OpenStreetMap::insertNodeChecking(), MSAbstractLaneChangeModel::laneChangeOutput(), NWWriter_OpenDrive::mapmatchRoadObjects(), Parameterised::mergeParameters(), MSSimpleTrafficLightLogic::MSSimpleTrafficLightLogic(), MSSOTLPolicy::MSSOTLPolicy(), MSSOTLPolicy5DFamilyStimulus::MSSOTLPolicy5DFamilyStimulus(), MSDevice_GLOSA::notifyEnter(), MSRailSignalConstraint_Predecessor::PassedTracker::notifyEnter(), GNEVType::overwriteVType(), NWWriter_OpenDrive::parseTrafficSign(), NBTrafficLightDefinition::railSignalUncontrolled(), MSDevice_Battery::readParameterValue(), MSDevice_SSM::requestsTrajectories(), MSDevice_Bluelight::resetVehicle(), GNEEdgeData::setColor(), GNEEdgeRelData::setColor(), NBTrafficLightLogicCont::setOpenDriveSignalParameters(), NBEdge::setOrigID(), MSVehicle::slowDownForSchedule(), NBEdgeCont::splitAt(), LIBSUMO_NAMESPACE::TrafficLight::swapParameters(), LIBSUMO_NAMESPACE::TrafficLight::updateConstraints(), MSDevice_SSM::useGeoCoords(), MSTLLogicControl::WAUTSwitchProcedure_Stretch::WAUTSwitchProcedure_Stretch(), MSDevice_SSM::writeLanesPositions(), NWWriter_DlrNavteq::writeLinksUnsplitted(), MSDevice_SSM::writePositions(), NWWriter_OpenDrive::writeRoadObjectPOI(), NWWriter_OpenDrive::writeRoadObjectPoly(), NWWriter_OpenDrive::writeRoadObjects(), and NWWriter_OpenDrive::writeSignals().
|
inherited |
Returns the inner key/value map.
Definition at line 145 of file Parameterised.cpp.
References Parameterised::myMap.
Referenced by NIImporter_SUMO::_loadNetwork(), NBNode::addCrossing(), NBEdge::addLane(), NBEdge::append(), LIBSUMO_NAMESPACE::TrafficLight::buildConstraint(), GUIParameterTableWindow::closeBuilding(), NLHandler::closeEdge(), NBTrafficLightDefinition::compute(), GNEGenericData::drawAttribute(), GNEGenericData::drawFilteredAttribute(), NLDetectorBuilder::endE3Detector(), GNEAccess::getACParametersMap(), GNECalibrator::getACParametersMap(), GNEDetector::getACParametersMap(), GNEMultiEntryExitDetector::getACParametersMap(), GNEOverheadWire::getACParametersMap(), GNEParkingSpace::getACParametersMap(), GNERerouter::getACParametersMap(), GNERouteProbe::getACParametersMap(), GNEStoppingPlace::getACParametersMap(), GNETAZ::getACParametersMap(), GNEVaporizer::getACParametersMap(), GNEVariableSpeedSign::getACParametersMap(), GNEDataInterval::getACParametersMap(), GNEDataSet::getACParametersMap(), GNEGenericData::getACParametersMap(), GNEContainer::getACParametersMap(), GNEPerson::getACParametersMap(), GNEPersonTrip::getACParametersMap(), GNERide::getACParametersMap(), GNERoute::getACParametersMap(), GNEStop::getACParametersMap(), GNEStopPlan::getACParametersMap(), GNETranship::getACParametersMap(), GNETransport::getACParametersMap(), GNEVehicle::getACParametersMap(), GNEVType::getACParametersMap(), GNEWalk::getACParametersMap(), GNEConnection::getACParametersMap(), GNECrossing::getACParametersMap(), GNEEdge::getACParametersMap(), GNEEdgeType::getACParametersMap(), GNEJunction::getACParametersMap(), GNELane::getACParametersMap(), GNELaneType::getACParametersMap(), GNEPOI::getACParametersMap(), GNEPoly::getACParametersMap(), MSRailSignalConstraint_Predecessor::getDescription(), NWWriter_OpenDrive::getDividerType(), GUILane::getParameterWindow(), GNESingleParametersDialog::GNESingleParametersDialog(), MSRailCrossing::init(), MSActuatedTrafficLightLogic::init(), MSDevice_Taxi::initDispatch(), MSPModel_JuPedSim::initialize(), MSBaseVehicle::initTransientModelParams(), NIImporter_OpenStreetMap::insertEdge(), NIImporter_OpenStreetMap::insertNodeChecking(), GNEEdgeData::isGenericDataVisible(), GNEEdgeRelData::isGenericDataVisible(), GNETAZRelData::isGenericDataVisible(), GNEGenericData::isVisibleInspectDeleteSelect(), NBEdge::NBEdge(), NBLoadedSUMOTLDef::NBLoadedSUMOTLDef(), NBTrafficLightLogic::NBTrafficLightLogic(), GUIParameterTableWindow::numParams(), GNESingleParametersDialog::onCmdReset(), GNEVType::overwriteVType(), TraCIServerAPI_TrafficLight::processGet(), Parameterised::setParameters(), LIBSUMO_NAMESPACE::TrafficLight::swapConstraints(), GNEEdgeData::writeGenericData(), GNEEdgeRelData::writeGenericData(), and GNETAZRelData::writeGenericData().
|
inherited |
Returns the inner key/value map in string format "key1=value1|key2=value2|...|keyN=valueN".
Definition at line 151 of file Parameterised.cpp.
References Parameterised::myMap.
Referenced by GNEAccess::getAttribute(), GNEBusStop::getAttribute(), GNECalibrator::getAttribute(), GNECalibratorFlow::getAttribute(), GNEChargingStation::getAttribute(), GNEContainerStop::getAttribute(), GNEMultiEntryExitDetector::getAttribute(), GNEOverheadWire::getAttribute(), GNEParkingArea::getAttribute(), GNEParkingSpace::getAttribute(), GNERerouter::getAttribute(), GNERouteProbe::getAttribute(), GNETAZ::getAttribute(), GNETAZSourceSink::getAttribute(), GNETractionSubstation::getAttribute(), GNEVaporizer::getAttribute(), GNEVariableSpeedSign::getAttribute(), GNEEdgeData::getAttribute(), GNEEdgeRelData::getAttribute(), GNETAZRelData::getAttribute(), GNEContainer::getAttribute(), GNEPerson::getAttribute(), GNERoute::getAttribute(), GNEStop::getAttribute(), GNEVehicle::getAttribute(), GNEVType::getAttribute(), GNEConnection::getAttribute(), GNEEdge::getAttribute(), GNEEdgeType::getAttribute(), GNEJunction::getAttribute(), GNELane::getAttribute(), GNELaneType::getAttribute(), GNEPOI::getAttribute(), GNEPoly::getAttribute(), and GNEDetector::getDetectorAttribute().
std::vector< std::string > SUMOVehicleParameter::Stop::getStoppingPlaceIDs | ( | ) | const |
return list of stopping place ids
Definition at line 325 of file SUMOVehicleParameter.cpp.
std::vector< std::string > SUMOVehicleParameter::Stop::getTriggers | ( | ) | const |
write trigger attribute
Definition at line 757 of file SUMOVehicleParameter.cpp.
References SUMO_ATTR_JOIN, SUMO_TAG_CONTAINER, SUMO_TAG_PERSON, and toString().
Referenced by LIBSUMO_NAMESPACE::Vehicle::getStopParameter(), LIBSUMO_NAMESPACE::Vehicle::setStopParameter(), and write().
|
inherited |
Returns whether the parameter is set.
[in] | key | The key to ask for |
Definition at line 84 of file Parameterised.cpp.
References Parameterised::myMap.
Referenced by MSStageWalking::activateEntryReminders(), NBEdge::append(), MSVehicleType::build(), GUIInductLoop::buildDetectorGUIRepresentation(), MSDevice_ElecHybrid::buildVehicleDevices(), MSDevice_Example::buildVehicleDevices(), GUINet::createTLWrapper(), EnergyParams::EnergyParams(), MSDevice_SSM::filterByConflictType(), NWWriter_DlrNavteq::getBrunnelType(), GNEEdgeData::getColorValue(), GNEEdgeRelData::getColorValue(), GNETAZRelData::getColorValue(), GNELane::getColorValue(), GUILane::getColorValue(), MSDevice_SSM::getDetectionRange(), MSDevice_SSM::getExtraTime(), MSDevice_SSM::getMDRAC_PRT(), MSDevice_SSM::getMeasuresAndThresholds(), MSDevice_SSM::getOutputFilename(), LIBSUMO_NAMESPACE::Simulation::getParameter(), MSStoppingPlaceRerouter::getWeight(), MSStageDriving::init(), SUMOVTypeParameter::initRailVisualizationParameters(), MSEdge::insertVehicle(), NIImporter_OpenStreetMap::load(), NWWriter_OpenDrive::mapmatchRoadObjects(), Parameterised::mergeParameters(), MSActuatedTrafficLightLogic::MSActuatedTrafficLightLogic(), MSSimpleTrafficLightLogic::MSSimpleTrafficLightLogic(), GNEVType::overwriteVType(), NWWriter_OpenDrive::parseTrafficSign(), NBTrafficLightDefinition::railSignalUncontrolled(), MSDevice_Battery::readParameterValue(), MSDevice_SSM::requestsTrajectories(), NBTrafficLightLogicCont::setOpenDriveSignalParameters(), MSVehicle::slowDownForSchedule(), MSDevice_SSM::useGeoCoords(), MSTLLogicControl::WAUTSwitchProcedure_Stretch::WAUTSwitchProcedure_Stretch(), MSDevice_SSM::writeLanesPositions(), MSDevice_SSM::writePositions(), NWWriter_OpenDrive::writeRoadObjectPoly(), NWWriter_OpenDrive::writeRoadObjects(), and NWWriter_OpenDrive::writeSignals().
|
staticprivateinherited |
check if given string can be parsed to a parameter of type "key=value"
Definition at line 254 of file Parameterised.cpp.
References StringTokenizer::getVector(), and SUMOXMLDefinitions::isValidParameterKey().
Referenced by Parameterised::areAttributesValid(), and Parameterised::areParametersValid().
|
inherited |
Adds or appends all given parameters from the map.
[in] | mapArg | The keys/values to insert |
Definition at line 65 of file Parameterised.cpp.
References Parameterised::getParameter(), Parameterised::hasParameter(), and Parameterised::setParameter().
Referenced by NBEdge::append().
|
virtualinherited |
Sets a parameter.
[in] | key | The parameter's name |
[in] | value | The parameter's value |
Reimplemented in MSRailCrossing, MSActuatedTrafficLightLogic, MSRailSignal, MSSimpleTrafficLightLogic, and NEMALogic.
Definition at line 45 of file Parameterised.cpp.
References Parameterised::myMap.
Referenced by NBRailwayTopologyAnalyzer::addBidiEdge(), NLHandler::addDistrict(), RONetHandler::addParam(), ShapeHandler::addPOI(), NBOwnTLDef::buildNemaPhases(), MSParkingArea::enter(), NIImporter_MATSim::EdgesHandler::insertEdge(), NIImporter_OpenStreetMap::insertEdge(), NIImporter_OpenStreetMap::insertNodeChecking(), MSLane::isInsertionSuccess(), NBNodeCont::joinNodeCluster(), NBEdge::Lane::Lane(), NWWriter_OpenDrive::mapmatchRoadObjects(), Parameterised::mergeParameters(), MSStateHandler::myStartElement(), NIXMLConnectionsHandler::myStartElement(), NIXMLNodesHandler::myStartElement(), NIXMLTrafficLightsHandler::myStartElement(), ShapeHandler::myStartElement(), MSDevice_Bluelight::notifyMove(), GNESingleParametersDialog::onCmdAccept(), NBRailwayTopologyAnalyzer::reverseEdges(), GNEVType::setAttribute(), NBEdge::setJunctionPriority(), NIImporter_OpenDrive::setLaneAttributes(), MSRailCrossing::setParameter(), MSActuatedTrafficLightLogic::setParameter(), MSRailSignal::setParameter(), MSSimpleTrafficLightLogic::setParameter(), NEMALogic::setParameter(), LIBSUMO_NAMESPACE::Simulation::setParameter(), Parameterised::setParametersStr(), LIBSUMO_NAMESPACE::Vehicle::setStopParameter(), LIBSUMO_NAMESPACE::TrafficLight::swapParameters(), Parameterised::updateParameters(), NWWriter_OpenDrive::writeNetwork(), and NIImporter_OpenDrive::writeRoadObjects().
|
inherited |
set the inner key/value map in map<string, string> format
Definition at line 167 of file Parameterised.cpp.
References Parameterised::getParametersMap(), and Parameterised::myMap.
Referenced by MSStageDriving::clone(), MSStageTranship::clone(), MSStageTrip::clone(), MSStageWaiting::clone(), MSStageWalking::clone(), and MSStageTrip::reroute().
|
inherited |
set the inner key/value map in string format "key1=value1|key2=value2|...|keyN=valueN"
[in] | paramsString | A serialized key-value map |
[in] | kvsep | The separater between key and value |
[in] | sep | The separater between map entries |
Definition at line 173 of file Parameterised.cpp.
References StringTokenizer::getVector(), Parameterised::myMap, and Parameterised::setParameter().
Referenced by MSDevice_Taxi::initDispatch(), GNEAccess::setAttribute(), GNEBusStop::setAttribute(), GNECalibrator::setAttribute(), GNECalibratorFlow::setAttribute(), GNEChargingStation::setAttribute(), GNEContainerStop::setAttribute(), GNEMultiEntryExitDetector::setAttribute(), GNEOverheadWire::setAttribute(), GNEParkingArea::setAttribute(), GNEParkingSpace::setAttribute(), GNERerouter::setAttribute(), GNERouteProbe::setAttribute(), GNETAZ::setAttribute(), GNETAZSourceSink::setAttribute(), GNETractionSubstation::setAttribute(), GNEVaporizer::setAttribute(), GNEVariableSpeedSign::setAttribute(), GNEEdgeData::setAttribute(), GNEEdgeRelData::setAttribute(), GNETAZRelData::setAttribute(), GNEContainer::setAttribute(), GNEPerson::setAttribute(), GNERoute::setAttribute(), GNEStop::setAttribute(), GNEVehicle::setAttribute(), GNEVType::setAttribute(), GNEConnection::setAttribute(), GNEEdge::setAttribute(), GNEEdgeType::setAttribute(), GNEJunction::setAttribute(), GNELane::setAttribute(), GNELaneType::setAttribute(), GNEPOI::setAttribute(), GNEPoly::setAttribute(), and GNEDetector::setDetectorAttribute().
|
inherited |
Removes a parameter.
[in] | key | The parameter's name |
Definition at line 51 of file Parameterised.cpp.
References Parameterised::myMap.
Referenced by NIImporter_OpenStreetMap::insertEdge(), MSLane::isInsertionSuccess(), NIImporter_OpenStreetMap::load(), GNEVType::setAttribute(), and LIBSUMO_NAMESPACE::TrafficLight::swapParameters().
|
inherited |
Adds or updates all given parameters from the map.
[in] | mapArg | The keys/values to insert |
Definition at line 57 of file Parameterised.cpp.
References Parameterised::setParameter().
Referenced by NIImporter_SUMO::_loadNetwork(), NBNode::addCrossing(), PCLoaderOSM::addPOI(), PCLoaderOSM::addPolygon(), NLHandler::closeEdge(), NLJunctionControlBuilder::closeJunction(), NLJunctionControlBuilder::closeTrafficLightLogic(), NBTrafficLightDefinition::compute(), NLDetectorBuilder::endE3Detector(), NIImporter_OpenStreetMap::insertEdge(), NIImporter_OpenStreetMap::insertNodeChecking(), NBEdge::NBEdge(), NBLoadedSUMOTLDef::NBLoadedSUMOTLDef(), NBTrafficLightLogic::NBTrafficLightLogic(), and LIBSUMO_NAMESPACE::TrafficLight::swapConstraints().
void SUMOVehicleParameter::Stop::write | ( | OutputDevice & | dev, |
const bool | close = true , |
||
const bool | writeTagAndParents = true |
||
) | const |
Writes the stop as XML.
[in,out] | dev | The device to write into |
IOError | not yet implemented |
Definition at line 214 of file SUMOVehicleParameter.cpp.
References actType, arrival, awaitedContainers, awaitedPersons, busstop, chargingStation, OutputDevice::closeTag(), collision, containerstop, duration, edge, ended, endPos, extension, friendlyPos, getTriggers(), index, INVALID_DOUBLE, join, jump, lane, line, onDemand, OutputDevice::openTag(), parametersSet, parking, parkingarea, permitted, posLat, speed, split, started, startPos, STOP_ARRIVAL_SET, STOP_DURATION_SET, STOP_END_SET, STOP_ENDED_SET, STOP_EXPECTED_CONTAINERS_SET, STOP_EXPECTED_SET, STOP_EXTENSION_SET, STOP_JOIN_SET, STOP_JUMP_SET, STOP_LINE_SET, STOP_ONDEMAND_SET, STOP_PARKING_SET, STOP_PERMITTED_SET, STOP_POSLAT_SET, STOP_SPEED_SET, STOP_SPLIT_SET, STOP_START_SET, STOP_STARTED_SET, STOP_TRIGGER_SET, STOP_TRIP_ID_SET, STOP_UNTIL_SET, SUMO_ATTR_ACTTYPE, SUMO_ATTR_ARRIVAL, SUMO_ATTR_BUS_STOP, SUMO_ATTR_CHARGING_STATION, SUMO_ATTR_COLLISION, SUMO_ATTR_CONTAINER_STOP, SUMO_ATTR_DURATION, SUMO_ATTR_EDGE, SUMO_ATTR_ENDED, SUMO_ATTR_ENDPOS, SUMO_ATTR_EXPECTED, SUMO_ATTR_EXPECTED_CONTAINERS, SUMO_ATTR_EXTENSION, SUMO_ATTR_FRIENDLY_POS, SUMO_ATTR_INDEX, SUMO_ATTR_JOIN, SUMO_ATTR_JUMP, SUMO_ATTR_LANE, SUMO_ATTR_LINE, SUMO_ATTR_ONDEMAND, SUMO_ATTR_PARKING, SUMO_ATTR_PARKING_AREA, SUMO_ATTR_PERMITTED, SUMO_ATTR_POSITION_LAT, SUMO_ATTR_SPEED, SUMO_ATTR_SPLIT, SUMO_ATTR_STARTED, SUMO_ATTR_STARTPOS, SUMO_ATTR_TRIGGERED, SUMO_ATTR_TRIP_ID, SUMO_ATTR_UNTIL, SUMO_TAG_STOP, time2string(), tripId, until, OutputDevice::writeAttr(), and Parameterised::writeParams().
Referenced by MSDevice_Vehroutes::notifyStopEnded(), MSStop::write(), and GNEStop::writeDemandElement().
|
inherited |
write Params in the given outputdevice
Definition at line 188 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 MSStageWaiting::routeOutput(), MSTransportable::routeOutput(), ROPerson::saveAsXML(), ROVehicle::saveAsXML(), MEVehicle::saveState(), MSVehicle::saveState(), MSStop::write(), SUMOVTypeParameter::write(), write(), NBPTStop::write(), MSRailSignalConstraint_Predecessor::write(), GNEBusStop::writeAdditional(), GNECalibrator::writeAdditional(), GNECalibratorFlow::writeAdditional(), GNEChargingStation::writeAdditional(), GNEContainerStop::writeAdditional(), GNEEntryExitDetector::writeAdditional(), GNEInductionLoopDetector::writeAdditional(), GNEInstantInductionLoopDetector::writeAdditional(), GNELaneAreaDetector::writeAdditional(), GNEMultiEntryExitDetector::writeAdditional(), GNEOverheadWire::writeAdditional(), GNEParkingArea::writeAdditional(), GNEParkingSpace::writeAdditional(), GNERerouter::writeAdditional(), GNERouteProbe::writeAdditional(), GNETAZ::writeAdditional(), GNETractionSubstation::writeAdditional(), GNEVaporizer::writeAdditional(), GNEVariableSpeedSign::writeAdditional(), NWWriter_SUMO::writeConnection(), GNEContainer::writeDemandElement(), GNEPerson::writeDemandElement(), GNERoute::writeDemandElement(), GNEVehicle::writeDemandElement(), NWWriter_SUMO::writeEdge(), NWWriter_XML::writeEdgesAndConnections(), NWWriter_SUMO::writeJunction(), NWWriter_SUMO::writeLane(), NWWriter_XML::writeNodes(), MSDevice_Vehroutes::writeOutput(), NWWriter_SUMO::writeTrafficLight(), SUMOPolygon::writeXML(), and PointOfInterest::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 467 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 434 of file SUMOVehicleParameter.h.
Referenced by GNERouteHandler::buildStop(), libsumo::Helper::buildStopData(), GNEStop::getAttribute(), MSStop::getDescription(), LIBSUMO_NAMESPACE::Vehicle::getStopParameter(), GNEStopFrame::getStopParameter(), RONet::getStoppingPlaceElement(), MSIdling_Stop::idle(), MSIdling_TaxiStand::idle(), SUMORouteHandler::parseStop(), RouteHandler::parseStopParameters(), RONetHandler::parseStoppingPlace(), MSDevice_Taxi::prepareStop(), GNEStop::setAttribute(), LIBSUMO_NAMESPACE::Vehicle::setStopParameter(), and write().
SUMOTime SUMOVehicleParameter::Stop::arrival = -1 |
The (expected) time at which the vehicle reaches the stop.
Definition at line 395 of file SUMOVehicleParameter.h.
Referenced by MSBaseVehicle::addStop(), libsumo::Helper::buildStopData(), MSStop::getArrival(), MSVehicle::getStopArrivalDelay(), LIBSUMO_NAMESPACE::Vehicle::getStopParameter(), SUMORouteHandler::parseStop(), RouteHandler::parseStopParameters(), LIBSUMO_NAMESPACE::Vehicle::setStopParameter(), MSVehicle::slowDownForSchedule(), MSStopOut::stopEnded(), and write().
std::set<std::string> SUMOVehicleParameter::Stop::awaitedContainers |
IDs of containers the vehicle has to wait for until departing.
Definition at line 428 of file SUMOVehicleParameter.h.
Referenced by GNEStop::getAttribute(), LIBSUMO_NAMESPACE::Vehicle::getStopParameter(), GNEStopFrame::getStopParameter(), MSStop::initPars(), SUMORouteHandler::parseStop(), RouteHandler::parseStopParameters(), GNEStop::setAttribute(), LIBSUMO_NAMESPACE::Vehicle::setStopParameter(), and write().
std::set<std::string> SUMOVehicleParameter::Stop::awaitedPersons |
IDs of persons the vehicle has to wait for until departing.
Definition at line 422 of file SUMOVehicleParameter.h.
Referenced by GNEStop::getAttribute(), LIBSUMO_NAMESPACE::Vehicle::getStopParameter(), GNEStopFrame::getStopParameter(), MSStop::initPars(), SUMORouteHandler::parseStop(), RouteHandler::parseStopParameters(), GNEStop::setAttribute(), LIBSUMO_NAMESPACE::Vehicle::setStopParameter(), and write().
bool SUMOVehicleParameter::Stop::breakDown = false |
Whether this stop was triggered by a car failure / mechanical problem / lack of energy.
Definition at line 482 of file SUMOVehicleParameter.h.
Referenced by MSDevice_StationFinder::notifyMove(), and MSDevice_StationFinder::teleportToChargingStation().
std::string SUMOVehicleParameter::Stop::busstop |
(Optional) bus stop if one is assigned to the stop
Definition at line 374 of file SUMOVehicleParameter.h.
Referenced by GNERouteHandler::buildStop(), libsumo::Helper::buildStopData(), libsumo::Helper::buildStopParameters(), ROPerson::Stop::getStopDest(), LIBSUMO_NAMESPACE::Vehicle::getStopParameter(), GNEStopFrame::getStopParameter(), RONet::getStoppingPlaceName(), MSStop::initPars(), SUMORouteHandler::parseStop(), RouteHandler::parseStopParameters(), RONetHandler::parseStoppingPlace(), GUIVehicle::rerouteDRTStop(), RORouteHandler::retrieveStoppingPlace(), MSRouteHandler::retrieveStoppingPlace(), MSStopOut::stopEnded(), and write().
std::string SUMOVehicleParameter::Stop::chargingStation |
(Optional) charging station if one is assigned to the stop
Definition at line 383 of file SUMOVehicleParameter.h.
Referenced by GNERouteHandler::buildStop(), libsumo::Helper::buildStopData(), libsumo::Helper::buildStopParameters(), LIBSUMO_NAMESPACE::Vehicle::getStopParameter(), GNEStopFrame::getStopParameter(), MSStop::initPars(), SUMORouteHandler::parseStop(), RouteHandler::parseStopParameters(), MSDevice_StationFinder::rerouteToChargingStation(), RORouteHandler::retrieveStoppingPlace(), MSRouteHandler::retrieveStoppingPlace(), MSStopOut::stopEnded(), MSDevice_StationFinder::teleportToChargingStation(), and write().
bool SUMOVehicleParameter::Stop::collision = false |
Whether this stop was triggered by a collision.
Definition at line 479 of file SUMOVehicleParameter.h.
Referenced by MSBaseVehicle::addStop(), MSLane::handleCollisionBetween(), MSLane::handleIntermodalCollisionBetween(), SUMORouteHandler::parseStop(), MSVehicle::resumeFromStopping(), and write().
std::string SUMOVehicleParameter::Stop::containerstop |
(Optional) container stop if one is assigned to the stop
Definition at line 377 of file SUMOVehicleParameter.h.
Referenced by GNERouteHandler::buildStop(), libsumo::Helper::buildStopData(), libsumo::Helper::buildStopParameters(), LIBSUMO_NAMESPACE::Vehicle::getStopParameter(), GNEStopFrame::getStopParameter(), MSStop::initPars(), SUMORouteHandler::parseStop(), RouteHandler::parseStopParameters(), RORouteHandler::retrieveStoppingPlace(), MSRouteHandler::retrieveStoppingPlace(), MSStopOut::stopEnded(), and write().
bool SUMOVehicleParameter::Stop::containerTriggered = false |
whether an arriving container lets the vehicle continue
Definition at line 413 of file SUMOVehicleParameter.h.
Referenced by MSBaseVehicle::addTraciStop(), libsumo::Helper::buildStopParameters(), GNEStop::getAttribute(), GNEStopFrame::getStopParameter(), MSIdling_Stop::idle(), MSIdling_TaxiStand::idle(), MSStop::initPars(), GNEStop::isAttributeEnabled(), SUMORouteHandler::parseStop(), RouteHandler::parseStopParameters(), SUMOVehicleParameter::parseStopTriggers(), GUIVehicle::rerouteDRTStop(), and GNEStop::setAttribute().
SUMOTime SUMOVehicleParameter::Stop::duration = -1 |
The stopping duration.
Definition at line 398 of file SUMOVehicleParameter.h.
Referenced by MSRouteHandler::addStop(), MSBaseVehicle::addTraciStop(), GNERouteHandler::buildStop(), libsumo::Helper::buildStopData(), libsumo::Helper::buildStopParameters(), GNEStop::getAttribute(), ROPerson::Stop::getDuration(), MSVehicle::getStopDelay(), LIBSUMO_NAMESPACE::Vehicle::getStopParameter(), GNEStopFrame::getStopParameter(), MSLane::handleCollisionBetween(), MSLane::handleIntermodalCollisionBetween(), MSStop::initPars(), MSDevice_Transportable::notifyMove(), MSDevice_StationFinder::notifyMove(), GUIBaseVehicle::GUIBaseVehiclePopupMenu::onCmdToggleStop(), SUMORouteHandler::parseStop(), RouteHandler::parseStopParameters(), MSBaseVehicle::replaceParkingArea(), GUIVehicle::rerouteDRTStop(), MSDevice_StationFinder::rerouteToChargingStation(), GNEStop::setAttribute(), LIBSUMO_NAMESPACE::Vehicle::setStopParameter(), MSDevice_StationFinder::teleportToChargingStation(), MSDevice_ToC::triggerMRM(), MSStop::write(), and write().
std::string SUMOVehicleParameter::Stop::edge |
The edge to stop at.
Definition at line 368 of file SUMOVehicleParameter.h.
Referenced by MSRouteHandler::addStop(), RORouteHandler::addStop(), ROVehicle::addStop(), MSBaseVehicle::addStop(), GNERouteHandler::buildStop(), libsumo::Helper::buildStopParameters(), LIBSUMO_NAMESPACE::Vehicle::getStopParameter(), GNEStopFrame::getStopParameter(), MSIdling_Stop::idle(), MSBaseVehicle::insertJump(), MSBaseVehicle::insertStop(), MSBaseVehicle::interpretOppositeStop(), MSDevice_StationFinder::notifyMove(), RouteHandler::parseStopParameters(), MSBaseVehicle::replaceStop(), MSDevice_StationFinder::rerouteToChargingStation(), LIBSUMO_NAMESPACE::Vehicle::setStopParameter(), MSDevice_StationFinder::teleportToChargingStation(), and write().
|
mutable |
the time at which this stop was ended
Definition at line 464 of file SUMOVehicleParameter.h.
Referenced by MSBaseVehicle::addStop(), libsumo::Helper::buildStopData(), MSStop::getMinDuration(), LIBSUMO_NAMESPACE::Vehicle::getStopParameter(), MSStop::getUntil(), MSDevice_Vehroutes::notifyStopEnded(), SUMORouteHandler::parseStop(), RouteHandler::parseStopParameters(), MEVehicle::resumeFromStopping(), MSVehicle::resumeFromStopping(), LIBSUMO_NAMESPACE::Vehicle::setStopParameter(), MSStopOut::stopEnded(), and write().
double SUMOVehicleParameter::Stop::endPos = 0. |
The stopping position end.
Definition at line 392 of file SUMOVehicleParameter.h.
Referenced by RORouteHandler::addRide(), MSRouteHandler::addStop(), RORouteHandler::addStop(), ROVehicle::addStop(), MSBaseVehicle::addStop(), MSBaseVehicle::addTraciStop(), GNERouteHandler::buildStop(), libsumo::Helper::buildStopData(), libsumo::Helper::buildStopParameters(), MSDevice_Taxi::dispatchShared(), GNEStop::drawGeometryPoints(), MSVehicle::estimateTimeToNextStop(), GNEStop::getAttribute(), GNEStop::getAttributeDouble(), GNEStop::getAttributePosition(), GNEStop::getDemandElementProblem(), MSStop::getDescription(), ROPerson::Stop::getDestinationPos(), GNEStop::getEndGeometryPositionOverLane(), MSStop::getEndPos(), GNEStop::getMoveOperation(), GNEStop::getPositionInView(), MSStop::getReachedThreshold(), LIBSUMO_NAMESPACE::Vehicle::getStopParameter(), GNEStopFrame::getStopParameter(), MSEdge::getStopPosition(), ROEdge::getStopPosition(), MSLane::handleCollisionBetween(), MSVehicle::handleCollisionStop(), MSLane::handleIntermodalCollisionBetween(), MSIdling_Stop::idle(), MSIdling_TaxiStand::idle(), MSBaseVehicle::insertJump(), MSBaseVehicle::insertStop(), GNEStop::isDemandElementValid(), MSStop::isInRange(), MSLane::isInsertionSuccess(), MSBaseVehicle::isStoppedInRange(), GNEStop::isValid(), MSDevice_StationFinder::notifyMove(), GUIBaseVehicle::GUIBaseVehiclePopupMenu::onCmdToggleStop(), RONetHandler::parseAccess(), RouteHandler::parseStopParameters(), RONetHandler::parseStoppingPlace(), MSVehicle::planMoveInternal(), MSDevice_Taxi::prepareStop(), MSVehicle::processNextStop(), MEVehicle::processStop(), MSBaseVehicle::replaceParkingArea(), MSBaseVehicle::replaceStop(), MSBaseVehicle::reroute(), GUIVehicle::rerouteDRTStop(), MSDevice_StationFinder::rerouteToChargingStation(), GNEStop::setAttribute(), GNEStop::setMoveShape(), MSBaseVehicle::setSkips(), LIBSUMO_NAMESPACE::Vehicle::setStopParameter(), MSDevice_StationFinder::teleportToChargingStation(), MSDevice_ToC::triggerMRM(), write(), and GNEStop::writeDemandElement().
SUMOTime SUMOVehicleParameter::Stop::extension = -1 |
The maximum time extension for boarding / loading.
Definition at line 404 of file SUMOVehicleParameter.h.
Referenced by GNEStop::getAttribute(), LIBSUMO_NAMESPACE::Vehicle::getStopParameter(), GNEStopFrame::getStopParameter(), SUMORouteHandler::parseStop(), RouteHandler::parseStopParameters(), MSDevice_Taxi::prepareStop(), MSVehicle::processNextStop(), GNEStop::setAttribute(), LIBSUMO_NAMESPACE::Vehicle::setStopParameter(), and write().
bool SUMOVehicleParameter::Stop::friendlyPos = false |
enable or disable friendly position (used by netedit)
Definition at line 431 of file SUMOVehicleParameter.h.
Referenced by GNERouteHandler::buildStop(), GNEStop::getAttribute(), GNEStopFrame::getStopParameter(), GNEStop::isDemandElementValid(), GNEStop::isValid(), RouteHandler::parseStopParameters(), GNEStop::setAttribute(), and write().
int SUMOVehicleParameter::Stop::index = 0 |
at which position in the stops list
Definition at line 470 of file SUMOVehicleParameter.h.
Referenced by ROVehicle::addStop(), MSBaseVehicle::addStop(), libsumo::Helper::buildStopParameters(), GNEStopFrame::getStopParameter(), MSDevice_StationFinder::notifyMove(), SUMORouteHandler::parseStop(), RouteHandler::parseStopParameters(), MSDevice_Taxi::prepareStop(), GUIVehicle::rerouteDRTStop(), and write().
std::string SUMOVehicleParameter::Stop::join |
the id of the vehicle (train portion) to which this vehicle shall be joined
Definition at line 446 of file SUMOVehicleParameter.h.
Referenced by MSVehicleControl::abortWaiting(), libsumo::Helper::buildStopData(), MSDriveWay::conflictLaneOccupied(), GNEStop::getAttribute(), LIBSUMO_NAMESPACE::Vehicle::getStopParameter(), GNEStopFrame::getStopParameter(), MSDriveWay::hasJoin(), MSStop::initPars(), MSDevice_Transportable::notifyMove(), SUMORouteHandler::parseStop(), RouteHandler::parseStopParameters(), MSVehicle::processNextStop(), GNEStop::setAttribute(), LIBSUMO_NAMESPACE::Vehicle::setStopParameter(), and write().
bool SUMOVehicleParameter::Stop::joinTriggered = false |
whether an joined vehicle lets this vehicle continue
Definition at line 416 of file SUMOVehicleParameter.h.
Referenced by GNEStop::getAttribute(), GNEStopFrame::getStopParameter(), MSStop::initPars(), GNEStop::isAttributeEnabled(), SUMOVehicleParameter::parseStopTriggers(), and GNEStop::setAttribute().
SUMOTime SUMOVehicleParameter::Stop::jump = -1 |
transfer time if there shall be a jump from this stop to the next route edge
Definition at line 458 of file SUMOVehicleParameter.h.
Referenced by ROVehicle::addStop(), GNEStop::getAttribute(), GNEStopFrame::getStopParameter(), MSBaseVehicle::insertJump(), MSDevice_StationFinder::notifyMove(), SUMORouteHandler::parseStop(), RouteHandler::parseStopParameters(), GNEStop::setAttribute(), LIBSUMO_NAMESPACE::Vehicle::setStopParameter(), MSDevice_StationFinder::teleportToChargingStation(), and write().
std::string SUMOVehicleParameter::Stop::lane |
The lane to stop at.
Definition at line 371 of file SUMOVehicleParameter.h.
Referenced by RORouteHandler::addRide(), MSRouteHandler::addStop(), RORouteHandler::addStop(), MSBaseVehicle::addStop(), MSBaseVehicle::addTraciStop(), GNERouteHandler::buildStop(), libsumo::Helper::buildStopData(), libsumo::Helper::buildStopParameters(), LIBSUMO_NAMESPACE::Vehicle::getStopParameter(), GNEStopFrame::getStopParameter(), MSEdge::getStopPosition(), ROEdge::getStopPosition(), MSLane::handleCollisionBetween(), MSLane::handleIntermodalCollisionBetween(), MSIdling_Stop::idle(), MSIdling_TaxiStand::idle(), MSBaseVehicle::insertStop(), MSBaseVehicle::interpretOppositeStop(), MSDevice_StationFinder::notifyMove(), GUIBaseVehicle::GUIBaseVehiclePopupMenu::onCmdToggleStop(), RONetHandler::parseAccess(), RouteHandler::parseStopParameters(), RONetHandler::parseStoppingPlace(), MSDevice_Taxi::prepareStop(), MSBaseVehicle::replaceParkingArea(), MSBaseVehicle::replaceStop(), GUIVehicle::rerouteDRTStop(), MSDevice_StationFinder::rerouteToChargingStation(), MSDevice_StationFinder::teleportToChargingStation(), MSDevice_ToC::triggerMRM(), and write().
std::string SUMOVehicleParameter::Stop::line |
the new line id of the trip within a cyclical public transport route
Definition at line 440 of file SUMOVehicleParameter.h.
Referenced by libsumo::Helper::buildStopData(), GNEStop::getAttribute(), LIBSUMO_NAMESPACE::Vehicle::getStopParameter(), GNEStopFrame::getStopParameter(), SUMORouteHandler::parseStop(), RouteHandler::parseStopParameters(), MSVehicle::processNextStop(), GNEStop::setAttribute(), LIBSUMO_NAMESPACE::Vehicle::setStopParameter(), MSStopOut::stopEnded(), and write().
|
privateinherited |
The key->value map.
Definition at line 139 of file Parameterised.h.
Referenced by Parameterised::clearParameter(), Parameterised::getDouble(), Parameterised::getDoubles(), Parameterised::getParameter(), Parameterised::getParametersMap(), Parameterised::getParametersStr(), Parameterised::hasParameter(), Parameterised::setParameter(), Parameterised::setParameters(), Parameterised::setParametersStr(), Parameterised::unsetParameter(), and Parameterised::writeParams().
bool SUMOVehicleParameter::Stop::onDemand = false |
whether the stop may be skipped
Definition at line 455 of file SUMOVehicleParameter.h.
Referenced by GNEStop::getAttribute(), LIBSUMO_NAMESPACE::Vehicle::getStopParameter(), GNEStopFrame::getStopParameter(), SUMORouteHandler::parseStop(), RouteHandler::parseStopParameters(), MSVehicle::processNextStop(), GNEStop::setAttribute(), LIBSUMO_NAMESPACE::Vehicle::setStopParameter(), and write().
std::string SUMOVehicleParameter::Stop::overheadWireSegment |
(Optional) overhead line segment if one is assigned to the stop
Definition at line 386 of file SUMOVehicleParameter.h.
Referenced by libsumo::Helper::buildStopData(), libsumo::Helper::buildStopParameters(), MSStop::initPars(), SUMORouteHandler::parseStop(), RouteHandler::parseStopParameters(), RORouteHandler::retrieveStoppingPlace(), MSRouteHandler::retrieveStoppingPlace(), and MSStopOut::stopEnded().
int SUMOVehicleParameter::Stop::parametersSet = 0 |
Information for the output which parameter were set.
Definition at line 476 of file SUMOVehicleParameter.h.
Referenced by MSRouteHandler::addStop(), RORouteHandler::addStop(), GNERouteHandler::buildStop(), libsumo::Helper::buildStopParameters(), GNEStop::getAttribute(), MSStop::getEndPos(), GNEStopFrame::getStopParameter(), MSLane::handleCollisionBetween(), MSLane::handleIntermodalCollisionBetween(), MSBaseVehicle::insertJump(), GNEStop::isAttributeEnabled(), MSDevice_StationFinder::notifyMove(), MSDevice_Vehroutes::notifyStopEnded(), SUMORouteHandler::parseStop(), RouteHandler::parseStopParameters(), GUIVehicle::rerouteDRTStop(), MSDevice_StationFinder::rerouteToChargingStation(), GNEStop::setAttribute(), LIBSUMO_NAMESPACE::Vehicle::setStopParameter(), GNEStop::toggleAttribute(), MSStop::write(), and write().
ParkingType SUMOVehicleParameter::Stop::parking = ParkingType::ONROAD |
whether the vehicle is removed from the net while stopping
Definition at line 419 of file SUMOVehicleParameter.h.
Referenced by MSBaseVehicle::addTraciStop(), libsumo::Helper::buildStopParameters(), LIBSUMO_NAMESPACE::Vehicle::getStopParameter(), GNEStopFrame::getStopParameter(), MSIdling_Stop::idle(), MSIdling_TaxiStand::idle(), MSVehicle::leaveLane(), MSDevice_StationFinder::notifyMove(), SUMORouteHandler::parseStop(), RouteHandler::parseStopParameters(), MSDevice_Taxi::prepareStop(), MSVehicle::processNextStop(), GUIVehicle::rerouteDRTStop(), MSDevice_StationFinder::rerouteToChargingStation(), GNEStop::setAttribute(), LIBSUMO_NAMESPACE::Vehicle::setStopParameter(), MSStopOut::stopEnded(), MSDevice_StationFinder::teleportToChargingStation(), MSDevice_ToC::triggerMRM(), and write().
std::string SUMOVehicleParameter::Stop::parkingarea |
(Optional) parking area if one is assigned to the stop
Definition at line 380 of file SUMOVehicleParameter.h.
Referenced by GNERouteHandler::buildStop(), libsumo::Helper::buildStopData(), libsumo::Helper::buildStopParameters(), LIBSUMO_NAMESPACE::Vehicle::getStopParameter(), GNEStopFrame::getStopParameter(), MSIdling_TaxiStand::idle(), MSStop::initPars(), MSBaseVehicle::insertStop(), SUMORouteHandler::parseStop(), RouteHandler::parseStopParameters(), MSBaseVehicle::replaceParkingArea(), MSBaseVehicle::replaceStop(), MSDevice_StationFinder::rerouteToChargingStation(), RORouteHandler::retrieveStoppingPlace(), MSRouteHandler::retrieveStoppingPlace(), MSStopOut::stopEnded(), MSDevice_StationFinder::teleportToChargingStation(), MSDevice_ToC::triggerMRM(), and write().
std::set<std::string> SUMOVehicleParameter::Stop::permitted |
IDs of persons or containers that may board/load at this stop.
Definition at line 425 of file SUMOVehicleParameter.h.
Referenced by MSDevice_Taxi::cancelCurrentCustomers(), GNEStop::getAttribute(), LIBSUMO_NAMESPACE::Vehicle::getStopParameter(), GNEStopFrame::getStopParameter(), SUMORouteHandler::parseStop(), RouteHandler::parseStopParameters(), GNEStop::setAttribute(), LIBSUMO_NAMESPACE::Vehicle::setStopParameter(), and write().
double SUMOVehicleParameter::Stop::posLat = INVALID_DOUBLE |
the lateral offset when stopping
Definition at line 452 of file SUMOVehicleParameter.h.
Referenced by MSTrainHelper::computeCarriages(), GNEStop::getAttribute(), LIBSUMO_NAMESPACE::Vehicle::getStopParameter(), GNEStopFrame::getStopParameter(), SUMORouteHandler::parseStop(), RouteHandler::parseStopParameters(), MSVehicle::processNextStop(), MSVehicle::resumeFromStopping(), GNEStop::setAttribute(), LIBSUMO_NAMESPACE::Vehicle::setStopParameter(), and write().
|
mutable |
at which position within the route (only used for state saving)
Definition at line 473 of file SUMOVehicleParameter.h.
double SUMOVehicleParameter::Stop::speed = 0. |
the speed at which this stop counts as reached (waypoint mode)
Definition at line 449 of file SUMOVehicleParameter.h.
Referenced by GNERouteHandler::buildStop(), libsumo::Helper::buildStopData(), GNEStop::getAttribute(), MSStop::getSpeed(), LIBSUMO_NAMESPACE::Vehicle::getStopParameter(), GNEStopFrame::getStopParameter(), MSBaseVehicle::insertJump(), MSLane::isInsertionSuccess(), SUMORouteHandler::parseStop(), RouteHandler::parseStopParameters(), GNEStop::setAttribute(), LIBSUMO_NAMESPACE::Vehicle::setStopParameter(), and write().
std::string SUMOVehicleParameter::Stop::split |
the id of the vehicle (train portion) that splits of upon reaching this stop
Definition at line 443 of file SUMOVehicleParameter.h.
Referenced by libsumo::Helper::buildStopData(), GNEStop::getAttribute(), LIBSUMO_NAMESPACE::Vehicle::getStopParameter(), GNEStopFrame::getStopParameter(), MSLane::insertVehicle(), SUMORouteHandler::parseStop(), RouteHandler::parseStopParameters(), MSVehicle::processNextStop(), GNEStop::setAttribute(), LIBSUMO_NAMESPACE::Vehicle::setStopParameter(), MSStopOut::stopEnded(), and write().
|
mutable |
the time at which this stop was reached
Definition at line 461 of file SUMOVehicleParameter.h.
Referenced by libsumo::Helper::buildStopData(), MSStop::getArrival(), MSVehicle::getStopArrivalDelay(), LIBSUMO_NAMESPACE::Vehicle::getStopParameter(), MSDevice_Transportable::notifyMove(), MSDevice_Vehroutes::notifyStopEnded(), SUMORouteHandler::parseStop(), RouteHandler::parseStopParameters(), MSVehicle::processNextStop(), MSVehicle::resumeFromStopping(), LIBSUMO_NAMESPACE::Vehicle::setStopParameter(), MSVehicle::slowDownForSchedule(), MSStopOut::stopEnded(), MSStop::write(), and write().
double SUMOVehicleParameter::Stop::startPos = 0. |
The stopping position start.
Definition at line 389 of file SUMOVehicleParameter.h.
Referenced by MSRouteHandler::addStop(), RORouteHandler::addStop(), MSBaseVehicle::addStop(), libsumo::Helper::buildStopData(), libsumo::Helper::buildStopParameters(), GNEStop::drawGeometryPoints(), GNEStop::getAttribute(), GNEStop::getAttributeDouble(), GNEStop::getDemandElementProblem(), ROPerson::Stop::getDestinationPos(), GNEStop::getMoveOperation(), GNEStop::getPositionInView(), MSStop::getReachedThreshold(), GNEStop::getStartGeometryPositionOverLane(), LIBSUMO_NAMESPACE::Vehicle::getStopParameter(), GNEStopFrame::getStopParameter(), MSEdge::getStopPosition(), ROEdge::getStopPosition(), MSLane::handleCollisionBetween(), MSLane::handleIntermodalCollisionBetween(), MSIdling_Stop::idle(), MSIdling_TaxiStand::idle(), GNEStop::isDemandElementValid(), MSStop::isInRange(), MSLane::isInsertionSuccess(), MSBaseVehicle::isStoppedInRange(), GNEStop::isValid(), MSDevice_StationFinder::notifyMove(), GUIBaseVehicle::GUIBaseVehiclePopupMenu::onCmdToggleStop(), RONetHandler::parseAccess(), RouteHandler::parseStopParameters(), RONetHandler::parseStoppingPlace(), MSVehicle::planMoveInternal(), MSDevice_Taxi::prepareStop(), MSVehicle::processNextStop(), MSBaseVehicle::replaceParkingArea(), GUIVehicle::rerouteDRTStop(), MSDevice_StationFinder::rerouteToChargingStation(), LIBSUMO_NAMESPACE::Vehicle::resume(), GNEStop::setAttribute(), GNEStop::setMoveShape(), LIBSUMO_NAMESPACE::Vehicle::setStopParameter(), MSDevice_StationFinder::teleportToChargingStation(), MSDevice_ToC::triggerMRM(), MSVehicle::updateBestLanes(), write(), and GNEStop::writeDemandElement().
bool SUMOVehicleParameter::Stop::triggered = false |
whether an arriving person lets the vehicle continue
Definition at line 410 of file SUMOVehicleParameter.h.
Referenced by MSBaseVehicle::addTraciStop(), libsumo::Helper::buildStopParameters(), GNEStop::getAttribute(), GNEStopFrame::getStopParameter(), MSIdling_Stop::idle(), MSIdling_TaxiStand::idle(), MSStop::initPars(), GNEStop::isAttributeEnabled(), SUMORouteHandler::parseStop(), RouteHandler::parseStopParameters(), SUMOVehicleParameter::parseStopTriggers(), GUIVehicle::rerouteDRTStop(), and GNEStop::setAttribute().
std::string SUMOVehicleParameter::Stop::tripId |
id of the trip within a cyclical public transport route
Definition at line 437 of file SUMOVehicleParameter.h.
Referenced by MSBaseVehicle::addStop(), libsumo::Helper::buildStopData(), GNEStop::getAttribute(), LIBSUMO_NAMESPACE::Vehicle::getStopParameter(), GNEStopFrame::getStopParameter(), SUMORouteHandler::parseStop(), RouteHandler::parseStopParameters(), MSVehicle::processNextStop(), GNEStop::setAttribute(), LIBSUMO_NAMESPACE::Vehicle::setStopParameter(), MSStopOut::stopEnded(), and write().
SUMOTime SUMOVehicleParameter::Stop::until = -1 |
The time at which the vehicle may continue its journey.
Definition at line 401 of file SUMOVehicleParameter.h.
Referenced by MSRouteHandler::addStop(), MSBaseVehicle::addStop(), MSBaseVehicle::addTraciStop(), GNERouteHandler::buildStop(), libsumo::Helper::buildStopData(), libsumo::Helper::buildStopParameters(), GNEStop::getAttribute(), MSStop::getMinDuration(), MSVehicle::getStopDelay(), LIBSUMO_NAMESPACE::Vehicle::getStopParameter(), GNEStopFrame::getStopParameter(), MSStop::getUntil(), MSDevice_StationFinder::notifyMove(), SUMORouteHandler::parseStop(), RouteHandler::parseStopParameters(), GUIVehicle::rerouteDRTStop(), MSDevice_StationFinder::rerouteToChargingStation(), GNEStop::setAttribute(), LIBSUMO_NAMESPACE::Vehicle::setStopParameter(), MSStopOut::stopEnded(), and write().
SUMOTime SUMOVehicleParameter::Stop::waitUntil = -1 |
The earliest pickup time for a taxi stop.
Definition at line 407 of file SUMOVehicleParameter.h.
Referenced by MSDevice_Taxi::prepareStop(), and MSVehicle::processNextStop().