67 myAllowUndoRedo(allowUndoRedo),
68 myOverwrite(overwrite) {
78 const std::string& laneID,
const double startPos,
const double endPos,
const std::string& name,
79 const std::vector<std::string>& lines,
const int personCapacity,
const double parkingLength,
90 if (lane ==
nullptr) {
94 }
else if (personCapacity < 0) {
96 }
else if (parkingLength < 0) {
101 parkingLength, color, friendlyPosition, parameters);
111 busStop->
incRef(
"buildBusStop");
122 const std::string& laneID,
const double startPos,
const double endPos,
const std::string& name,
123 const std::vector<std::string>& lines,
const int personCapacity,
const double parkingLength,
134 if (lane ==
nullptr) {
138 }
else if (personCapacity < 0) {
140 }
else if (parkingLength < 0) {
145 parkingLength, color, friendlyPosition, parameters);
155 trainStop->
incRef(
"buildTrainStop");
166 const double pos,
const double length,
const bool friendlyPos,
const Parameterised::Map& parameters) {
173 if (busStop ==
nullptr) {
177 if (lane ==
nullptr) {
179 }
else if (busStop ==
nullptr) {
183 }
else if ((length != -1) && (length < 0)) {
202 access->
incRef(
"buildAccess");
210 const double startPos,
const double endPos,
const std::string& name,
const std::vector<std::string>& lines,
const int containerCapacity,
221 if (lane ==
nullptr) {
225 }
else if (containerCapacity < 0) {
227 }
else if (parkingLength < 0) {
232 color, friendlyPosition, parameters);
242 containerStop->
incRef(
"buildContainerStop");
253 const std::string& laneID,
const double startPos,
const double endPos,
const std::string& name,
const double chargingPower,
254 const double efficiency,
const bool chargeInTransit,
const SUMOTime chargeDelay,
const bool friendlyPosition,
265 if (lane ==
nullptr) {
269 }
else if (chargingPower < 0) {
271 }
else if (chargeDelay < 0) {
276 chargeDelay, friendlyPosition, parameters);
286 chargingStation->
incRef(
"buildChargingStation");
298 const double startPos,
const double endPos,
const std::string& departPos,
const std::string& name,
const bool friendlyPosition,
299 const int roadSideCapacity,
const bool onRoad,
const double width,
const double length,
const double angle,
const Parameterised::Map& parameters) {
309 const double departPosDouble = GNEAttributeCarrier::canParse<double>(departPos) ? GNEAttributeCarrier::parse<double>(departPos) : 0;
311 if (lane ==
nullptr) {
315 }
else if (roadSideCapacity < 0) {
317 }
else if (width < 0) {
319 }
else if (length < 0) {
326 name, friendlyPosition, roadSideCapacity, onRoad,
337 parkingArea->
incRef(
"buildParkingArea");
348 const std::string& name,
const std::string& width,
const std::string& length,
const std::string& angle,
const double slope,
351 if (!width.empty() && !GNEAttributeCarrier::canParse<double>(width)) {
353 }
else if (!length.empty() && !GNEAttributeCarrier::canParse<double>(length)) {
355 }
else if (!angle.empty() && !GNEAttributeCarrier::canParse<double>(angle)) {
363 const double widthDouble = width.empty() ? 0 : GNEAttributeCarrier::parse<double>(width);
364 const double lengthDouble = length.empty() ? 0 : GNEAttributeCarrier::parse<double>(length);
366 if (parkingArea ==
nullptr) {
368 }
else if (widthDouble < 0) {
370 }
else if (lengthDouble < 0) {
374 GNEAdditional* parkingSpace =
new GNEParkingSpace(
myNet, parkingArea,
Position(x, y, z), width, length, angle, slope, name, parameters);
384 parkingSpace->
incRef(
"buildParkingSpace");
395 const double position,
const SUMOTime period,
const std::string& file,
const std::vector<std::string>& vehicleTypes,
const std::string& name,
406 if (lane ==
nullptr) {
410 }
else if (period < 0) {
428 detectorE1->
incRef(
"buildDetectorE1");
439 const double pos,
const double length,
const SUMOTime period,
const std::string& trafficLight,
const std::string& filename,
const std::vector<std::string>& vehicleTypes,
440 const std::string& name,
const SUMOTime timeThreshold,
const double speedThreshold,
const double jamThreshold,
const bool friendlyPos,
451 if (lane ==
nullptr) {
455 }
else if (length < 0) {
457 }
else if ((period != -1) && (period < 0)) {
462 }
else if (timeThreshold < 0) {
464 }
else if (speedThreshold < 0) {
466 }
else if (jamThreshold < 0) {
468 }
else if (timeThreshold < 0) {
470 }
else if (speedThreshold < 0) {
472 }
else if (jamThreshold < 0) {
481 id, lane,
myNet, pos, length, period, trafficLight, filename,
482 vehicleTypes, name, timeThreshold, speedThreshold, jamThreshold,
483 friendlyPos, parameters);
493 detectorE2->
incRef(
"buildDetectorE2");
504 const double pos,
const double endPos,
const SUMOTime period,
const std::string& trafficLight,
const std::string& filename,
const std::vector<std::string>& vehicleTypes,
505 const std::string& name,
const SUMOTime timeThreshold,
const double speedThreshold,
const double jamThreshold,
const bool friendlyPos,
516 if (lanes.size() > 0) {
521 pos, lanes.front()->getParentEdge()->getNBEdge()->getFinalLength(),
522 endPos, lanes.back()->getParentEdge()->getNBEdge()->getFinalLength(), friendlyPos)) {
524 }
else if ((period != -1) && (period < 0)) {
529 }
else if (timeThreshold < 0) {
531 }
else if (speedThreshold < 0) {
533 }
else if (jamThreshold < 0) {
542 id, lanes,
myNet, pos, endPos, period, trafficLight, filename,
543 vehicleTypes, name, timeThreshold, speedThreshold, jamThreshold,
544 friendlyPos, parameters);
553 for (
const auto& lane : lanes) {
554 lane->addChildElement(detectorE2);
556 detectorE2->
incRef(
"buildDetectorE2Multilane");
570 const std::string& filename,
const std::vector<std::string>& vehicleTypes,
const std::string& name,
const SUMOTime timeThreshold,
const double speedThreshold,
575 }
else if (period < 0) {
577 }
else if (timeThreshold < 0) {
579 }
else if (speedThreshold < 0) {
598 E3->incRef(
"buildDetectorE3");
614 if (lane ==
nullptr) {
616 }
else if (
E3 ==
nullptr) {
634 E3->addChildElement(entry);
635 entry->
incRef(
"buildDetectorEntry");
649 if (lane ==
nullptr) {
651 }
else if (
E3 ==
nullptr) {
669 E3->addChildElement(exit);
670 exit->
incRef(
"buildDetectorExit");
678 const std::string& filename,
const std::vector<std::string>& vehicleTypes,
const std::string& name,
const bool friendlyPos,
const Parameterised::Map& parameters) {
688 if (lane ==
nullptr) {
706 detectorE1Instant->
incRef(
"buildDetectorE1Instant");
717 const std::string& name,
const std::string& outfile,
const SUMOTime period,
const std::string& routeprobeID,
const double jamThreshold,
const std::vector<std::string>& vTypes,
728 }
else if ((routeprobeID.size() > 0) && (routeProbe ==
nullptr)) {
730 }
else if (lane ==
nullptr) {
738 }
else if (period < 0) {
740 }
else if (jamThreshold < 0) {
745 new GNECalibrator(
id,
myNet, lane, pos, period, name, outfile, jamThreshold, vTypes, parameters) :
746 new GNECalibrator(
id,
myNet, lane, pos, period, name, outfile, routeProbe, jamThreshold, vTypes, parameters);
763 calibrator->
incRef(
"buildCalibrator");
772 const std::string& name,
const std::string& outfile,
const SUMOTime period,
const std::string& routeprobeID,
const double jamThreshold,
const std::vector<std::string>& vTypes,
783 }
else if ((routeprobeID.size() > 0) && (routeProbe ==
nullptr)) {
785 }
else if (edge ==
nullptr) {
792 }
else if (period < 0) {
794 }
else if (jamThreshold < 0) {
799 new GNECalibrator(
id,
myNet, edge, pos, period, name, outfile, jamThreshold, vTypes, parameters) :
800 new GNECalibrator(
id,
myNet, edge, pos, period, name, outfile, routeProbe, jamThreshold, vTypes, parameters);
817 calibrator->
incRef(
"buildCalibrator");
833 if (vType ==
nullptr) {
835 }
else if (route ==
nullptr) {
837 }
else if (calibrator ==
nullptr) {
852 flow->
incRef(
"buildCalibratorFlow");
860 const std::vector<std::string>& edgeIDs,
const double prob,
const std::string& name,
const bool off,
const SUMOTime timeThreshold,
865 }
else if (prob < 0) {
867 }
else if (timeThreshold < 0) {
877 if (edges.size() > 0) {
881 if (edges.size() > 0) {
882 PositionVector laneShape = edges.front()->getLanes().front()->getLaneShape();
891 rerouter =
new GNERerouter(
id,
myNet, pos, name, prob, off, timeThreshold, vTypes, parameters);
894 std::vector<GNEAdditional*> rerouterSymbols;
895 for (
const auto& edge : edges) {
904 for (
const auto& rerouterSymbol : rerouterSymbols) {
910 rerouter->
incRef(
"buildRerouter");
912 for (
const auto& rerouterSymbol : rerouterSymbols) {
916 for (
int i = 0; i < (int)edges.size(); i++) {
917 edges.at(i)->addChildElement(rerouterSymbols.at(i));
932 if (rerouter ==
nullptr) {
934 }
else if (begin < 0) {
936 }
else if (end < 0) {
938 }
else if (end < begin) {
953 rerouterInterval->
incRef(
"buildRerouterInterval");
969 if (lane ==
nullptr) {
971 }
else if (rerouterInterval ==
nullptr) {
984 closingLaneReroute->
incRef(
"buildClosingLaneReroute");
997 if (edge ==
nullptr) {
999 }
else if (rerouterInterval ==
nullptr) {
1012 closingLaneReroute->
incRef(
"buildClosingLaneReroute");
1024 if (edge ==
nullptr) {
1026 }
else if (rerouterInterval ==
nullptr) {
1039 destProbReroute->
incRef(
"builDestProbReroute");
1052 if (rerouterInterval ==
nullptr) {
1054 }
else if (parkingArea ==
nullptr) {
1067 parkingAreaReroute->
incRef(
"builParkingAreaReroute");
1080 if (rerouterInterval ==
nullptr) {
1082 }
else if (route ==
nullptr) {
1095 routeProbReroute->
incRef(
"buildRouteProbReroute");
1113 if (edge ==
nullptr) {
1115 }
else if (period < 0) {
1117 }
else if (begin < 0) {
1137 routeProbe->
incRef(
"buildRouteProbe");
1148 const std::vector<std::string>& laneIDs,
const std::string& name,
const std::vector<std::string>& vTypes,
const Parameterised::Map& parameters) {
1158 if (lanes.size() > 0) {
1166 std::vector<GNEAdditional*> VSSSymbols;
1167 for (
const auto& lane : lanes) {
1175 for (
const auto& VSSSymbol : VSSSymbols) {
1181 variableSpeedSign->
incRef(
"buildVariableSpeedSign");
1183 for (
const auto& VSSSymbol : VSSSymbols) {
1187 for (
int i = 0; i < (int)lanes.size(); i++) {
1188 lanes.at(i)->addChildElement(VSSSymbols.at(i));
1204 if (VSS ==
nullptr) {
1206 }
else if (time < 0) {
1223 variableSpeedSignStep->
incRef(
"buildVariableSpeedSignStep");
1241 if (edge ==
nullptr) {
1243 }
else if (beginTime < 0) {
1245 }
else if (endTime < 0) {
1247 }
else if (endTime < beginTime) {
1265 vaporizer->
incRef(
"buildVaporizer");
1276 const Position& center,
const bool fill,
const RGBColor& color,
const std::vector<std::string>& edgeIDs,
1282 if (TAZShape.size() == 0) {
1285 for (
const auto& edge : edges) {
1286 TAZBoundary.
add(edge->getCenteringBoundary());
1291 if (sourceSinkEdge) {
1296 TAZShape = TAZBoundary.
getShape(
true);
1305 }
else if (TAZShape.size() == 0) {
1320 for (
const auto& edge : edges) {
1331 TAZ->incRef(
"buildTAZ");
1332 for (
const auto& edge : edges) {
1335 TAZSource->
incRef(
"buildTAZ");
1336 TAZ->addChildElement(TAZSource);
1339 TAZSink->
incRef(
"buildTAZ");
1340 TAZ->addChildElement(TAZSink);
1346 TAZ->updateGeometry();
1360 if (
TAZ ==
nullptr) {
1362 }
else if (edge ==
nullptr) {
1366 for (
const auto& TAZElement :
TAZ->getChildAdditionals()) {
1368 TAZSink = TAZElement;
1372 if (TAZSink ==
nullptr) {
1383 TAZSink->
incRef(
"buildTAZSource");
1389 for (
const auto& TAZElement :
TAZ->getChildAdditionals()) {
1391 TAZSource = TAZElement;
1395 if (TAZSource ==
nullptr) {
1406 TAZSource->
incRef(
"buildTAZSource");
1416 TAZSource->
incRef(
"buildTAZSource");
1430 if (
TAZ ==
nullptr) {
1432 }
else if (edge ==
nullptr) {
1438 for (
const auto& TAZElement :
TAZ->getChildAdditionals()) {
1440 TAZSource = TAZElement;
1444 if (TAZSource ==
nullptr) {
1455 TAZSource->
incRef(
"buildTAZSink");
1460 for (
const auto& TAZElement :
TAZ->getChildAdditionals()) {
1462 TAZSink = TAZElement;
1466 if (TAZSink ==
nullptr) {
1477 TAZSink->
incRef(
"buildTAZSink");
1487 TAZSink->
incRef(
"buildTAZSink");
1496 const double voltage,
const double currentLimit,
const Parameterised::Map& parameters) {
1500 }
else if (voltage < 0) {
1502 }
else if (currentLimit < 0) {
1517 tractionSubstation->
incRef(
"buildTractionSubstation");
1527 const std::vector<std::string>& laneIDs,
const double startPos,
const double endPos,
const bool friendlyPos,
1528 const std::vector<std::string>& forbiddenInnerLanes,
const Parameterised::Map& parameters) {
1540 if (lanes.size() > 0) {
1545 startPos, lanes.front()->getParentEdge()->getNBEdge()->getFinalLength(),
1546 endPos, lanes.back()->getParentEdge()->getNBEdge()->getFinalLength(), friendlyPos)) {
1548 }
else if (tractionSubstation ==
nullptr) {
1561 for (
const auto& lane : lanes) {
1562 lane->addChildElement(overheadWire);
1564 overheadWire->
incRef(
"buildOverheadWire");
1578 const std::string& ,
const std::string& ,
const std::string& ,
1586 const RGBColor& color,
double layer,
double angle,
const std::string& imgFile,
bool relativePath,
const PositionVector& shape,
bool geo,
bool fill,
1595 }
else if (lineWidth < 0) {
1601 GNEPoly* poly =
new GNEPoly(
myNet,
id, type, shape, geo, fill, lineWidth, color, layer, angle, imgFile, relativePath, name, parameters);
1611 poly->
incRef(
"addPolygon");
1619 const RGBColor& color,
const double x,
const double y,
double layer,
double angle,
const std::string& imgFile,
bool relativePath,
1620 double width,
double height,
const std::string& name,
const Parameterised::Map& parameters) {
1624 }
else if (width < 0) {
1626 }
else if (height < 0) {
1634 GNEPOI*
POI =
new GNEPOI(
myNet,
id, type, color, x, y,
false, layer, angle, imgFile, relativePath, width, height, name, parameters);
1644 POI->incRef(
"addPOI");
1654 const RGBColor& color,
const std::string& laneID,
double posOverLane,
const bool friendlyPos,
double posLat,
double layer,
double angle,
1655 const std::string& imgFile,
bool relativePath,
double width,
double height,
const std::string& name,
const Parameterised::Map& parameters) {
1659 }
else if (width < 0) {
1661 }
else if (height < 0) {
1671 if (lane ==
nullptr) {
1677 GNEAdditional* POILane =
new GNEPOI(
myNet,
id, type, color, lane, posOverLane, friendlyPos, posLat, layer, angle, imgFile, relativePath, width, height, name, parameters);
1688 POILane->
incRef(
"buildPOILane");
1699 const RGBColor& color,
const double lon,
const double lat,
double layer,
double angle,
const std::string& imgFile,
bool relativePath,
1700 double width,
double height,
const std::string& name,
const Parameterised::Map& parameters) {
1704 }
else if (width < 0) {
1706 }
else if (height < 0) {
1716 GNEPOI*
POIGEO =
new GNEPOI(
myNet,
id, type, color, lon, lat,
true, layer, angle, imgFile, relativePath, width, height, name, parameters);
1726 POIGEO->incRef(
"buildPOIGeo");
1738 for (
const auto& lane : edge->
getLanes()) {
1751 std::vector<std::pair<SUMOTime, SUMOTime>> sortedIntervals;
1754 if (!rerouterChild->getTagProperty().isSymbol()) {
1762 sortedIntervals.push_back(std::make_pair(newBegin, newEnd));
1764 std::sort(sortedIntervals.begin(), sortedIntervals.end());
1766 for (
int i = 0; i < (int)sortedIntervals.size() - 1; i++) {
1767 if (sortedIntervals.at(i).second > sortedIntervals.at(i + 1).first) {
1785 if ((pos < 0) || (pos > laneLength)) {
1789 if ((pos + length) > laneLength) {
1808 if (pos >= laneLength) {
1809 pos = (laneLength - POSITION_EPS);
1812 if ((length < 0) || ((pos + length) > laneLength)) {
1813 length = POSITION_EPS;
1836 if ((to - from) < POSITION_EPS) {
1839 if ((from < 0) || (from > laneLength)) {
1842 if ((to < 0) || (to > laneLength)) {
1863 }
else if (from > laneLength) {
1872 }
else if (to > laneLength) {
1876 if ((to - from) < POSITION_EPS) {
1877 if (to >= POSITION_EPS) {
1878 from = to - POSITION_EPS;
1907 writeError(
"Could not build " +
toString(tag) +
" with ID '" +
id +
"' in netedit; ID contains invalid characters.");
1913 writeError(
"Could not build " +
toString(tag) +
" with ID '" +
id +
"' in netedit; Invalid position over lane.");
1919 writeError(
"Could not build " +
toString(tag) +
" with ID '" +
id +
"' in netedit; declared twice.");
1931 writeError(
"Could not build " +
toString(tag) +
" with ID '" +
id +
"' in netedit; attribute " +
toString(attribute) +
" cannot be negative.");
1937 writeError(
"Could not build " +
toString(tag) +
" with ID '" +
id +
"' in netedit; list of VTypes isn't valid.");
1943 writeError(
"Could not build " +
toString(tag) +
" with ID '" +
id +
"' in netedit; filename is invalid.");
1949 writeError(
"Could not build " +
toString(tag) +
" with ID '" +
id +
"' in netedit; list of lanes isn't valid.");
1955 for (
const auto& vTypeID : vTypeIDs) {
1997 std::vector<GNEEdge*>
1999 std::vector<GNEEdge*> edges;
2000 for (
const auto& edgeID : edgeIDs) {
2003 if (edge ==
nullptr) {
2008 edges.push_back(edge);
2015 std::vector<GNELane*>
2017 std::vector<GNELane*> lanes;
2018 for (
const auto& laneID : laneIDs) {
2021 if (lane ==
nullptr) {
2026 lanes.push_back(lane);
2070 myAllowUndoRedo(false),
2071 myOverwrite(false) {
2089 centerAfterCreation(false) {
#define WRITE_WARNING(msg)
const std::string DEFAULT_VTYPE_ID
int SVCPermissions
bitset where each bit declares whether a certain SVC may use this edge/lane
SumoXMLTag
Numbers representing SUMO-XML - element names.
@ SUMO_TAG_TRACTION_SUBSTATION
A traction substation.
@ SUMO_TAG_INTERVAL
an aggreagated-output interval
@ SUMO_TAG_CLOSING_REROUTE
reroute of type closing
@ SUMO_TAG_REROUTER
A rerouter.
@ GNE_TAG_MULTI_LANE_AREA_DETECTOR
an e2 detector over multiple lanes (placed here due create Additional Frame)
@ SUMO_TAG_ROUTEPROBE
a routeprobe detector
@ SUMO_TAG_TAZ
a traffic assignment zone
@ SUMO_TAG_CHARGING_STATION
A Charging Station.
@ SUMO_TAG_VTYPE
description of a vehicle/person/container type
@ SUMO_TAG_ACCESS
An access point for a train stop.
@ SUMO_TAG_CONTAINER_STOP
A container stop.
@ SUMO_TAG_PARKING_AREA_REROUTE
entry for an alternative parking zone
@ SUMO_TAG_TAZSINK
a sink within a district (connection road)
@ SUMO_TAG_BUS_STOP
A bus stop.
@ SUMO_TAG_POI
begin/end of the description of a Point of interest
@ SUMO_TAG_STEP
trigger: a step description
@ GNE_TAG_POIGEO
Point of interest over view with GEO attributes.
@ SUMO_TAG_FLOW
a flow definitio nusing a from-to edges instead of a route (used by router)
@ SUMO_TAG_PARKING_AREA
A parking area.
@ SUMO_TAG_ROUTE_PROB_REROUTE
probability of route of a reroute
@ GNE_TAG_CALIBRATOR_LANE
A calibrator placed over lane.
@ SUMO_TAG_DET_ENTRY
an e3 entry point
@ SUMO_TAG_PARKING_SPACE
A parking space for a single vehicle within a parking area.
@ SUMO_TAG_ROUTE
begin/end of the description of a route
@ SUMO_TAG_POLY
begin/end of the description of a polygon
@ SUMO_TAG_OVERHEAD_WIRE_SECTION
An overhead wire section.
@ SUMO_TAG_SINK
Sink(s) specification.
@ SUMO_TAG_TRAIN_STOP
A train stop (alias for bus stop)
@ SUMO_TAG_SOURCE
a source
@ SUMO_TAG_LANE
begin/end of the description of a single lane
@ SUMO_TAG_INSTANT_INDUCTION_LOOP
An instantenous induction loop.
@ SUMO_TAG_DEST_PROB_REROUTE
probability of destiny of a reroute
@ GNE_TAG_POILANE
Point of interest over Lane.
@ SUMO_TAG_DET_EXIT
an e3 exit point
@ SUMO_TAG_VAPORIZER
vaporizer of vehicles
@ SUMO_TAG_LANE_AREA_DETECTOR
alternative tag for e2 detector
@ SUMO_TAG_TAZSOURCE
a source within a district (connection road)
@ SUMO_TAG_CLOSING_LANE_REROUTE
lane of a reroute of type closing
@ SUMO_TAG_INDUCTION_LOOP
alternative tag for e1 detector
@ SUMO_TAG_CALIBRATOR
A calibrator placed over edge.
@ SUMO_TAG_ENTRY_EXIT_DETECTOR
alternative tag for e3 detector
@ SUMO_TAG_VSS
A variable speed sign.
@ SUMO_TAG_EDGE
begin/end of the description of an edge
SumoXMLAttr
Numbers representing SUMO-XML - attributes.
@ GNE_ATTR_CENTER_AFTER_CREATION
flag to center camera after element creation
@ SUMO_ATTR_JAM_DIST_THRESHOLD
@ SUMO_ATTR_PARKING_LENGTH
@ SUMO_ATTR_VOLTAGE
voltage of the traction substation [V]
@ GNE_ATTR_SELECTED
element is selected
@ SUMO_ATTR_BEGIN
weights: time range begin
@ SUMO_ATTR_HALTING_TIME_THRESHOLD
@ SUMO_ATTR_CONTAINER_CAPACITY
@ SUMO_ATTR_HALTING_SPEED_THRESHOLD
@ SUMO_ATTR_END
weights: time range end
@ SUMO_ATTR_ROADSIDE_CAPACITY
@ SUMO_ATTR_CURRENTLIMIT
current limit of the traction substation [A]
@ SUMO_ATTR_CHARGINGPOWER
@ SUMO_ATTR_PERSON_CAPACITY
@ SUMO_ATTR_CHARGEDELAY
Delay in the charge of charging stations.
const double INVALID_DOUBLE
const double SUMO_const_laneWidth
std::string toString(const T &t, std::streamsize accuracy=gPrecision)
void writeError(const std::string &error)
write error and enable error creating element
A class that stores a 2D geometrical boundary.
void add(double x, double y, double z=0)
Makes the boundary include the given coordinate.
PositionVector getShape(const bool closeShape) const
get position vector (shape) based on this boundary
SUMOTime getTimeAttribute(const SumoXMLAttr attr) const
get time attribute
bool hasStringAttribute(const SumoXMLAttr attr) const
has function
SumoBaseObject * getParentSumoBaseObject() const
get pointer to mySumoBaseObjectParent SumoBaseObject (if is null, then is the root)
bool hasTimeAttribute(const SumoXMLAttr attr) const
check if current SumoBaseObject has the given time attribute
SumoXMLTag getTag() const
const std::string & getStringAttribute(const SumoXMLAttr attr) const
get string attribute
const std::vector< SumoBaseObject * > & getSumoBaseObjectChildren() const
get SumoBaseObject children
void buildPolygon(const CommonXMLStructure::SumoBaseObject *sumoBaseObject, const std::string &id, const std::string &type, const RGBColor &color, const double layer, const double angle, const std::string &imgFile, const bool relativePath, const PositionVector &shape, const bool geo, const bool fill, const double lineWidth, const std::string &name, const Parameterised::Map ¶meters)
Builds a polygon using the given values.
void buildDetectorE3(const CommonXMLStructure::SumoBaseObject *sumoBaseObject, const std::string &id, const Position &pos, const SUMOTime period, const std::string &filename, const std::vector< std::string > &vehicleTypes, const std::string &name, const SUMOTime timeThreshold, const double speedThreshold, const Parameterised::Map ¶meters)
Builds a multi entry exit detector (E3)
void buildVariableSpeedSign(const CommonXMLStructure::SumoBaseObject *sumoBaseObject, const std::string &id, const Position &pos, const std::vector< std::string > &laneIDs, const std::string &name, const std::vector< std::string > &vTypes, const Parameterised::Map ¶meters)
Builds a VariableSpeedSign (lane speed additional)
~GNEAdditionalHandler()
Destructor.
void buildEdgeCalibrator(const CommonXMLStructure::SumoBaseObject *sumoBaseObject, const std::string &id, const std::string &edgeID, const double pos, const std::string &name, const std::string &outfile, const SUMOTime period, const std::string &routeprobe, const double jamThreshold, const std::vector< std::string > &vTypes, const Parameterised::Map ¶meters)
builds a microscopic calibrator over an edge
GNEAdditional * getRerouterIntervalParent(const CommonXMLStructure::SumoBaseObject *sumoBaseObject) const
get rerouter interval parent
void writeInvalidID(const SumoXMLTag tag, const std::string &id)
write invalid id
static void fixLaneDoublePosition(double &from, double &to, const double laneLengt)
fix the given positions over lane
void buildOverheadWire(const CommonXMLStructure::SumoBaseObject *sumoBaseObject, const std::string &id, const std::string &substationId, const std::vector< std::string > &laneIDs, const double startPos, const double endPos, const bool friendlyPos, const std::vector< std::string > &forbiddenInnerLanes, const Parameterised::Map ¶meters)
build overhead wire
void buildSingleLaneDetectorE2(const CommonXMLStructure::SumoBaseObject *sumoBaseObject, const std::string &id, const std::string &laneID, const double pos, const double length, const SUMOTime period, const std::string &trafficLight, const std::string &filename, const std::vector< std::string > &vehicleTypes, const std::string &name, const SUMOTime timeThreshold, const double speedThreshold, const double jamThreshold, const bool friendlyPos, const Parameterised::Map ¶meters)
Builds a single-lane Area Detector (E2)
static bool accessCanBeCreated(GNEAdditional *busStopParent, GNEEdge *edge)
check if a GNEAccess can be created in a certain Edge
void buildPOILane(const CommonXMLStructure::SumoBaseObject *sumoBaseObject, const std::string &id, const std::string &type, const RGBColor &color, const std::string &laneID, const double posOverLane, const bool friendlyPos, const double posLat, const double layer, const double angle, const std::string &imgFile, const bool relativePath, const double width, const double height, const std::string &name, const Parameterised::Map ¶meters)
Builds a POI over lane using the given values.
void buildPOI(const CommonXMLStructure::SumoBaseObject *sumoBaseObject, const std::string &id, const std::string &type, const RGBColor &color, const double x, const double y, const double layer, const double angle, const std::string &imgFile, bool relativePath, const double width, const double height, const std::string &name, const Parameterised::Map ¶meters)
Builds a POI using the given values.
void buildLaneCalibrator(const CommonXMLStructure::SumoBaseObject *sumoBaseObject, const std::string &id, const std::string &laneID, const double pos, const std::string &name, const std::string &outfile, const SUMOTime period, const std::string &routeprobe, const double jamThreshold, const std::vector< std::string > &vTypes, const Parameterised::Map ¶meters)
builds a microscopic calibrator over a lane
void buildTAZSink(const CommonXMLStructure::SumoBaseObject *sumoBaseObject, const std::string &edgeID, const double arrivalWeight)
Builds a TAZSink (Traffic Assignment Zone)
void buildVariableSpeedSignStep(const CommonXMLStructure::SumoBaseObject *sumoBaseObject, const SUMOTime time, const std::string &speed)
Builds a VariableSpeedSign Step.
void buildRerouter(const CommonXMLStructure::SumoBaseObject *sumoBaseObject, const std::string &id, const Position &pos, const std::vector< std::string > &edgeIDs, const double prob, const std::string &name, const bool off, const SUMOTime timeThreshold, const std::vector< std::string > &vTypes, const Parameterised::Map ¶meters)
builds a rerouter
GNEAdditional * getAdditionalParent(const CommonXMLStructure::SumoBaseObject *sumoBaseObject, SumoXMLTag tag) const
get additional parent
void writeErrorInvalidNegativeValue(const SumoXMLTag tag, const std::string &id, const SumoXMLAttr attribute)
write error "invalid negative element"
void buildTractionSubstation(const CommonXMLStructure::SumoBaseObject *sumoBaseObject, const std::string &id, const Position &pos, const double voltage, const double currentLimit, const Parameterised::Map ¶meters)
build traction substation
std::vector< GNELane * > parseLanes(const SumoXMLTag tag, const std::vector< std::string > &laneIDs)
parse lanes
void writeErrorDuplicated(const SumoXMLTag tag, const std::string &id)
write error "duplicated additional"
void buildRerouterInterval(const CommonXMLStructure::SumoBaseObject *sumoBaseObject, const SUMOTime begin, const SUMOTime end)
builds a rerouter interval
void buildCalibratorFlow(const CommonXMLStructure::SumoBaseObject *sumoBaseObject, const SUMOVehicleParameter &vehicleParameter)
builds a calibrator flow
void buildAccess(const CommonXMLStructure::SumoBaseObject *sumoBaseObject, const std::string &laneID, const double pos, const double length, const bool friendlyPos, const Parameterised::Map ¶meters)
Builds an Access.
void overwriteAdditional()
remove overwrited additional
void buildTAZ(const CommonXMLStructure::SumoBaseObject *sumoBaseObject, const std::string &id, const PositionVector &shape, const Position ¢er, const bool fill, const RGBColor &color, const std::vector< std::string > &edgeIDs, const std::string &name, const Parameterised::Map ¶meters)
Builds a TAZ (Traffic Assignment Zone)
void buildClosingLaneReroute(const CommonXMLStructure::SumoBaseObject *sumoBaseObject, const std::string &closedLane, SVCPermissions permissions)
builds a closing lane reroute
void buildParkingSpace(const CommonXMLStructure::SumoBaseObject *sumoBaseObject, const double x, const double y, const double z, const std::string &name, const std::string &width, const std::string &length, const std::string &angle, const double slope, const Parameterised::Map ¶meters)
Builds a Parking Space.
void writeErrorInvalidVTypes(const SumoXMLTag tag, const std::string &id)
write error "invalid list of vehicle types"
void buildClosingReroute(const CommonXMLStructure::SumoBaseObject *sumoBaseObject, const std::string &closedEdgeID, SVCPermissions permissions)
builds a closing edge reroute
void writeErrorInvalidPosition(const SumoXMLTag tag, const std::string &id)
write error "invalid position"
static void fixMultiLanePosition(double fromPos, const double fromLaneLength, double toPos, const double tolaneLength)
fix the given positions over two lanes
void buildDestProbReroute(const CommonXMLStructure::SumoBaseObject *sumoBaseObject, const std::string &newEdgeDestinationID, const double probability)
builds a dest prob reroute
bool checkListOfVehicleTypes(const std::vector< std::string > &vTypeIDs) const
check list of IDs
const bool myAllowUndoRedo
allow undo/redo
static bool checkLaneDoublePosition(double from, const double to, const double laneLength, const bool friendlyPos)
check if the given positions over a lane is valid
void buildParkingAreaReroute(const CommonXMLStructure::SumoBaseObject *sumoBaseObject, const std::string &newParkignAreaID, const double probability, const bool visible)
builds a parking area reroute
void buildPOIGeo(const CommonXMLStructure::SumoBaseObject *sumoBaseObject, const std::string &id, const std::string &type, const RGBColor &color, const double lon, const double lat, const double layer, const double angle, const std::string &imgFile, bool relativePath, const double width, const double height, const std::string &name, const Parameterised::Map ¶meters)
Builds a POI in GEO coordinaten using the given values.
static bool checkLanePosition(double pos, const double length, const double laneLength, const bool friendlyPos)
check if the given position over a lane is valid
void buildRouteProbe(const CommonXMLStructure::SumoBaseObject *sumoBaseObject, const std::string &id, const std::string &edgeID, const SUMOTime period, const std::string &name, const std::string &file, const SUMOTime begin, const Parameterised::Map ¶meters)
builds a Route probe
void buildBusStop(const CommonXMLStructure::SumoBaseObject *sumoBaseObject, const std::string &id, const std::string &laneID, const double startPos, const double endPos, const std::string &name, const std::vector< std::string > &lines, const int personCapacity, const double parkingLength, const RGBColor &color, const bool friendlyPosition, const Parameterised::Map ¶meters)
Builds a bus stop.
GNEAdditionalHandler()
invalidate default constructo
void writeErrorInvalidFilename(const SumoXMLTag tag, const std::string &id)
write error "invalid filename"
void buildTrainStop(const CommonXMLStructure::SumoBaseObject *sumoBaseObject, const std::string &id, const std::string &laneID, const double startPos, const double endPos, const std::string &name, const std::vector< std::string > &lines, const int personCapacity, const double parkingLength, const RGBColor &color, const bool friendlyPosition, const Parameterised::Map ¶meters)
Builds a train stop.
void buildE1Detector(const CommonXMLStructure::SumoBaseObject *sumoBaseObject, const std::string &id, const std::string &laneID, const double position, const SUMOTime period, const std::string &file, const std::vector< std::string > &vehicleTypes, const std::string &name, const bool friendlyPos, const Parameterised::Map ¶meters)
Builds a induction loop detector (E1)
void writeErrorInvalidLanes(const SumoXMLTag tag, const std::string &id)
write error "invalid list of lanes"
static bool checkOverlappingRerouterIntervals(GNEAdditional *rerouter, const SUMOTime newBegin, const SUMOTime newEnd)
check if an overlapping is produced in rerouter if a interval with certain begin and end is inserted
static void fixLanePosition(double &pos, double &length, const double laneLength)
fix given position over lane
GNENet * myNet
pointer to GNENet
void buildParkingArea(const CommonXMLStructure::SumoBaseObject *sumoBaseObject, const std::string &id, const std::string &laneID, const double startPos, const double endPos, const std::string &departPos, const std::string &name, const bool friendlyPosition, const int roadSideCapacity, const bool onRoad, const double width, const double length, const double angle, const Parameterised::Map ¶meters)
Builds a Parking Area.
void buildRouteProbReroute(const CommonXMLStructure::SumoBaseObject *sumoBaseObject, const std::string &newRouteID, const double probability)
builds a route prob reroute
void buildDetectorE1Instant(const CommonXMLStructure::SumoBaseObject *sumoBaseObject, const std::string &id, const std::string &laneID, const double pos, const std::string &filename, const std::vector< std::string > &vehicleTypes, const std::string &name, const bool friendlyPos, const Parameterised::Map ¶meters)
Builds a Instant Induction Loop Detector (E1Instant)
void buildTAZSource(const CommonXMLStructure::SumoBaseObject *sumoBaseObject, const std::string &edgeID, const double departWeight)
Builds a TAZSource (Traffic Assignment Zone)
bool checkDuplicatedAdditional(const SumoXMLTag tag, const std::string &id)
check if given ID correspond to a duplicated additional
void writeErrorInvalidParent(const SumoXMLTag tag, const SumoXMLTag parent)
write error "invalid parent element"
std::vector< GNEEdge * > parseEdges(const SumoXMLTag tag, const std::vector< std::string > &edgeIDs)
parse edges
void buildMultiLaneDetectorE2(const CommonXMLStructure::SumoBaseObject *sumoBaseObject, const std::string &id, const std::vector< std::string > &lanes, const double pos, const double endPos, const SUMOTime period, const std::string &trafficLight, const std::string &filename, const std::vector< std::string > &vehicleTypes, const std::string &name, const SUMOTime timeThreshold, const double speedThreshold, const double jamThreshold, const bool friendlyPos, const Parameterised::Map ¶meters)
Builds a multi-lane Area Detector (E2)
void buildVaporizer(const CommonXMLStructure::SumoBaseObject *sumoBaseObject, const std::string &edgeID, const SUMOTime from, const SUMOTime endTime, const std::string &name, const Parameterised::Map ¶meters)
Builds a vaporizer (lane speed additional)
void buildContainerStop(const CommonXMLStructure::SumoBaseObject *sumoBaseObject, const std::string &id, const std::string &laneID, const double startPos, const double endPos, const std::string &name, const std::vector< std::string > &lines, const int containerCapacity, const double parkingLength, const RGBColor &color, const bool friendlyPosition, const Parameterised::Map ¶meters)
Builds a container stop.
GNEAdditional * myAdditionalToOverwrite
additional to overwrite (using undor-redo
void buildDetectorEntry(const CommonXMLStructure::SumoBaseObject *sumoBaseObject, const std::string &laneID, const double pos, const bool friendlyPos, const Parameterised::Map ¶meters)
Builds a entry detector (E3)
void buildDetectorExit(const CommonXMLStructure::SumoBaseObject *sumoBaseObject, const std::string &laneID, const double pos, const bool friendlyPos, const Parameterised::Map ¶meters)
Builds a exit detector (E3)
void buildOverheadWireClamp(const CommonXMLStructure::SumoBaseObject *sumoBaseObject, const std::string &id, const std::string &overheadWireIDStartClamp, const std::string &laneIDStartClamp, const std::string &overheadWireIDEndClamp, const std::string &laneIDEndClamp, const Parameterised::Map ¶meters)
build overhead wire clamp
void buildChargingStation(const CommonXMLStructure::SumoBaseObject *sumoBaseObject, const std::string &id, const std::string &laneID, const double startPos, const double endPos, const std::string &name, const double chargingPower, const double efficiency, const bool chargeInTransit, const SUMOTime chargeDelay, const bool friendlyPosition, const Parameterised::Map ¶meters)
Builds a charging Station.
const bool myOverwrite
check if overwrite
static bool checkMultiLanePosition(double fromPos, const double fromLaneLength, const double toPos, const double tolaneLength, const bool friendlyPos)
check if the given positions over two lanes are valid
An Element which don't belong to GNENet but has influence in the simulation.
virtual void updateGeometry()=0
update pre-computed geometry information
virtual void setAttribute(SumoXMLAttr key, const std::string &value, GNEUndoList *undoList)=0
method for setting the attribute and letting the object perform additional changes
static bool areLaneConsecutives(const std::vector< GNELane * > &lanes)
check if the given lanes are consecutive
virtual Position getPositionInView() const =0
Returns position of additional in view.
const std::string getID() const
get ID (all Attribute Carriers have one)
const std::string & getTagStr() const
get tag assigned to this object in string format
A lane area vehicles can halt at (netedit-version)
A lane area vehicles can halt at (netedit-version)
An Element which don't belong to GNENet but has influence in the simulation.
A road/street connecting two junctions (netedit-version)
NBEdge * getNBEdge() const
returns the internal NBEdge
const std::vector< GNELane * > & getLanes() const
returns a reference to the lane vector
void addChildElement(T *element)
add child element
const std::vector< GNEAdditional * > & getChildAdditionals() const
return child additionals
This lane is powered by an underlying GNEEdge and basically knows how to draw itself.
bool allowPedestrians() const
check if current lane allow pedestrians
GNEEdge * getParentEdge() const
get parent edge
GNELane * retrieveLane(const std::string &id, bool hardFail=true, bool checkVolatileChange=false) const
get lane by id
GNEAdditional * retrieveAdditional(SumoXMLTag type, const std::string &id, bool hardFail=true) const
Returns the named additional.
GNEAdditional * retrieveRerouterInterval(const std::string &rerouterID, const SUMOTime begin, const SUMOTime end) const
Returns the rerouter interval defined by given begin and end.
void insertAdditional(GNEAdditional *additional)
Insert a additional element int GNENet container.
GNEEdge * retrieveEdge(const std::string &id, bool hardFail=true) const
get edge by id
GNEDemandElement * retrieveDemandElement(SumoXMLTag type, const std::string &id, bool hardFail=true) const
Returns the named demand element.
A NBNetBuilder extended by visualisation and editing capabilities.
void deleteAdditional(GNEAdditional *additional, GNEUndoList *undoList)
remove additional
void disableUpdateGeometry()
disable update geometry of elements after inserting or removing an element in net
GNENetHelper::AttributeCarriers * getAttributeCarriers() const
get all attribute carriers used in this net
GNEViewNet * getViewNet() const
get view net
void enableUpdateGeometry()
Boundary getCenteringBoundary() const
Returns the boundary to which the view shall be centered in order to show the object.
A lane area vehicles can park at (netedit-version)
vehicle space used by GNEParkingAreas
void incRef(const std::string &debugMsg="")
Increase reference.
Representation of a RouteProbe in netedit.
void end()
End undo command sub-group. If the sub-group is still empty, it will be deleted; otherwise,...
void begin(GUIIcon icon, const std::string &description)
Begin undo command sub-group with current supermode. This begins a new group of commands that are tre...
void add(GNEChange *command, bool doit=false, bool merge=true)
Add new command, executing it if desired. The new command will be merged with the previous command if...
Representation of a vaporizer in netedit.
GNEUndoList * getUndoList() const
get the undoList object
virtual void centerTo(GUIGlID id, bool applyZoom, double zoomDist=20)
centers to the chosen artifact
static const GeoConvHelper & getFinal()
the coordinate transformation for writing the location element and for tracking the original coordina...
double getFinalLength() const
get length that will be assigned to the lanes in the final network
C++ TraCI client API implementation.
std::map< std::string, std::string > Map
parameters map
A point in 2D or 3D with translation and scaling methods.
static const Position INVALID
used to indicate that a position is valid
double length2D() const
Returns the length.
void move2side(double amount, double maxExtension=100)
move position vector to side using certain ammount
Position positionAtOffset2D(double pos, double lateralOffset=0) const
Returns the position at the given length.
Structure representing possible vehicle parameter.
std::string vtypeid
The vehicle's type id.
std::string routeid
The vehicle's route id.
static bool isValidTypeID(const std::string &value)
whether the given string is a valid id for an edge or vehicle type
static bool isValidFilename(const std::string &value)
whether the given string is a valid attribute for a filename (for example, a name)
static bool isValidAdditionalID(const std::string &value)
whether the given string is a valid id for an additional object
static bool isValidDetectorID(const std::string &value)
whether the given string is a valid id for an detector
static bool isValidListOfTypeID(const std::string &value)
whether the given string is a valid list of ids for an edge or vehicle type (empty aren't allowed)
static bool isValidNetID(const std::string &value)
whether the given string is a valid id for a network element
struct for Netedit parameters
const bool centerAfterCreation
center view after creation
~NeteditParameters()
destructor
NeteditParameters()
default constructor