![]() |
Eclipse SUMO - Simulation of Urban MObility
|
#include <string>
#include <set>
#include <limits>
#include <utils/common/StdDefs.h>
#include <utils/common/UtilExceptions.h>
#include <utils/common/StringBijection.h>
#include <utils/xml/SUMOXMLDefinitions.h>
Go to the source code of this file.
Typedefs | |
typedef int | SUMOEmissionClass |
typedef int | SVCPermissions |
bitset where each bit declares whether a certain SVC may use this edge/lane More... | |
Functions | |
bool | canParseVehicleClasses (const std::string &classes) |
Checks whether the given string contains only known vehicle classes. More... | |
bool | canParseVehicleShape (const std::string &shape) |
Checks whether the given string contains only known vehicle shape. More... | |
double | getDefaultVehicleLength (const SUMOVehicleClass vc=SVC_IGNORING) |
Returns the default vehicle length This put into a function so it can be used by NBVehicle. More... | |
int | getVehicleClassCompoundID (const std::string &name) |
Returns the OR'ed id of the compound class given by its name. More... | |
SUMOVehicleClass | getVehicleClassID (const std::string &name) |
Returns the class id of the abstract class given by its name. More... | |
const std::string & | getVehicleClassNames (SVCPermissions permissions, bool expand=false) |
Returns the ids of the given classes, divided using a ' '. More... | |
const std::vector< std::string > & | getVehicleClassNamesList (SVCPermissions permissions) |
Returns the ids of the given classes, divided using a ' '. More... | |
SUMOVehicleShape | getVehicleShapeID (const std::string &name) |
Returns the class id of the shape class given by its name. More... | |
std::string | getVehicleShapeName (SUMOVehicleShape id) |
Returns the class name of the shape class given by its id. More... | |
SVCPermissions | invertPermissions (SVCPermissions permissions) |
negate the given permissions and ensure that only relevant bits are set More... | |
bool | isForbidden (SVCPermissions permissions) |
Returns whether an edge with the given permission is a forbidden edge. More... | |
bool | isRailway (SVCPermissions permissions) |
Returns whether an edge with the given permission is a railway edge. More... | |
bool | isSidewalk (SVCPermissions permissions) |
Returns whether an edge with the given permission is a sidewalk. More... | |
bool | isWaterway (SVCPermissions permissions) |
Returns whether an edge with the given permission is a waterway edge. More... | |
bool | noVehicles (SVCPermissions permissions) |
Returns whether an edge with the given permission forbids vehicles. More... | |
std::map< SVCPermissions, double > | parseStopOffsets (const SUMOSAXAttributes &attrs, bool &ok) |
Extract stopOffsets from attributes of stopOffset element. More... | |
SVCPermissions | parseVehicleClasses (const std::string &allowedS) |
Parses the given definition of allowed vehicle classes into the given containers Deprecated classes go into a separate container. More... | |
SVCPermissions | parseVehicleClasses (const std::string &allowedS, const std::string &disallowedS, double networkVersion=NETWORK_VERSION) |
Encodes the given vector of allowed and disallowed classes into a bitset. More... | |
SVCPermissions | parseVehicleClasses (const std::vector< std::string > &allowedS) |
Encodes the given vector of allowed classs into a bitset Unlike the methods which parse a string it gives immediately a warning output on deprecated vehicle classes. More... | |
void | writePermissions (OutputDevice &into, SVCPermissions permissions) |
writes allowed disallowed attributes if needed; More... | |
void | writePreferences (OutputDevice &into, SVCPermissions preferred) |
writes allowed disallowed attributes if needed; More... | |
Variables | |
const std::string | DEFAULT_BIKETYPE_ID |
const double | DEFAULT_CONTAINER_TRANSHIP_SPEED |
const std::string | DEFAULT_CONTAINERTYPE_ID |
const double | DEFAULT_PEDESTRIAN_SPEED |
const std::string | DEFAULT_PEDTYPE_ID |
const std::string | DEFAULT_TAXITYPE_ID |
const double | DEFAULT_VEH_PROB |
const std::string | DEFAULT_VTYPE_ID |
std::set< std::string > | deprecatedVehicleClassesSeen |
const SUMOVehicleClass | SUMOVehicleClass_MAX |
StringBijection< SUMOVehicleClass > | SumoVehicleClassStrings |
StringBijection< SUMOVehicleShape > | SumoVehicleShapeStrings |
const SVCPermissions | SVC_UNSPECIFIED |
permissions not specified More... | |
const SVCPermissions | SVCAll |
all VClasses are allowed More... | |
Definition in file SUMOVehicleClass.h.
typedef int SUMOEmissionClass |
Definition at line 228 of file SUMOVehicleClass.h.
typedef int SVCPermissions |
bitset where each bit declares whether a certain SVC may use this edge/lane
Definition at line 215 of file SUMOVehicleClass.h.
enum SUMOVehicleClass |
Definition of vehicle classes to differ between different lane usage and authority types.
Bits:
From NavTeq:
Definition at line 130 of file SUMOVehicleClass.h.
enum SUMOVehicleShape |
Definition of vehicle classes to differ between different appearences.
Definition at line 47 of file SUMOVehicleClass.h.
bool canParseVehicleClasses | ( | const std::string & | classes | ) |
Checks whether the given string contains only known vehicle classes.
Definition at line 254 of file SUMOVehicleClass.cpp.
References StringTokenizer::hasNext(), StringTokenizer::next(), parseVehicleClassesCached, and SumoVehicleClassStrings.
Referenced by GNEAttributeCarrier::checkParsedAttribute(), GNEClosingLaneReroute::isValid(), GNEClosingReroute::isValid(), GNEVehicleType::isValid(), GNEConnection::isValid(), GNEEdge::isValid(), GNEEdgeType::isValid(), GNELane::isValid(), and GNELaneType::isValid().
bool canParseVehicleShape | ( | const std::string & | shape | ) |
Checks whether the given string contains only known vehicle shape.
Definition at line 355 of file SUMOVehicleClass.cpp.
References SumoVehicleShapeStrings.
Referenced by GNEVehicleType::isValid().
double getDefaultVehicleLength | ( | const SUMOVehicleClass | vc = SVC_IGNORING | ) |
Returns the default vehicle length This put into a function so it can be used by NBVehicle.
[in] | vc | the vehicle class |
Definition at line 422 of file SUMOVehicleClass.cpp.
References SVC_BICYCLE, SVC_BUS, SVC_COACH, SVC_DELIVERY, SVC_EMERGENCY, SVC_MOPED, SVC_MOTORCYCLE, SVC_PEDESTRIAN, SVC_RAIL, SVC_RAIL_ELECTRIC, SVC_RAIL_FAST, SVC_RAIL_URBAN, SVC_SHIP, SVC_TRAILER, SVC_TRAM, and SVC_TRUCK.
int getVehicleClassCompoundID | ( | const std::string & | name | ) |
Returns the OR'ed id of the compound class given by its name.
[in] | name | The name of the abstract vehicle class |
Definition at line 212 of file SUMOVehicleClass.cpp.
References SumoVehicleClassStrings, and SVC_IGNORING.
SUMOVehicleClass getVehicleClassID | ( | const std::string & | name | ) |
Returns the class id of the abstract class given by its name.
[in] | name | The name of the abstract vehicle class |
Definition at line 203 of file SUMOVehicleClass.cpp.
References SumoVehicleClassStrings.
Referenced by NIXMLPTHandler::addPTLine(), NIXMLTypesHandler::myStartElement(), NLHandler::myStartElement(), RONetHandler::myStartElement(), SUMOVehicleParserHelper::parseVehicleClass(), parseVehicleClasses(), and GNEVehicleType::setAttribute().
const std::string& getVehicleClassNames | ( | SVCPermissions | permissions, |
bool | expand = false |
||
) |
Returns the ids of the given classes, divided using a ' '.
[in] | the | permissions to encode |
[in] | expand | whether 'all' should be used |
Definition at line 171 of file SUMOVehicleClass.cpp.
References getVehicleClassNamesCached, getVehicleClassNamesList(), joinToString(), SVCAll, and vehicleClassNameAll.
Referenced by IntermodalRouter< E, L, N, V >::compute(), NBNode::computeLanes2Lanes(), GNEClosingLaneReroute::getAttribute(), GNEClosingReroute::getAttribute(), GNEConnection::getAttribute(), GNEEdge::getAttribute(), GNEEdgeType::getAttribute(), GNELane::getAttribute(), GNELaneType::getAttribute(), GNEEdge::getAttributeForSelection(), GNELane::getAttributeForSelection(), GUILane::getParameterWindow(), GNEAllowDisallow::onCmdAccept(), GNEAllowDisallow::onCmdReset(), GNENet::restrictLane(), NBTypeCont::writeEdgeTypes(), writePermissions(), writePreferences(), and NWWriter_SUMO::writeStopOffsets().
const std::vector<std::string>& getVehicleClassNamesList | ( | SVCPermissions | permissions | ) |
Returns the ids of the given classes, divided using a ' '.
[in] | the | permissions to encode |
Definition at line 184 of file SUMOVehicleClass.cpp.
References SumoVehicleClassStrings, SVC_IGNORING, and vehicleClassNamesListCached.
Referenced by LIBSUMO_NAMESPACE::Lane::getAllowed(), LIBSUMO_NAMESPACE::Lane::getDisallowed(), and getVehicleClassNames().
SUMOVehicleShape getVehicleShapeID | ( | const std::string & | name | ) |
Returns the class id of the shape class given by its name.
[in] | name | The name of the shape class |
Definition at line 345 of file SUMOVehicleClass.cpp.
References SumoVehicleShapeStrings.
Referenced by GNEVehicle::drawGL(), GNEVehicleType::setAttribute(), and GNEVehicleTypeDialog::VTypeAtributes::VShapeRow::setVShapeLabelImage().
std::string getVehicleShapeName | ( | SUMOVehicleShape | id | ) |
Returns the class name of the shape class given by its id.
[in] | id | The id of the shape class |
Definition at line 361 of file SUMOVehicleClass.cpp.
References SumoVehicleShapeStrings.
Referenced by GNEVehicleType::getAttribute(), GUIVehicle::getTypeParameterWindow(), GNEVehicleType::overwriteVType(), and SUMOVTypeParameter::write().
SVCPermissions invertPermissions | ( | SVCPermissions | permissions | ) |
negate the given permissions and ensure that only relevant bits are set
Definition at line 288 of file SUMOVehicleClass.cpp.
References SVCAll.
Referenced by GNEClosingLaneReroute::getAttribute(), GNEClosingReroute::getAttribute(), GNEConnection::getAttribute(), GNEEdge::getAttribute(), GNEEdgeType::getAttribute(), GNELane::getAttribute(), GNELaneType::getAttribute(), LIBSUMO_NAMESPACE::Lane::getDisallowed(), parseVehicleClasses(), GNEClosingLaneReroute::setAttribute(), GNEClosingReroute::setAttribute(), GNEConnection::setAttribute(), GNEEdgeType::setAttribute(), GNELane::setAttribute(), GNELaneType::setAttribute(), LIBSUMO_NAMESPACE::Lane::setDisallowed(), and LIBSUMO_NAMESPACE::Edge::setDisallowedVehicleClasses().
bool isForbidden | ( | SVCPermissions | permissions | ) |
Returns whether an edge with the given permission is a forbidden edge.
[in] | permissions | The permissions of the edge |
Definition at line 378 of file SUMOVehicleClass.cpp.
References SVCAll.
Referenced by NBOwnTLDef::allowUnrelated(), NBNode::ApproachingDivider::ApproachingDivider(), NBEdgeCont::checkGeometries(), NBEdge::divideOnEdges(), noVehicles(), NBOwnTLDef::patchStateForCrossings(), and NBEdge::recheckLanes().
bool isRailway | ( | SVCPermissions | permissions | ) |
Returns whether an edge with the given permission is a railway edge.
[in] | permissions | The permissions of the edge |
Definition at line 366 of file SUMOVehicleClass.cpp.
References SVC_PASSENGER, and SVC_RAIL_CLASSES.
Referenced by NBRailwayTopologyAnalyzer::addBidiEdgesForStraightConnectivity(), NIXMLPTHandler::addPTStop(), GNENet::addReversedEdge(), MSDevice_Tripinfo::addRideTransportData(), NBEdge::appendTurnaround(), NBRailwayTopologyAnalyzer::assignDirectionPriority(), NBEdge::buildInnerEdges(), NGEdge::buildNBEdge(), MSRailSignal::DriveWay::buildRoute(), MSRailSignal::DriveWay::checkCrossingFlanks(), NBEdgeCont::checkGeometries(), NBTrafficLightDefinition::collectAllLinks(), NBEdge::computeEdge2Edges(), GUILane::drawAsRailway(), GNELane::drawAsRailway(), NIImporter_OpenStreetMap::extendRailwayDistances(), GUILane::getColorValue(), GNELane::getColorValue(), NWWriter_OpenDrive::getLaneType(), NBNode::getLinkState(), NBRailwayTopologyAnalyzer::getRailNodes(), RouterProvider< E, L, N, V >::getVehicleRouter(), GUIJunctionWrapper::GUIJunctionWrapper(), NIImporter_OpenStreetMap::insertEdge(), NIImporter_OpenStreetMap::interpretTransportType(), NBEdge::isBidiRail(), MSLane::isInsertionSuccess(), NBEdge::isRailDeadEnd(), MSVehicle::planMoveInternal(), MSVehicle::processNextStop(), NBNodeCont::pruneClusterFringe(), NBEdge::recheckLanes(), NBEdge::shiftPositionAtNode(), MSVehicle::updateBestLanes(), and MSRailSignalControl::vehicleStateChanged().
bool isSidewalk | ( | SVCPermissions | permissions | ) |
Returns whether an edge with the given permission is a sidewalk.
[in] | permissions | The permissions of the edge |
Definition at line 384 of file SUMOVehicleClass.cpp.
References SVC_PEDESTRIAN, and SVCAll.
Referenced by NBEdgeCont::checkGeometries(), and noVehicles().
bool isWaterway | ( | SVCPermissions | permissions | ) |
Returns whether an edge with the given permission is a waterway edge.
[in] | permissions | The permissions of the edge |
Definition at line 372 of file SUMOVehicleClass.cpp.
References SVC_SHIP.
Referenced by NBNodeTypeComputer::computeNodeTypes(), GUILane::drawAsWaterway(), GNELane::drawAsWaterway(), GUILane::drawGL(), and GUIJunctionWrapper::GUIJunctionWrapper().
bool noVehicles | ( | SVCPermissions | permissions | ) |
Returns whether an edge with the given permission forbids vehicles.
[in] | permissions | The permissions of the edge |
Definition at line 390 of file SUMOVehicleClass.cpp.
References isForbidden(), and isSidewalk().
Referenced by MSActuatedTrafficLightLogic::init(), and MSDelayBasedTrafficLightLogic::init().
std::map<SVCPermissions, double> parseStopOffsets | ( | const SUMOSAXAttributes & | attrs, |
bool & | ok | ||
) |
Extract stopOffsets from attributes of stopOffset element.
Definition at line 395 of file SUMOVehicleClass.cpp.
References SUMOSAXAttributes::get(), SUMOSAXAttributes::getOpt(), SUMOSAXAttributes::hasAttribute(), parseVehicleClasses(), SUMO_ATTR_EXCEPTIONS, SUMO_ATTR_VALUE, SUMO_ATTR_VCLASSES, and WRITE_ERROR.
Referenced by NIImporter_SUMO::addStopOffsets(), NIXMLEdgesHandler::myStartElement(), and NLHandler::myStartElement().
SVCPermissions parseVehicleClasses | ( | const std::string & | allowedS | ) |
Parses the given definition of allowed vehicle classes into the given containers Deprecated classes go into a separate container.
[in] | classNames | Space separated class names |
[out] | container | The set of vehicle classes to fill throws ProcessError if parsing fails |
Definition at line 225 of file SUMOVehicleClass.cpp.
References deprecatedVehicleClassesSeen, getVehicleClassID(), StringTokenizer::hasNext(), StringTokenizer::next(), parseVehicleClassesCached, SumoVehicleClassStrings, SVCAll, and WRITE_ERROR.
Referenced by NIImporter_SUMO::_loadNetwork(), NIImporter_SUMO::addConnection(), NIXMLEdgesHandler::addEdge(), NIXMLEdgesHandler::addLane(), NLHandler::addLane(), TraCIServer::addSubscriptionFilter(), LIBSUMO_NAMESPACE::Vehicle::addSubscriptionFilterVClass(), NBEdgeCont::applyOptions(), NBNetBuilder::applyOptions(), MSTriggeredRerouter::myStartElement(), NIXMLTypesHandler::myStartElement(), GNEAdditionalHandler::parseAndBuildRerouterClosingLaneReroute(), GNEAdditionalHandler::parseAndBuildRerouterClosingReroute(), RONetHandler::parseLane(), NIXMLConnectionsHandler::parseLaneBound(), parseStopOffsets(), parseVehicleClasses(), LIBSUMO_NAMESPACE::Lane::setAllowed(), LIBSUMO_NAMESPACE::Edge::setAllowedVehicleClasses(), GNEClosingLaneReroute::setAttribute(), GNEClosingReroute::setAttribute(), GNEConnection::setAttribute(), GNEEdgeType::setAttribute(), GNELane::setAttribute(), GNELaneType::setAttribute(), LIBSUMO_NAMESPACE::Lane::setDisallowed(), LIBSUMO_NAMESPACE::Edge::setDisallowedVehicleClasses(), and GNEAdditional::writeAdditional().
SVCPermissions parseVehicleClasses | ( | const std::string & | allowedS, |
const std::string & | disallowedS, | ||
double | networkVersion = NETWORK_VERSION |
||
) |
Encodes the given vector of allowed and disallowed classes into a bitset.
[in] | allowedS | Definition which classes are allowed |
[in] | disallowedS | Definition which classes are not allowed |
Definition at line 273 of file SUMOVehicleClass.cpp.
References invertPermissions(), parseVehicleClasses(), SVC_RAIL_FAST, SVCAll, and WRITE_WARNING.
SVCPermissions parseVehicleClasses | ( | const std::vector< std::string > & | allowedS | ) |
Encodes the given vector of allowed classs into a bitset Unlike the methods which parse a string it gives immediately a warning output on deprecated vehicle classes.
[in] | classesS | The names vector to parse |
Definition at line 294 of file SUMOVehicleClass.cpp.
References getVehicleClassID(), SumoVehicleClassStrings, SVCAll, and WRITE_WARNING.
void writePermissions | ( | OutputDevice & | into, |
SVCPermissions | permissions | ||
) |
writes allowed disallowed attributes if needed;
Definition at line 312 of file SUMOVehicleClass.cpp.
References getVehicleClassNames(), SUMO_ATTR_ALLOW, SUMO_ATTR_DISALLOW, SUMOVehicleClass_MAX, SumoVehicleClassStrings, SVCAll, and OutputDevice::writeAttr().
Referenced by GNEAdditional::writeAdditional(), NWWriter_SUMO::writeConnection(), NWWriter_XML::writeEdgesAndConnections(), NBTypeCont::writeEdgeTypes(), and NWWriter_SUMO::writeLane().
void writePreferences | ( | OutputDevice & | into, |
SVCPermissions | preferred | ||
) |
writes allowed disallowed attributes if needed;
Definition at line 335 of file SUMOVehicleClass.cpp.
References getVehicleClassNames(), SUMO_ATTR_PREFER, SVCAll, and OutputDevice::writeAttr().
Referenced by NWWriter_XML::writeEdgesAndConnections(), and NWWriter_SUMO::writeLane().
|
extern |
Referenced by GNENetHelper::AttributeCarriers::addDefaultVTypes(), ROPerson::addTrip(), MSVehicleControl::checkVType(), GNERouteHandler::closeVType(), LIBSUMO_NAMESPACE::Simulation::findIntermodalRoute(), GNEVehicleType::getAttribute(), RONet::getVehicleTypeSecure(), GNEVehicleType::isAttributeEnabled(), MSVehicleControl::MSVehicleControl(), GNEVehicleTypeFrame::VehicleTypeEditor::onCmdResetVehicleType(), GNEFrameModuls::DemandElementSelector::refreshDemandElementSelector(), GNEVehicleTypeFrame::VehicleTypeSelector::refreshVehicleTypeSelector(), RONet::RONet(), MSVehicleControl::saveState(), MSStageTrip::setArrived(), and GNEVehicleTypeFrame::VehicleTypeSelector::VehicleTypeSelector().
|
extern |
Referenced by MSRouteHandler::myStartElement().
|
extern |
|
extern |
|
extern |
Referenced by GNENetHelper::AttributeCarriers::addDefaultVTypes(), MSVehicleControl::checkVType(), RONet::checkVType(), GNERouteHandler::closeVType(), LIBSUMO_NAMESPACE::Simulation::findIntermodalRoute(), GNEVehicleType::getAttribute(), RONet::getVehicleTypeSecure(), MSVehicleControl::getVType(), GNEPersonTypeFrame::GNEPersonTypeFrame(), GNEVehicleType::isAttributeEnabled(), MSVehicleControl::MSVehicleControl(), RORouteHandler::myStartElement(), GNEPersonTypeFrame::PersonTypeEditor::onCmdResetPersonType(), SUMOVehicleParserHelper::parseFlowAttributes(), SUMOVehicleParserHelper::parseVehicleAttributes(), GNEPersonTypeFrame::PersonTypeSelector::PersonTypeSelector(), GNEFrameModuls::DemandElementSelector::refreshDemandElementSelector(), RONet::RONet(), MSTransportable::routeOutput(), MSVehicleControl::saveState(), GNEFrameModuls::DemandElementSelector::showDemandElementSelector(), and GNEPerson::writeDemandElement().
|
extern |
|
extern |
|
extern |
Referenced by GNENetHelper::AttributeCarriers::addDefaultVTypes(), ROPerson::addTrip(), RONet::checkFlows(), MSVehicleControl::checkVType(), RONet::checkVType(), MSRouteHandler::closeVehicle(), RORouteHandler::closeVehicle(), GNERouteHandler::closeVType(), computeRoutes(), GNEAttributeCarrier::fillAdditionals(), GNEAttributeCarrier::fillCommonPersonAttributes(), GNEAttributeCarrier::fillVehicleElements(), LIBSUMO_NAMESPACE::Simulation::findIntermodalRoute(), LIBSUMO_NAMESPACE::Simulation::findRoute(), GNEVehicleType::getAttribute(), RONet::getVehicleTypeSecure(), MSVehicleControl::getVType(), GNEVehicleTypeFrame::GNEVehicleTypeFrame(), GNEVehicleType::isAttributeEnabled(), MSVehicleControl::MSVehicleControl(), MSCalibrator::myStartElement(), MSCalibrator::VehicleRemover::notifyEnter(), GNEVehicleTypeFrame::VehicleTypeEditor::onCmdResetVehicleType(), GNEVehicleType::overwriteVType(), GNEFrameModuls::DemandElementSelector::refreshDemandElementSelector(), GNEPersonTypeFrame::PersonTypeSelector::refreshPersonTypeSelector(), GNEVehicleTypeFrame::VehicleTypeSelector::refreshVehicleTypeSelector(), ROMAAssignments::ROMAAssignments(), RONet::RONet(), MSVehicleControl::saveState(), GNEFrameModuls::DemandElementSelector::showDemandElementSelector(), GNEVehicleTypeFrame::VehicleTypeSelector::VehicleTypeSelector(), GNEVehicle::writeDemandElement(), RODFDetectorCon::writeEmitters(), and MSDevice_Vehroutes::writeOutput().
|
extern |
Definition at line 83 of file SUMOVehicleClass.cpp.
Referenced by NIImporter_SUMO::_loadNetwork(), NLEdgeControlBuilder::build(), loadNet(), ROLoader::loadNet(), NILoader::loadXML(), and parseVehicleClasses().
|
extern |
Definition at line 143 of file SUMOVehicleClass.cpp.
Referenced by MSEdge::rebuildAllowedLanes(), MSEdge::rebuildAllowedTargets(), and writePermissions().
|
extern |
|
extern |
|
extern |
permissions not specified
Definition at line 147 of file SUMOVehicleClass.cpp.
Referenced by NIImporter_SUMO::addConnection(), NIXMLEdgesHandler::addEdge(), GNEConnection::getAttribute(), NIXMLConnectionsHandler::parseLaneBound(), NBEdgeCont::recheckPostProcessConnections(), NWWriter_SUMO::writeConnection(), NWWriter_SUMO::writeInternalEdges(), and NWWriter_SUMO::writeLane().
|
extern |
all VClasses are allowed
Definition at line 145 of file SUMOVehicleClass.cpp.
Referenced by IntermodalNetwork< E, L, N, V >::addCarEdges(), NLHandler::addLane(), NBEdge::buildInnerEdges(), NBEdge::dismissVehicleClassInformation(), LIBSUMO_NAMESPACE::Lane::getAllowed(), NWWriter_DlrNavteq::getAllowedTypes(), GNEEdge::getAttributeForSelection(), GNELane::getAttributeForSelection(), NBEdge::getFirstNonPedestrianLaneIndex(), NWWriter_OpenDrive::getLaneType(), getVehicleClassNames(), NBEdgeCont::guessRoundabouts(), NBEdge::hasPermissions(), MSEdge::initialize(), GUIVisualizationSettings::initNeteditDefaults(), GUIVisualizationSettings::initSumoGuiDefaults(), invertPermissions(), isForbidden(), isSidewalk(), MSTriggeredRerouter::myEndElement(), MSTriggeredRerouter::notifyEnter(), GNERerouterIntervalDialog::onCmdAddClosingLaneReroute(), GNERerouterIntervalDialog::onCmdAddClosingReroute(), RONetHandler::parseLane(), parseVehicleClasses(), MSEdge::rebuildAllowedLanes(), MSLane::resetPermissions(), ROEdge::ROEdge(), MSTriggeredRerouter::setPermissions(), writePermissions(), writePreferences(), and NWWriter_DlrNavteq::writeProhibitedManoeuvres().