SUMO - Simulation of Urban MObility
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
NBFrame.cpp
Go to the documentation of this file.
1 /****************************************************************************/
9 // Sets and checks options for netbuild
10 /****************************************************************************/
11 // SUMO, Simulation of Urban MObility; see http://sumo.dlr.de/
12 // Copyright (C) 2001-2016 DLR (http://www.dlr.de/) and contributors
13 /****************************************************************************/
14 //
15 // This file is part of SUMO.
16 // SUMO is free software: you can redistribute it and/or modify
17 // it under the terms of the GNU General Public License as published by
18 // the Free Software Foundation, either version 3 of the License, or
19 // (at your option) any later version.
20 //
21 /****************************************************************************/
22 
23 
24 // ===========================================================================
25 // included modules
26 // ===========================================================================
27 #ifdef _MSC_VER
28 #include <windows_config.h>
29 #else
30 #include <config.h>
31 #endif
32 
33 #include <string>
34 #include <fstream>
35 #include "NBFrame.h"
36 #include "NBNodeCont.h"
37 #include "NBEdgeCont.h"
39 #include "NBDistrictCont.h"
40 #include "NBDistribution.h"
41 #include "NBRequest.h"
42 #include "NBTypeCont.h"
47 #include <utils/common/ToString.h>
51 
52 #ifdef CHECK_MEMORY_LEAKS
53 #include <foreign/nvwa/debug_new.h>
54 #endif // CHECK_MEMORY_LEAKS
55 
56 
57 // ===========================================================================
58 // method definitions
59 // ===========================================================================
60 void
61 NBFrame::fillOptions(bool forNetgen) {
63  // register building defaults
64  oc.doRegister("default.lanenumber", 'L', new Option_Integer(1));
65  oc.addSynonyme("default.lanenumber", "lanenumber", true);
66  oc.addDescription("default.lanenumber", "Building Defaults", "The default number of lanes in an edge");
67 
68  oc.doRegister("default.lanewidth", new Option_Float(NBEdge::UNSPECIFIED_WIDTH));
69  oc.addSynonyme("default.lanewidth", "lanewidth", true);
70  oc.addDescription("default.lanewidth", "Building Defaults", "The default width of lanes");
71 
72  oc.doRegister("default.speed", 'S', new Option_Float((SUMOReal) 13.9));
73  oc.addSynonyme("default.speed", "speed", true);
74  oc.addDescription("default.speed", "Building Defaults", "The default speed on an edge (in m/s)");
75 
76  oc.doRegister("default.priority", 'P', new Option_Integer(-1));
77  oc.addSynonyme("default.priority", "priority", true);
78  oc.addDescription("default.priority", "Building Defaults", "The default priority of an edge");
79 
80  oc.doRegister("default.sidewalk-width", new Option_Float((SUMOReal) 2.0));
81  oc.addDescription("default.sidewalk-width", "Building Defaults", "The default width of added sidewalks");
82 
83  oc.doRegister("default.disallow", new Option_String());
84  oc.addDescription("default.disallow", "Building Defaults", "The default for disallowed vehicle classes");
85 
86  oc.doRegister("default.junctions.keep-clear", new Option_Bool(true));
87  oc.addDescription("default.junctions.keep-clear", "Building Defaults", "Whether junctions should be kept clear by default");
88 
89  oc.doRegister("default.junctions.radius", new Option_Float(1.5));
90  oc.addDescription("default.junctions.radius", "Building Defaults", "The default turning radius of intersections");
91 
92  // register the data processing options
93  oc.doRegister("no-internal-links", new Option_Bool(false)); // !!! not described
94  oc.addDescription("no-internal-links", "Processing", "Omits internal links");
95 
96  oc.doRegister("numerical-ids", new Option_Bool(false));
97  oc.addDescription("numerical-ids", "Processing", "Remaps alphanumerical IDs of nodes and edges to ensure that all IDs are integers");
98 
99  if (!forNetgen) {
100  oc.doRegister("dismiss-vclasses", new Option_Bool(false));
101  oc.addDescription("dismiss-vclasses", "Processing", "Removes vehicle class restrictions from imported edges");
102  }
103 
104  oc.doRegister("no-turnarounds", new Option_Bool(false));
105  oc.addDescription("no-turnarounds", "Processing", "Disables building turnarounds");
106 
107  oc.doRegister("no-turnarounds.tls", new Option_Bool(false));
108  oc.addSynonyme("no-turnarounds.tls", "no-tls-turnarounds", true);
109  oc.addDescription("no-turnarounds.tls", "Processing", "Disables building turnarounds at tls-controlled junctions");
110 
111  oc.doRegister("no-left-connections", new Option_Bool(false));
112  oc.addDescription("no-left-connections", "Processing", "Disables building connections to left");
113 
114  if (!forNetgen) {
115  oc.doRegister("geometry.split", new Option_Bool(false)); // !!!not described
116  oc.addSynonyme("geometry.split", "split-geometry", true);
117  oc.addDescription("geometry.split", "Processing", "Splits edges across geometry nodes");
118 
119  oc.doRegister("geometry.remove", 'R', new Option_Bool(false));
120  oc.addSynonyme("geometry.remove", "remove-geometry", true);
121  oc.addDescription("geometry.remove", "Processing", "Replace nodes which only define edge geometry by geometry points (joins edges)");
122 
123  oc.doRegister("geometry.remove.keep-edges.explicit", new Option_String());
124  oc.addDescription("geometry.remove.keep-edges.explicit", "Processing", "Ensure that the given list of edges is not modified");
125 
126  oc.doRegister("geometry.remove.keep-edges.input-file", new Option_FileName());
127  oc.addDescription("geometry.remove.keep-edges.input-file", "Processing",
128  "Ensure that the edges in FILE are not modified (Each id on a single line. Selection files from SUMO-GUI are also supported)");
129 
130  oc.doRegister("geometry.max-segment-length", new Option_Float(0));
131  oc.addDescription("geometry.max-segment-length", "Processing", "splits geometry to restrict segment length");
132 
133  oc.doRegister("geometry.min-dist", new Option_Float(-1));
134  oc.addDescription("geometry.min-dist", "Processing", "reduces too similar geometry points");
135 
136  oc.doRegister("geometry.max-angle", new Option_Float(99));
137  oc.addDescription("geometry.max-angle", "Processing", "Warn about edge geometries with an angle above DEGREES in successive segments");
138 
139  oc.doRegister("geometry.min-radius", new Option_Float(9));
140  oc.addDescription("geometry.min-radius", "Processing", "Warn about edge geometries with a turning radius less than METERS at the start or end");
141 
142  oc.doRegister("geometry.min-radius.fix", new Option_Bool(false));
143  oc.addDescription("geometry.min-radius.fix", "Processing", "Straighten edge geometries to avoid turning radii less than geometry.min-radius");
144 
145  oc.doRegister("geometry.junction-mismatch-threshold", new Option_Float(20));
146  oc.addDescription("geometry.junction-mismatch-threshold", "Processing", "Warn if the junction shape is to far away from the original node position");
147  }
148 
149  oc.doRegister("offset.disable-normalization", new Option_Bool(false));
150  oc.addSynonyme("offset.disable-normalization", "disable-normalize-node-positions", true);
151  oc.addDescription("offset.disable-normalization", "Processing", "Turn off normalizing node positions");
152 
153  oc.doRegister("offset.x", new Option_Float(0));
154  oc.addSynonyme("offset.x", "x-offset-to-apply", true);
155  oc.addDescription("offset.x", "Processing", "Adds FLOAT to net x-positions");
156 
157  oc.doRegister("offset.y", new Option_Float(0));
158  oc.addSynonyme("offset.y", "y-offset-to-apply", true);
159  oc.addDescription("offset.y", "Processing", "Adds FLOAT to net y-positions");
160 
161  oc.doRegister("flip-y-axis", new Option_Bool(false));
162  oc.addSynonyme("flip-y-axis", "flip-y");
163  oc.addDescription("flip-y-axis", "Processing", "Flips the y-coordinate along zero");
164 
165  oc.doRegister("roundabouts.guess", new Option_Bool(false));
166  oc.addSynonyme("roundabouts.guess", "guess-roundabouts", true);
167  oc.addDescription("roundabouts.guess", "Processing", "Enable roundabout-guessing");
168 
169  oc.doRegister("opposites.guess", new Option_Bool(false));
170  oc.addDescription("opposites.guess", "Processing", "Enable guessing of opposite direction lanes usable for overtaking");
171 
172  oc.doRegister("lefthand", new Option_Bool(false));
173  oc.addDescription("lefthand", "Processing", "Assumes left-hand traffic on the network");
174 
175  oc.doRegister("edges.join", new Option_Bool(false));
176  oc.addDescription("edges.join", "Processing",
177  "Merges edges which connect the same nodes and are close to each other (recommended for VISSIM import)");
178 
179  oc.doRegister("junctions.join", new Option_Bool(false));
180  oc.addDescription("junctions.join", "Processing",
181  "Joins junctions that are close to each other (recommended for OSM import)");
182 
183  oc.doRegister("junctions.join-dist", new Option_Float(10));
184  oc.addDescription("junctions.join-dist", "Processing",
185  "Determines the maximal distance for joining junctions (defaults to 10)");
186 
187  if (!forNetgen) {
188  oc.doRegister("junctions.join-exclude", new Option_String());
189  oc.addDescription("junctions.join-exclude", "Processing", "Interprets STR as list of junctions to exclude from joining");
190 
191  oc.doRegister("speed.offset", new Option_Float(0));
192  oc.addDescription("speed.offset", "Processing", "Modifies all edge speeds by adding FLOAT");
193 
194  oc.doRegister("speed.factor", new Option_Float(1));
195  oc.addDescription("speed.factor", "Processing", "Modifies all edge speeds by multiplying by FLOAT");
196 
197  oc.doRegister("speed.minimum", new Option_Float(0));
198  oc.addDescription("speed.minimum", "Processing", "Modifies all edge speeds to at least FLOAT");
199  }
200 
201  oc.doRegister("junctions.corner-detail", new Option_Integer(0));
202  oc.addDescription("junctions.corner-detail", "Processing", "Generate INT intermediate points to smooth out intersection corners");
203 
204  oc.doRegister("junctions.internal-link-detail", new Option_Integer(5));
205  oc.addDescription("junctions.internal-link-detail", "Processing", "Generate INT intermediate points to smooth out lanes within the intersection");
206 
207  oc.doRegister("junctions.scurve-stretch", new Option_Float(0));
208  oc.addDescription("junctions.scurve-stretch", "Processing", "Generate longer intersections to allow for smooth s-curves when the number of lanes changes");
209 
210  oc.doRegister("rectangular-lane-cut", new Option_Bool(false));
211  oc.addDescription("rectangular-lane-cut", "Processing", "Forces rectangular cuts between lanes and intersections");
212 
213  oc.doRegister("check-lane-foes.roundabout", new Option_Bool(true));
214  oc.addDescription("check-lane-foes.roundabout", "Processing",
215  "Allow driving onto a multi-lane road if there are foes on other lanes (at roundabouts)");
216 
217  oc.doRegister("check-lane-foes.all", new Option_Bool(false));
218  oc.addDescription("check-lane-foes.all", "Processing",
219  "Allow driving onto a multi-lane road if there are foes on other lanes (everywhere)");
220 
221  oc.doRegister("sidewalks.guess", new Option_Bool(false));
222  oc.addDescription("sidewalks.guess", "Processing",
223  "Guess pedestrian sidewalks based on edge speed");
224 
225  oc.doRegister("sidewalks.guess.max-speed", new Option_Float((SUMOReal) 13.89));
226  oc.addDescription("sidewalks.guess.max-speed", "Processing",
227  "Add sidewalks for edges with a speed equal or below the given limit");
228 
229  oc.doRegister("sidewalks.guess.min-speed", new Option_Float((SUMOReal) 5.8));
230  oc.addDescription("sidewalks.guess.min-speed", "Processing",
231  "Add sidewalks for edges with a speed above the given limit");
232 
233  oc.doRegister("sidewalks.guess.from-permissions", new Option_Bool(false));
234  oc.addDescription("sidewalks.guess.from-permissions", "Processing",
235  "Add sidewalks for edges that allow pedestrians on any of their lanes regardless of speed");
236 
237  oc.doRegister("sidewalks.guess.exclude", new Option_String());
238  oc.addDescription("sidewalks.guess.exclude", "Processing",
239  "Do not guess sidewalks for the given list of edges");
240 
241  oc.doRegister("crossings.guess", new Option_Bool(false));
242  oc.addDescription("crossings.guess", "Processing",
243  "Guess pedestrian crossings based on the presence of sidewalks");
244 
245  oc.doRegister("crossings.guess.speed-threshold", new Option_Float(13.89));
246  oc.addDescription("crossings.guess.speed-threshold", "Processing",
247  "At uncontrolled nodes, do not build crossings across edges with a speed above the threshold");
248 
249  // tls setting options
250  // explicit tls
251  oc.doRegister("tls.set", new Option_String());
252  oc.addSynonyme("tls.set", "explicite-tls", true);
253  oc.addDescription("tls.set", "TLS Building", "Interprets STR as list of junctions to be controlled by TLS");
254 
255  oc.doRegister("tls.unset", new Option_String());
256  oc.addSynonyme("tls.unset", "explicite-no-tls", true);
257  oc.addDescription("tls.unset", "TLS Building", "Interprets STR as list of junctions to be not controlled by TLS");
258 
259  // tls-guessing
260  oc.doRegister("tls.guess", new Option_Bool(false));
261  oc.addSynonyme("tls.guess", "guess-tls", true);
262  oc.addDescription("tls.guess", "TLS Building", "Turns on TLS guessing");
263 
264  if (!forNetgen) {
265  oc.doRegister("tls.taz-nodes", new Option_Bool(false));
266  oc.addSynonyme("tls.taz-nodes", "tls-guess.district-nodes", true);
267  oc.addDescription("tls.taz-nodes", "TLS Building", "Sets district nodes as tls-controlled"); // !!! describe
268  }
269 
270  oc.doRegister("tls-guess.joining", new Option_Bool(false));
271  oc.addDescription("tls-guess.joining", "TLS Building", "Includes node clusters into guess"); // !!! describe
272 
273  oc.doRegister("tls.join", new Option_Bool(false));
274  oc.addSynonyme("tls.join", "try-join-tls", true);
275  oc.addDescription("tls.join", "TLS Building", "Tries to cluster tls-controlled nodes"); // !!! describe
276 
277  oc.doRegister("tls.join-dist", new Option_Float(20));
278  oc.addDescription("tls.join-dist", "TLS Building",
279  "Determines the maximal distance for joining traffic lights (defaults to 20)");
280 
281  oc.doRegister("tls.uncontrolled-within", new Option_Bool(false));
282  oc.addDescription("tls.uncontrolled-within", "TLS Building",
283  "Do not control edges that lie fully within a joined traffic light. This may cause collisions but allows old traffic light plans to be used");
284 
285  if (!forNetgen) {
286  oc.doRegister("tls.guess-signals", new Option_Bool(false));
287  oc.addDescription("tls.guess-signals", "TLS Building", "Interprets tls nodes surrounding an intersection as signal positions for a larger TLS. This is typical pattern for OSM-derived networks");
288 
289  oc.doRegister("tls.guess-signals.dist", new Option_Float(25));
290  oc.addDescription("tls.guess-signals.dist", "TLS Building", "Distance for interpreting nodes as signal locations");
291  }
292 
293 
294  // computational
295  oc.doRegister("tls.cycle.time", new Option_Integer(90));
296  oc.addDescription("tls.cycle.time", "TLS Building", "Use INT as cycle duration");
297 
298  oc.doRegister("tls.green.time", new Option_Integer(31));
299  oc.addSynonyme("tls.green.time", "traffic-light-green", true);
300  oc.addDescription("tls.green.time", "TLS Building", "Use INT as green phase duration");
301 
302  oc.doRegister("tls.yellow.min-decel", 'D', new Option_Float(3.0));
303  oc.addSynonyme("tls.yellow.min-decel", "min-decel", true);
304  oc.addDescription("tls.yellow.min-decel", "TLS Building", "Defines smallest vehicle deceleration");
305 
306  oc.doRegister("tls.yellow.patch-small", new Option_Bool(false));
307  oc.addSynonyme("tls.yellow.patch-small", "patch-small-tyellow", true);
308  oc.addDescription("tls.yellow.patch-small", "TLS Building", "Given yellow times are patched even if being too short");
309 
310  oc.doRegister("tls.yellow.time", new Option_Integer(-1));
311  oc.addSynonyme("tls.yellow.time", "traffic-light-yellow", true);
312  oc.addDescription("tls.yellow.time", "TLS Building", "Set INT as fixed time for yellow phase durations");
313 
314  oc.doRegister("tls.left-green.time", new Option_Integer(6));
315  oc.addDescription("tls.left-green.time", "TLS Building", "Use INT as green phase duration for left turns (s). Setting this value to 0 disables additional left-turning phases");
316 
317  // tls-shifts
318  oc.doRegister("tls.half-offset", new Option_String());
319  oc.addSynonyme("tls.half-offset", "tl-logics.half-offset", true);
320  oc.addDescription("tls.half-offset", "TLS Building", "TLSs in STR will be shifted by half-phase");
321 
322  oc.doRegister("tls.quarter-offset", new Option_String());
323  oc.addSynonyme("tls.quarter-offset", "tl-logics.quarter-offset", true);
324  oc.addDescription("tls.quarter-offset", "TLS Building", "TLSs in STR will be shifted by quarter-phase");
325 
326  // tls type
327  oc.doRegister("tls.default-type", new Option_String("static"));
328  oc.addDescription("tls.default-type", "TLS Building", "TLSs with unspecified type will use STR as their algorithm");
329 
330 
331  // edge pruning
332  oc.doRegister("keep-edges.min-speed", new Option_Float(-1));
333  oc.addSynonyme("keep-edges.min-speed", "edges-min-speed", true);
334  oc.addDescription("keep-edges.min-speed", "Edge Removal", "Only keep edges with speed in meters/second > FLOAT");
335 
336  oc.doRegister("remove-edges.explicit", new Option_String());
337  oc.addSynonyme("remove-edges.explicit", "remove-edges");
338  oc.addDescription("remove-edges.explicit", "Edge Removal", "Remove edges in STR");
339 
340  oc.doRegister("keep-edges.explicit", new Option_String());
341  oc.addSynonyme("keep-edges.explicit", "keep-edges");
342  oc.addDescription("keep-edges.explicit", "Edge Removal", "Only keep edges in STR");
343 
344  oc.doRegister("keep-edges.input-file", new Option_FileName());
345  oc.addDescription("keep-edges.input-file", "Edge Removal", "Only keep edges in FILE (Each id on a single line. Selection files from SUMO-GUI are also supported)");
346 
347  oc.doRegister("remove-edges.input-file", new Option_FileName());
348  oc.addDescription("remove-edges.input-file", "Edge Removal", "Remove edges in FILE. (Each id on a single line. Selection files from SUMO-GUI are also supported)");
349 
350  if (!forNetgen) {
351  oc.doRegister("keep-edges.postload", new Option_Bool(false));
352  oc.addDescription("keep-edges.postload", "Edge Removal", "Remove edges after joining");
353  }
354 
355  oc.doRegister("keep-edges.in-boundary", new Option_String());
356  oc.addDescription("keep-edges.in-boundary", "Edge Removal", "Only keep edges which are located within the given boundary (given either as CARTESIAN corner coordinates <xmin,ymin,xmax,ymax> or as polygon <x0,y0,x1,y1,...>)");
357 
358  oc.doRegister("keep-edges.in-geo-boundary", new Option_String());
359  oc.addDescription("keep-edges.in-geo-boundary", "Edge Removal", "Only keep edges which are located within the given boundary (given either as GEODETIC corner coordinates <lon-min,lat-min,lon-max,lat-max> or as polygon <lon0,lat0,lon1,lat1,...>)");
360 
361  if (!forNetgen) {
362  oc.doRegister("keep-edges.by-vclass", new Option_String());
363  oc.addDescription("keep-edges.by-vclass", "Edge Removal", "Only keep edges which allow one of the vclasss in STR");
364 
365  oc.doRegister("remove-edges.by-vclass", new Option_String());
366  oc.addDescription("remove-edges.by-vclass", "Edge Removal", "Remove edges which allow only vclasses from STR");
367 
368  oc.doRegister("keep-edges.by-type", new Option_String());
369  oc.addDescription("keep-edges.by-type", "Edge Removal", "Only keep edges where type is in STR");
370 
371  oc.doRegister("remove-edges.by-type", new Option_String());
372  oc.addDescription("remove-edges.by-type", "Edge Removal", "Remove edges where type is in STR");
373 
374  oc.doRegister("remove-edges.isolated", new Option_Bool(false));
375  oc.addSynonyme("remove-edges.isolated", "remove-isolated", true);
376  oc.addDescription("remove-edges.isolated", "Edge Removal", "Removes isolated edges");
377 
378  }
379 
380 
381  // unregulated nodes options
382  oc.doRegister("keep-nodes-unregulated", new Option_Bool(false));
383  oc.addSynonyme("keep-nodes-unregulated", "keep-unregulated");
384  oc.addDescription("keep-nodes-unregulated", "Unregulated Nodes", "All nodes will be unregulated");
385 
386  oc.doRegister("keep-nodes-unregulated.explicit", new Option_String());
387  oc.addSynonyme("keep-nodes-unregulated.explicit", "keep-unregulated.explicit");
388  oc.addSynonyme("keep-nodes-unregulated.explicit", "keep-unregulated.nodes", true);
389  oc.addDescription("keep-nodes-unregulated.explicit", "Unregulated Nodes", "Do not regulate nodes in STR");
390 
391  oc.doRegister("keep-nodes-unregulated.district-nodes", new Option_Bool(false));
392  oc.addSynonyme("keep-nodes-unregulated.district-nodes", "keep-unregulated.district-nodes");
393  oc.addDescription("keep-nodes-unregulated.district-nodes", "Unregulated Nodes", "Do not regulate district nodes");
394 
395  // ramp guessing options
396  if (!forNetgen) {
397  oc.doRegister("ramps.guess", new Option_Bool(false));
398  oc.addSynonyme("ramps.guess", "guess-ramps", true);
399  oc.addDescription("ramps.guess", "Ramp Guessing", "Enable ramp-guessing");
400 
401  oc.doRegister("ramps.max-ramp-speed", new Option_Float(-1));
402  oc.addSynonyme("ramps.max-ramp-speed", "ramp-guess.max-ramp-speed", true);
403  oc.addDescription("ramps.max-ramp-speed", "Ramp Guessing", "Treat edges with speed > FLOAT as no ramps");
404 
405  oc.doRegister("ramps.min-highway-speed", new Option_Float((SUMOReal)(79 / 3.6)));
406  oc.addSynonyme("ramps.min-highway-speed", "ramp-guess.min-highway-speed", true);
407  oc.addDescription("ramps.min-highway-speed", "Ramp Guessing", "Treat edges with speed < FLOAT as no highways");
408 
409  oc.doRegister("ramps.ramp-length", new Option_Float(100));
410  oc.addSynonyme("ramps.ramp-length", "ramp-guess.ramp-length", true);
411  oc.addDescription("ramps.ramp-length", "Ramp Guessing", "Use FLOAT as ramp-length");
412 
413  oc.doRegister("ramps.set", new Option_String());
414  oc.addSynonyme("ramps.set", "ramp-guess.explicite", true);
415  oc.addDescription("ramps.set", "Ramp Guessing", "Tries to handle the given edges as ramps");
416 
417  oc.doRegister("ramps.unset", new Option_String());
418  oc.addDescription("ramps.unset", "Ramp Guessing", "Do not consider the given edges as ramps");
419 
420  oc.doRegister("ramps.no-split", new Option_Bool(false));
421  oc.addSynonyme("ramps.no-split", "ramp-guess.no-split", true);
422  oc.addDescription("ramps.no-split", "Ramp Guessing", "Avoids edge splitting");
423  }
424 }
425 
426 
427 bool
430  bool ok = true;
431  //
432  if (!oc.isDefault("tls-guess.joining")) {
433  WRITE_WARNING("'--tls-guess.joining' was joined with '--tls.join'.\n Please use '--tls.join' in future only.");
434  if (!oc.isSet("tls.join")) {
435  oc.set("tls.join", "true");
436  }
437  }
438  if (!SUMOXMLDefinitions::TrafficLightTypes.hasString(oc.getString("tls.default-type"))) {
439  WRITE_ERROR("unsupported value '" + oc.getString("tls.default-type") + "' for option '--tls.default-type'");
440  ok = false;
441  }
442  if (oc.isSet("keep-edges.in-boundary") && oc.isSet("keep-edges.in-geo-boundary")) {
443  WRITE_ERROR("only one of the options 'keep-edges.in-boundary' or 'keep-edges.in-geo-boundary' may be given");
444  ok = false;
445  }
446  if (oc.getBool("no-internal-links") && oc.getBool("crossings.guess")) {
447  WRITE_ERROR("only one of the options 'no-internal-links' or 'crossings.guess' may be given");
448  ok = false;
449  }
450  if (!oc.isDefault("tls.green.time") && !oc.isDefault("tls.cycle.time")) {
451  WRITE_ERROR("only one of the options 'tls.green.time' or 'tls.cycle.time' may be given");
452  ok = false;
453  }
454  if (oc.getInt("junctions.internal-link-detail") < 2) {
455  WRITE_ERROR("junctions.internal-link-detail must >= 2");
456  ok = false;
457  }
458  if (oc.getFloat("junctions.scurve-stretch") > 0) {
459  if (oc.getBool("no-internal-links")) {
460  WRITE_WARNING("option 'junctions.scurve-stretch' requires internal lanes to work. Option '--no-internal-links' was disabled.");
461  }
462  // make sure the option is set so heuristics cannot ignore it
463  oc.set("no-internal-links", "false");
464  }
465  return ok;
466 }
467 
468 
469 /****************************************************************************/
void doRegister(const std::string &name, Option *v)
Adds an option under the given name.
Definition: OptionsCont.cpp:86
static const SUMOReal UNSPECIFIED_WIDTH
unspecified lane width
Definition: NBEdge.h:237
static bool checkOptions()
Checks set options from the OptionsCont-singleton for being valid.
Definition: NBFrame.cpp:428
bool getBool(const std::string &name) const
Returns the boolean-value of the named option (only for Option_Bool)
SUMOReal getFloat(const std::string &name) const
Returns the SUMOReal-value of the named option (only for Option_Float)
#define WRITE_WARNING(msg)
Definition: MsgHandler.h:200
static OptionsCont & getOptions()
Retrieves the options.
Definition: OptionsCont.cpp:69
void addSynonyme(const std::string &name1, const std::string &name2, bool isDeprecated=false)
Adds a synonyme for an options name (any order)
std::string getString(const std::string &name) const
Returns the string-value of the named option (only for Option_String)
static StringBijection< TrafficLightType > TrafficLightTypes
bool isDefault(const std::string &name) const
Returns the information whether the named option has still the default value.
#define WRITE_ERROR(msg)
Definition: MsgHandler.h:206
bool set(const std::string &name, const std::string &value)
Sets the given value for the named option.
An integer-option.
Definition: Option.h:313
A storage for options typed value containers)
Definition: OptionsCont.h:99
static void fillOptions(bool forNetgen)
Inserts options used by the network converter.
Definition: NBFrame.cpp:61
#define SUMOReal
Definition: config.h:214
void addDescription(const std::string &name, const std::string &subtopic, const std::string &description)
Adds a description for an option.
int getInt(const std::string &name) const
Returns the int-value of the named option (only for Option_Integer)
bool isSet(const std::string &name, bool failOnNonExistant=true) const
Returns the information whether the named option is set.