LCOV - code coverage report
Current view: top level - src/netbuild - NBFrame.cpp (source / functions) Coverage Total Hit
Test: lcov.info Lines: 97.8 % 558 546
Test Date: 2026-03-26 16:31:35 Functions: 100.0 % 2 2

            Line data    Source code
       1              : /****************************************************************************/
       2              : // Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
       3              : // Copyright (C) 2001-2026 German Aerospace Center (DLR) and others.
       4              : // This program and the accompanying materials are made available under the
       5              : // terms of the Eclipse Public License 2.0 which is available at
       6              : // https://www.eclipse.org/legal/epl-2.0/
       7              : // This Source Code may also be made available under the following Secondary
       8              : // Licenses when the conditions for such availability set forth in the Eclipse
       9              : // Public License 2.0 are satisfied: GNU General Public License, version 2
      10              : // or later which is available at
      11              : // https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html
      12              : // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-or-later
      13              : /****************************************************************************/
      14              : /// @file    NBFrame.cpp
      15              : /// @author  Daniel Krajzewicz
      16              : /// @author  Jakob Erdmann
      17              : /// @author  Michael Behrisch
      18              : /// @date    09.05.2011
      19              : ///
      20              : // Sets and checks options for netbuild
      21              : /****************************************************************************/
      22              : #include <config.h>
      23              : 
      24              : #include <string>
      25              : #include <fstream>
      26              : #include <utils/options/OptionsCont.h>
      27              : #include <utils/common/MsgHandler.h>
      28              : #include <utils/common/UtilExceptions.h>
      29              : #include <utils/common/StringTokenizer.h>
      30              : #include <utils/common/ToString.h>
      31              : #include <utils/geom/GeoConvHelper.h>
      32              : #include <utils/iodevices/OutputDevice.h>
      33              : #include <utils/xml/SUMOXMLDefinitions.h>
      34              : 
      35              : #include "NBFrame.h"
      36              : #include "NBNodeCont.h"
      37              : #include "NBEdgeCont.h"
      38              : #include "NBTrafficLightLogicCont.h"
      39              : #include "NBDistrictCont.h"
      40              : #include "NBRequest.h"
      41              : #include "NBTypeCont.h"
      42              : 
      43              : // ===========================================================================
      44              : // method definitions
      45              : // ===========================================================================
      46              : 
      47              : void
      48         2524 : NBFrame::fillOptions(OptionsCont& oc, bool forNetgen) {
      49              :     // register building defaults
      50         2524 :     oc.doRegister("default.lanenumber", 'L', new Option_Integer(1));
      51         5048 :     oc.addSynonyme("default.lanenumber", "lanenumber", true);
      52         5048 :     oc.addDescription("default.lanenumber", "Building Defaults", TL("The default number of lanes in an edge"));
      53              : 
      54         2524 :     oc.doRegister("default.lanewidth", new Option_Float(NBEdge::UNSPECIFIED_WIDTH));
      55         5048 :     oc.addSynonyme("default.lanewidth", "lanewidth", true);
      56         5048 :     oc.addDescription("default.lanewidth", "Building Defaults", TL("The default width of lanes"));
      57              : 
      58         5048 :     oc.doRegister("default.spreadtype", new Option_String("right"));
      59         5048 :     oc.addDescription("default.spreadtype", "Building Defaults", TL("The default method for computing lane shapes from edge shapes"));
      60              : 
      61         2524 :     oc.doRegister("default.speed", 'S', new Option_Float((double) 13.89));
      62         5048 :     oc.addSynonyme("default.speed", "speed", true);
      63         5048 :     oc.addDescription("default.speed", "Building Defaults", TL("The default speed on an edge (in m/s)"));
      64              : 
      65         2524 :     oc.doRegister("default.friction", new Option_Float(NBEdge::UNSPECIFIED_FRICTION));
      66         5048 :     oc.addSynonyme("default.friction", "friction", true);
      67         5048 :     oc.addDescription("default.friction", "Building Defaults", TL("The default friction on an edge"));
      68              : 
      69         2524 :     oc.doRegister("default.priority", 'P', new Option_Integer(-1));
      70         5048 :     oc.addSynonyme("default.priority", "priority", true);
      71         5048 :     oc.addDescription("default.priority", "Building Defaults", TL("The default priority of an edge"));
      72              : 
      73         2524 :     oc.doRegister("default.type", new Option_String());
      74         5048 :     oc.addDescription("default.type", "Building Defaults", TL("The default edge type"));
      75              : 
      76         2524 :     oc.doRegister("default.sidewalk-width", new Option_Float((double) 2.0));
      77         5048 :     oc.addDescription("default.sidewalk-width", "Building Defaults", TL("The default width of added sidewalks"));
      78              : 
      79         2524 :     oc.doRegister("default.bikelane-width", new Option_Float((double) 1.0));
      80         5048 :     oc.addDescription("default.bikelane-width", "Building Defaults", TL("The default width of added bike lanes"));
      81              : 
      82         2524 :     oc.doRegister("default.crossing-width", new Option_Float((double) 4.0));
      83         5048 :     oc.addDescription("default.crossing-width", "Building Defaults", TL("The default width of a pedestrian crossing"));
      84              : 
      85         2524 :     oc.doRegister("default.crossing-speed", new Option_Float(2.78));
      86         5048 :     oc.addDescription("default.crossing-speed", "Building Defaults", TL("The default speed 'limit' on a pedestrian crossing (in m/s)"));
      87              : 
      88         2524 :     oc.doRegister("default.walkingarea-speed", new Option_Float(2.78));
      89         5048 :     oc.addDescription("default.walkingarea-speed", "Building Defaults", TL("The default speed 'limit' on a pedestrian walkingarea (in m/s)"));
      90              : 
      91         2524 :     oc.doRegister("default.allow", new Option_String());
      92         5048 :     oc.addDescription("default.allow", "Building Defaults", TL("The default for allowed vehicle classes"));
      93              : 
      94         2524 :     oc.doRegister("default.disallow", new Option_String());
      95         5048 :     oc.addDescription("default.disallow", "Building Defaults", TL("The default for disallowed vehicle classes"));
      96              : 
      97         2524 :     oc.doRegister("default.junctions.keep-clear", new Option_Bool(true));
      98         5048 :     oc.addDescription("default.junctions.keep-clear", "Building Defaults", TL("Whether junctions should be kept clear by default"));
      99              : 
     100         2524 :     oc.doRegister("default.junctions.radius", new Option_Float(4));
     101         5048 :     oc.addDescription("default.junctions.radius", "Building Defaults", TL("The default turning radius of intersections"));
     102              : 
     103         2524 :     oc.doRegister("default.junctions.type", 'j', new Option_String());
     104         5048 :     oc.addSynonyme("default.junctions.type", "default-junction-type"); // default netgenerate option name
     105         5048 :     oc.addDescription("default.junctions.type", "Building Defaults", TL("[traffic_light|priority|right_before_left|left_before_right|traffic_light_right_on_red|priority_stop|allway_stop|...] Determines default junction type (see wiki/Networks/PlainXML#Node_types)"));
     106              : 
     107         2524 :     oc.doRegister("default.connection-length", new Option_Float((double) NBEdge::UNSPECIFIED_LOADED_LENGTH));
     108         5048 :     oc.addDescription("default.connection-length", "Building Defaults", TL("The default length when overriding connection lengths"));
     109              : 
     110         2524 :     oc.doRegister("default.connection.cont-pos", new Option_Float((double)NBEdge::UNSPECIFIED_CONTPOS));
     111         5048 :     oc.addDescription("default.connection.cont-pos", "Building Defaults", TL("Whether/where connections should have an internal junction"));
     112              : 
     113         5048 :     oc.doRegister("default.right-of-way", new Option_String("default"));
     114         5048 :     oc.addDescription("default.right-of-way", "Building Defaults", TL("The default algorithm for computing right of way rules ('default', 'edgePriority')"));
     115              : 
     116         2524 :     oc.doRegister("junctions.right-before-left.speed-threshold", new Option_Float(49 / 3.6));
     117         5048 :     oc.addDescription("junctions.right-before-left.speed-threshold", "Junctions", TL("Allow building right-before-left junctions when the incoming edge speeds are below FLOAT (m/s)"));
     118              : 
     119         2524 :     oc.doRegister("junctions.left-before-right", new Option_Bool(false));
     120         5048 :     oc.addDescription("junctions.left-before-right", "Junctions", TL("Build left-before-right junctions instead of right-before-left junctions"));
     121              : 
     122              :     // register the data processing options
     123         2524 :     oc.doRegister("no-internal-links", new Option_Bool(false)); // !!! not described
     124         5048 :     oc.addDescription("no-internal-links", "Junctions", TL("Omits internal links"));
     125              : 
     126         2524 :     oc.doRegister("numerical-ids", new Option_Bool(false));
     127         5048 :     oc.addDescription("numerical-ids", "Processing", TL("Remaps alphanumerical IDs of nodes and edges to ensure that all IDs are integers"));
     128              : 
     129         2524 :     oc.doRegister("numerical-ids.node-start", new Option_Integer(std::numeric_limits<int>::max()));
     130         5048 :     oc.addDescription("numerical-ids.node-start", "Processing", TL("Remaps IDs of nodes to integers starting at INT"));
     131              : 
     132         2524 :     oc.doRegister("numerical-ids.edge-start", new Option_Integer(std::numeric_limits<int>::max()));
     133         5048 :     oc.addDescription("numerical-ids.edge-start", "Processing", TL("Remaps IDs of edges to integers starting at INT"));
     134              : 
     135              :     /// @todo not working for netgen
     136         2524 :     oc.doRegister("reserved-ids", new Option_FileName());
     137         5048 :     oc.addDescription("reserved-ids", "Processing", TL("Ensures that generated ids do not included any of the typed IDs from FILE (sumo-gui selection file format)"));
     138              : 
     139         2524 :     oc.doRegister("kept-ids", new Option_FileName());
     140         5048 :     oc.addDescription("kept-ids", "Processing", TL("Ensures that objects with typed IDs from FILE (sumo-gui selection file format) are not renamed"));
     141              : 
     142         2524 :     if (!forNetgen) {
     143         2404 :         oc.doRegister("dismiss-vclasses", new Option_Bool(false));
     144         4808 :         oc.addDescription("dismiss-vclasses", "Processing", TL("Removes vehicle class restrictions from imported edges"));
     145              :     }
     146              : 
     147         2524 :     oc.doRegister("no-turnarounds", new Option_Bool(false));
     148         5048 :     oc.addDescription("no-turnarounds", "Junctions", TL("Disables building turnarounds"));
     149              : 
     150         2524 :     oc.doRegister("no-turnarounds.tls", new Option_Bool(false));
     151         5048 :     oc.addSynonyme("no-turnarounds.tls", "no-tls-turnarounds", true);
     152         5048 :     oc.addDescription("no-turnarounds.tls", "Junctions", TL("Disables building turnarounds at tls-controlled junctions"));
     153              : 
     154         2524 :     oc.doRegister("no-turnarounds.geometry", new Option_Bool(true));
     155         5048 :     oc.addDescription("no-turnarounds.geometry", "Junctions", TL("Disables building turnarounds at geometry-like junctions"));
     156              : 
     157         2524 :     oc.doRegister("no-turnarounds.except-deadend", new Option_Bool(false));
     158         5048 :     oc.addDescription("no-turnarounds.except-deadend", "Junctions", TL("Disables building turnarounds except at dead end junctions"));
     159              : 
     160         2524 :     oc.doRegister("no-turnarounds.except-turnlane", new Option_Bool(false));
     161         5048 :     oc.addDescription("no-turnarounds.except-turnlane", "Junctions", TL("Disables building turnarounds except at junctions with a dedicated turning lane"));
     162              : 
     163         2524 :     oc.doRegister("no-turnarounds.fringe", new Option_Bool(false));
     164         5048 :     oc.addDescription("no-turnarounds.fringe", "Junctions", TL("Disables building turnarounds at fringe junctions"));
     165              : 
     166         2524 :     oc.doRegister("no-left-connections", new Option_Bool(false));
     167         5048 :     oc.addDescription("no-left-connections", "Junctions", TL("Disables building connections to left"));
     168              : 
     169         2524 :     oc.doRegister("geometry.split", new Option_Bool(false)); // !!!not described
     170         5048 :     oc.addSynonyme("geometry.split", "split-geometry", true);
     171         5048 :     oc.addDescription("geometry.split", "Processing", TL("Splits edges across geometry nodes"));
     172              : 
     173         2524 :     oc.doRegister("geometry.remove", 'R', new Option_Bool(false));
     174         5048 :     oc.addSynonyme("geometry.remove", "remove-geometry", true);
     175         5048 :     oc.addDescription("geometry.remove", "Processing", TL("Replace nodes which only define edge geometry by geometry points (joins edges)"));
     176              : 
     177         2524 :     oc.doRegister("geometry.remove.keep-edges.explicit", new Option_StringVector());
     178         5048 :     oc.addDescription("geometry.remove.keep-edges.explicit", "Processing", TL("Ensure that the given list of edges is not modified"));
     179              : 
     180         2524 :     oc.doRegister("geometry.remove.keep-edges.input-file", new Option_FileName());
     181         5048 :     oc.addDescription("geometry.remove.keep-edges.input-file", "Processing",
     182              :                       "Ensure that the edges in FILE are not modified (Each id on a single line. Selection files from sumo-gui are also supported)");
     183              : 
     184         2524 :     if (!forNetgen) {
     185         2404 :         oc.doRegister("geometry.remove.keep-ptstops", new Option_Bool(false));
     186         4808 :         oc.addDescription("geometry.remove.keep-ptstops", "Processing", TL("Ensure that edges with public transport stops are not modified"));
     187              :     }
     188              : 
     189         2524 :     oc.doRegister("geometry.remove.min-length", new Option_Float(0));
     190         5048 :     oc.addDescription("geometry.remove.min-length", "Processing",
     191              :                       "Allow merging edges with differing attributes when their length is below min-length");
     192              : 
     193         2524 :     oc.doRegister("geometry.remove.width-tolerance", new Option_Float(0));
     194         5048 :     oc.addDescription("geometry.remove.width-tolerance", "Processing",
     195              :                       "Allow merging edges with differing lane widths if the difference is below FLOAT");
     196              : 
     197         2524 :     oc.doRegister("geometry.remove.max-junction-size", new Option_Float(-1));
     198         5048 :     oc.addDescription("geometry.remove.max-junction-size", "Processing",
     199              :                       "Prevent removal of junctions with a size above FLOAT as defined by custom edge endpoints");
     200              : 
     201         2524 :     oc.doRegister("geometry.max-segment-length", new Option_Float(0));
     202         5048 :     oc.addDescription("geometry.max-segment-length", "Processing", TL("splits geometry to restrict segment length"));
     203              : 
     204         2524 :     if (!forNetgen) {
     205         2404 :         oc.doRegister("geometry.min-dist", new Option_Float(-1));
     206         4808 :         oc.addDescription("geometry.min-dist", "Processing", TL("reduces too similar geometry points"));
     207              : 
     208         2404 :         oc.doRegister("geometry.max-angle", new Option_Float(99));
     209         4808 :         oc.addDescription("geometry.max-angle", "Processing", TL("Warn about edge geometries with an angle above DEGREES in successive segments"));
     210              : 
     211         2404 :         oc.doRegister("geometry.max-angle.fix", new Option_Bool(false));
     212         4808 :         oc.addDescription("geometry.max-angle.fix", "Processing", TL("Straighten edge geometries with an angle above max-angle successive segments"));
     213              : 
     214         2404 :         oc.doRegister("geometry.min-radius", new Option_Float(9));
     215         4808 :         oc.addDescription("geometry.min-radius", "Processing", TL("Warn about edge geometries with a turning radius less than METERS at the start or end"));
     216              : 
     217         2404 :         oc.doRegister("geometry.min-radius.fix", new Option_Bool(false));
     218         4808 :         oc.addDescription("geometry.min-radius.fix", "Processing", TL("Straighten edge geometries to avoid turning radii less than geometry.min-radius"));
     219              : 
     220         2404 :         oc.doRegister("geometry.min-radius.fix.railways", new Option_Bool(true));
     221         4808 :         oc.addDescription("geometry.min-radius.fix.railways", "Processing", TL("Straighten edge geometries to avoid turning radii less than geometry.min-radius (only railways)"));
     222              : 
     223         2404 :         oc.doRegister("geometry.junction-mismatch-threshold", new Option_Float(20));
     224         4808 :         oc.addDescription("geometry.junction-mismatch-threshold", "Processing", TL("Warn if the junction shape is too far away from the original node position"));
     225              : 
     226         2404 :         oc.doRegister("geometry.check-overlap", new Option_Float(0));
     227         4808 :         oc.addDescription("geometry.check-overlap", "Processing", TL("Warn if edges overlap by more than the given threshold value"));
     228              : 
     229         2404 :         oc.doRegister("geometry.check-overlap.vertical-threshold", new Option_Float(4));
     230         4808 :         oc.addDescription("geometry.check-overlap.vertical-threshold", "Processing", TL("Ignore overlapping edges if they are separated vertically by the given threshold."));
     231              : 
     232         2404 :         oc.doRegister("geometry.avoid-overlap", new Option_Bool(true));
     233         4808 :         oc.addDescription("geometry.avoid-overlap", "Processing", TL("Modify edge geometries to avoid overlap at junctions"));
     234              : 
     235         2404 :         oc.doRegister("join-lanes", new Option_Bool(false));
     236         4808 :         oc.addDescription("join-lanes", "Processing", TL("join adjacent lanes that have the same permissions and which do not admit lane-changing (sidewalks and disallowed lanes)"));
     237              : 
     238         2404 :         oc.doRegister("ptline.match-dist", new Option_Float(100));
     239         4808 :         oc.addDescription("ptline.match-dist", "Processing", TL("Matches stops outside the road network to the referencing pt line when below the given distance"));
     240              :         // railway processing options
     241              : 
     242         2404 :         oc.doRegister("railway.topology.repair", new Option_Bool(false));
     243         4808 :         oc.addDescription("railway.topology.repair", "Railway", TL("Repair topology of the railway network"));
     244              : 
     245         2404 :         oc.doRegister("railway.topology.repair.minimal", new Option_Bool(false));
     246         4808 :         oc.addDescription("railway.topology.repair.minimal", "Railway", TL("Repair topology of the railway network just enough to let loaded public transport lines to work"));
     247              : 
     248         2404 :         oc.doRegister("railway.topology.repair.connect-straight", new Option_Bool(false));
     249         4808 :         oc.addDescription("railway.topology.repair.connect-straight", "Railway", TL("Allow bidirectional rail use wherever rails with opposite directions meet at a straight angle"));
     250              : 
     251         2404 :         oc.doRegister("railway.topology.repair.stop-turn", new Option_Bool(false));
     252         4808 :         oc.addDescription("railway.topology.repair.stop-turn", "Railway", TL("Add turn-around connections at all loaded stops."));
     253              : 
     254         2404 :         oc.doRegister("railway.topology.repair.bidi-penalty", new Option_Float(1.2));
     255         4808 :         oc.addDescription("railway.topology.repair.bidi-penalty", "Railway", TL("Penalty factor for adding new bidi edges to connect public transport stops"));
     256              : 
     257         2404 :         oc.doRegister("railway.topology.all-bidi", new Option_Bool(false));
     258         4808 :         oc.addDescription("railway.topology.all-bidi", "Railway", TL("Make all rails usable in both direction"));
     259              : 
     260         2404 :         oc.doRegister("railway.topology.all-bidi.input-file", new Option_FileName());
     261         4808 :         oc.addDescription("railway.topology.all-bidi.input-file", "Railway", TL("Make all rails edge ids from FILE usable in both direction"));
     262              : 
     263         2404 :         oc.doRegister("railway.topology.direction-priority", new Option_Bool(false));
     264         4808 :         oc.addDescription("railway.topology.direction-priority", "Railway", TL("Set edge priority values based on estimated main direction"));
     265              : 
     266         2404 :         oc.doRegister("railway.topology.ptline-priority", new Option_StringVector());
     267         4808 :         oc.addDescription("railway.topology.ptline-priority", "Railway", TL("Set edge priority values based on public transport lines for the given list of vClasses"));
     268              : 
     269         2404 :         oc.doRegister("railway.topology.extend-priority", new Option_Bool(false));
     270         4808 :         oc.addDescription("railway.topology.extend-priority", "Railway", TL("Extend loaded edge priority values based on estimated main direction"));
     271              : 
     272         2404 :         oc.doRegister("railway.geometry.straighten", new Option_Bool(false));
     273         4808 :         oc.addDescription("railway.geometry.straighten", "Railway", TL("Move junctions to straighten a sequence of rail edges"));
     274              : 
     275         2404 :         oc.doRegister("railway.signal.guess.by-stops", new Option_Bool(false));
     276         4808 :         oc.addDescription("railway.signal.guess.by-stops", "Railway", TL("Guess signals that guard public transport stops"));
     277              : 
     278         4808 :         oc.doRegister("railway.signal.permit-unsignalized", new Option_StringVector({"tram", "cable_car"}));
     279         4808 :         oc.addDescription("railway.signal.permit-unsignalized", "Railway", TL("List rail classes that may run without rail signals"));
     280              : 
     281         2404 :         oc.doRegister("railway.access-distance", new Option_Float(150.f));
     282         4808 :         oc.addDescription("railway.access-distance", "Railway", TL("The search radius for finding suitable road accesses for rail stops"));
     283         4808 :         oc.addSynonyme("railway.access-distance", "osm.stop-output.footway-access-distance", true);
     284              : 
     285         2404 :         oc.doRegister("railway.max-accesses", new Option_Integer(5));
     286         4808 :         oc.addDescription("railway.max-accesses", "Railway", TL("The maximum road accesses registered per rail stops"));
     287         4808 :         oc.addSynonyme("railway.max-accesses", "osm.stop-output.footway-max-accesses", true);
     288              : 
     289         2404 :         oc.doRegister("railway.access-factor", new Option_Float(1.5));
     290         4808 :         oc.addDescription("railway.access-factor", "Railway", TL("The walking length of the access is computed as air-line distance multiplied by FLOAT"));
     291         4808 :         oc.addSynonyme("railway.access-factor", "osm.stop-output.footway-access-factor", true);
     292              : 
     293         2404 :         oc.doRegister("ptstop-output.no-bidi", new Option_Bool(false));
     294         4808 :         oc.addDescription("ptstop-output.no-bidi", "Processing", TL("Skips automatic generation of stops on the bidi-edge of a loaded stop"));
     295              :     }
     296              : 
     297         2524 :     oc.doRegister("geometry.max-grade", new Option_Float(10));
     298         5048 :     oc.addDescription("geometry.max-grade", "Processing", TL("Warn about edge geometries with a grade in % above FLOAT."));
     299              : 
     300         2524 :     oc.doRegister("geometry.max-grade.fix", new Option_Bool(true));
     301         5048 :     oc.addDescription("geometry.max-grade.fix", "Processing", TL("Smooth edge geometries with a grade above the warning threshold."));
     302              : 
     303         2524 :     oc.doRegister("offset.disable-normalization", new Option_Bool(false));
     304         5048 :     oc.addSynonyme("offset.disable-normalization", "disable-normalize-node-positions", true);
     305         5048 :     oc.addDescription("offset.disable-normalization", "Processing", TL("Turn off normalizing node positions"));
     306              : 
     307         2524 :     oc.doRegister("offset.x", new Option_Float(0));
     308         5048 :     oc.addSynonyme("offset.x", "x-offset-to-apply", true);
     309         5048 :     oc.addDescription("offset.x", "Processing", TL("Adds FLOAT to net x-positions"));
     310              : 
     311         2524 :     oc.doRegister("offset.y", new Option_Float(0));
     312         5048 :     oc.addSynonyme("offset.y", "y-offset-to-apply", true);
     313         5048 :     oc.addDescription("offset.y", "Processing", TL("Adds FLOAT to net y-positions"));
     314              : 
     315         2524 :     oc.doRegister("offset.z", new Option_Float(0));
     316         5048 :     oc.addDescription("offset.z", "Processing", TL("Adds FLOAT to net z-positions"));
     317              : 
     318         2524 :     oc.doRegister("flip-y-axis", new Option_Bool(false));
     319         5048 :     oc.addSynonyme("flip-y-axis", "flip-y");
     320         5048 :     oc.addDescription("flip-y-axis", "Processing", TL("Flips the y-coordinate along zero"));
     321              : 
     322         2524 :     oc.doRegister("roundabouts.guess", new Option_Bool(true));
     323         5048 :     oc.addSynonyme("roundabouts.guess", "guess-roundabouts", true);
     324         5048 :     oc.addDescription("roundabouts.guess", "Processing", TL("Enable roundabout-guessing"));
     325              : 
     326              :     // The Putrajaya Roundabout (Malaysia) holds the Guinness record for the world’s largest roundabout with 3.4km.
     327         2524 :     oc.doRegister("roundabouts.guess.max-length", new Option_Float(3500));
     328         5048 :     oc.addDescription("roundabouts.guess.max-length", "Processing", TL("Structures with a circumference above FLOAT threshold are not classified as roundabout"));
     329              : 
     330         2524 :     oc.doRegister("roundabouts.visibility-distance", new Option_Float(9));
     331         5048 :     oc.addDescription("roundabouts.visibility-distance", "Processing", TL("Default visibility when approaching a roundabout"));
     332              : 
     333         2524 :     oc.doRegister("opposites.guess", new Option_Bool(false));
     334         5048 :     oc.addDescription("opposites.guess", "Processing", TL("Enable guessing of opposite direction lanes usable for overtaking"));
     335              : 
     336         2524 :     oc.doRegister("opposites.guess.fix-lengths", new Option_Bool(true));
     337         5048 :     oc.addDescription("opposites.guess.fix-lengths", "Processing", TL("Ensure that opposite edges have the same length"));
     338              : 
     339         2524 :     oc.doRegister("fringe.guess", new Option_Bool(false));
     340         5048 :     oc.addDescription("fringe.guess", "Processing", TL("Enable guessing of network fringe nodes"));
     341              : 
     342         2524 :     oc.doRegister("fringe.guess.speed-threshold", new Option_Float(50 / 3.6));
     343         5048 :     oc.addDescription("fringe.guess.speed-threshold", "Processing", TL("Guess disconnected edges above the given speed as outer fringe"));
     344              : 
     345         2524 :     oc.doRegister("lefthand", new Option_Bool(false));
     346         5048 :     oc.addDescription("lefthand", "Processing", TL("Assumes left-hand traffic on the network"));
     347              : 
     348         2524 :     oc.doRegister("edges.join", new Option_Bool(false));
     349         5048 :     oc.addDescription("edges.join", "Processing",
     350         2524 :                       TL("Merges edges which connect the same nodes and are close to each other (recommended for VISSIM import)"));
     351              : 
     352         2524 :     oc.doRegister("junctions.join", new Option_Bool(false));
     353         5048 :     oc.addDescription("junctions.join", "Junctions",
     354         2524 :                       TL("Joins junctions that are close to each other (recommended for OSM import)"));
     355              : 
     356         2524 :     oc.doRegister("junctions.join-dist", new Option_Float(10));
     357         5048 :     oc.addDescription("junctions.join-dist", "Junctions",
     358         2524 :                       TL("Determines the maximal distance for joining junctions (defaults to 10)"));
     359              : 
     360         2524 :     oc.doRegister("junctions.join.parallel-threshold", new Option_Float(30));
     361         5048 :     oc.addDescription("junctions.join.parallel-threshold", "Junctions",
     362         2524 :                       TL("The angular threshold in degrees for rejection of parallel edges when joining junctions"));
     363              : 
     364         2524 :     if (!forNetgen) {
     365         2404 :         oc.doRegister("junctions.join-exclude", new Option_StringVector());
     366         4808 :         oc.addDescription("junctions.join-exclude", "Junctions", TL("Interprets STR[] as list of junctions to exclude from joining"));
     367              :     }
     368              : 
     369         2524 :     oc.doRegister("junctions.join-same", new Option_Float(-1));
     370         5048 :     oc.addDescription("junctions.join-same", "Junctions",
     371         2524 :                       TL("Joins junctions that have similar coordinates even if not connected"));
     372              : 
     373         2524 :     oc.doRegister("junctions.join-reset", new Option_Bool(false));
     374         5048 :     oc.addDescription("junctions.join-reset", "Junctions", TL("Reset connections for joined junctions"));
     375              : 
     376         2524 :     if (!forNetgen) {
     377         2404 :         oc.doRegister("junctions.attach-removed", new Option_Float(-1));
     378         4808 :         oc.addDescription("junctions.attach-removed", "Junctions",
     379         2404 :                           TL("Attach junction to the closest edge within FLOAT distance that has it's id in param removedNodeIDs (for joining networks)"));
     380              :     }
     381              : 
     382         2524 :     oc.doRegister("max-join-ids", new Option_Integer(4));
     383         5048 :     oc.addDescription("max-join-ids", "Junctions", TL("Abbreviate junction or TLS id if it joins more than INT junctions"));
     384              : 
     385         2524 :     if (!forNetgen) {
     386         2404 :         oc.doRegister("speed.offset", new Option_Float(0));
     387         4808 :         oc.addDescription("speed.offset", "Processing", TL("Modifies all edge speeds by adding FLOAT"));
     388              : 
     389         2404 :         oc.doRegister("speed.factor", new Option_Float(1));
     390         4808 :         oc.addDescription("speed.factor", "Processing", TL("Modifies all edge speeds by multiplying by FLOAT"));
     391              : 
     392         2404 :         oc.doRegister("speed.minimum", new Option_Float(0));
     393         4808 :         oc.addDescription("speed.minimum", "Processing", TL("Modifies all edge speeds to at least FLOAT"));
     394              : 
     395         2404 :         oc.doRegister("edges.join-tram-dist", new Option_Float(-1));
     396         4808 :         oc.addDescription("edges.join-tram-dist", "Processing",
     397         2404 :                           TL("Joins tram edges into road lanes with similar geometry (within FLOAT distance)"));
     398              :     }
     399              : 
     400         2524 :     oc.doRegister("junctions.corner-detail", new Option_Integer(5));
     401         5048 :     oc.addDescription("junctions.corner-detail", "Junctions", TL("Generate INT intermediate points to smooth out intersection corners"));
     402              : 
     403         2524 :     oc.doRegister("junctions.internal-link-detail", new Option_Integer(5));
     404         5048 :     oc.addDescription("junctions.internal-link-detail", "Junctions", TL("Generate INT intermediate points to smooth out lanes within the intersection"));
     405              : 
     406         2524 :     oc.doRegister("junctions.scurve-stretch", new Option_Float(0));
     407         5048 :     oc.addDescription("junctions.scurve-stretch", "Junctions", TL("Generate longer intersections to allow for smooth s-curves when the number of lanes changes"));
     408              : 
     409         2524 :     oc.doRegister("junctions.join-turns", new Option_Bool(false));
     410         5048 :     oc.addDescription("junctions.join-turns", "Junctions",
     411         2524 :                       TL("Builds common edges for turning connections with common from- and to-edge. This causes discrepancies between geometrical length and assigned length due to averaging but enables lane-changing while turning"));
     412              : 
     413         2524 :     oc.doRegister("junctions.limit-turn-speed", new Option_Float(5.5));
     414         5048 :     oc.addDescription("junctions.limit-turn-speed", "Junctions",
     415         2524 :                       TL("Limits speed on junctions to an average lateral acceleration of at most FLOAT (m/s^2)"));
     416              : 
     417         2524 :     oc.doRegister("junctions.limit-turn-speed.min-angle", new Option_Float(15));
     418         5048 :     oc.addDescription("junctions.limit-turn-speed.min-angle", "Junctions",
     419         2524 :                       TL("Do not limit turn speed for angular changes below FLOAT (degrees). The value is subtracted from the geometric angle before computing the turning radius."));
     420              : 
     421         2524 :     oc.doRegister("junctions.limit-turn-speed.min-angle.railway", new Option_Float(35));
     422         5048 :     oc.addDescription("junctions.limit-turn-speed.min-angle.railway", "Junctions",
     423         2524 :                       TL("Do not limit turn speed for angular changes below FLOAT (degrees) on railway edges. The value is subtracted from the geometric angle before computing the turning radius."));
     424              : 
     425         2524 :     oc.doRegister("junctions.limit-turn-speed.warn.straight", new Option_Float(5));
     426         5048 :     oc.addDescription("junctions.limit-turn-speed.warn.straight", "Junctions",
     427         2524 :                       TL("Warn about turn speed limits that reduce the speed of straight connections by more than FLOAT"));
     428              : 
     429         2524 :     oc.doRegister("junctions.limit-turn-speed.warn.turn", new Option_Float(22));
     430         5048 :     oc.addDescription("junctions.limit-turn-speed.warn.turn", "Junctions",
     431         2524 :                       TL("Warn about turn speed limits that reduce the speed of turning connections (no u-turns) by more than FLOAT"));
     432              : 
     433         2524 :     oc.doRegister("junctions.small-radius", new Option_Float(1.5));
     434         5048 :     oc.addDescription("junctions.small-radius", "Junctions",
     435         2524 :                       TL("Default radius for junctions that do not require wide vehicle turns"));
     436              : 
     437         2524 :     oc.doRegister("junctions.higher-speed", new Option_Bool(false));
     438         5048 :     oc.addDescription("junctions.higher-speed", "Junctions",
     439         2524 :                       TL("Use maximum value of incoming and outgoing edge speed on junction instead of average"));
     440              : 
     441         2524 :     oc.doRegister("junctions.minimal-shape", new Option_Bool(false));
     442         5048 :     oc.addDescription("junctions.minimal-shape", "Junctions",
     443         2524 :                       TL("Build junctions with minimal shapes (ignoring edge overlap)"));
     444              : 
     445         2524 :     oc.doRegister("junctions.endpoint-shape", new Option_Bool(false));
     446         5048 :     oc.addDescription("junctions.endpoint-shape", "Junctions",
     447         2524 :                       TL("Build junction shapes based on edge endpoints (ignoring edge overlap)"));
     448              : 
     449         2524 :     oc.doRegister("internal-junctions.vehicle-width", new Option_Float(1.8));
     450         5048 :     oc.addDescription("internal-junctions.vehicle-width", "Junctions",
     451         2524 :                       TL("Assumed vehicle width for computing internal junction positions"));
     452              : 
     453         2524 :     oc.doRegister("rectangular-lane-cut", new Option_Bool(false));
     454         5048 :     oc.addDescription("rectangular-lane-cut", "Junctions", TL("Forces rectangular cuts between lanes and intersections"));
     455              : 
     456         2524 :     oc.doRegister("check-lane-foes.roundabout", new Option_Bool(true));
     457         5048 :     oc.addDescription("check-lane-foes.roundabout", "Junctions",
     458         2524 :                       TL("Allow driving onto a multi-lane road if there are foes on other lanes (at roundabouts)"));
     459              : 
     460         2524 :     oc.doRegister("check-lane-foes.all", new Option_Bool(false));
     461         5048 :     oc.addDescription("check-lane-foes.all", "Junctions",
     462         2524 :                       TL("Allow driving onto a multi-lane road if there are foes on other lanes (everywhere)"));
     463              : 
     464         2524 :     oc.doRegister("sidewalks.guess", new Option_Bool(false));
     465         5048 :     oc.addDescription("sidewalks.guess", "Pedestrian",
     466         2524 :                       TL("Guess pedestrian sidewalks based on edge speed"));
     467              : 
     468         2524 :     oc.doRegister("sidewalks.guess.max-speed", new Option_Float((double) 13.89));
     469         5048 :     oc.addDescription("sidewalks.guess.max-speed", "Pedestrian",
     470         2524 :                       TL("Add sidewalks for edges with a speed equal or below the given limit"));
     471              : 
     472         2524 :     oc.doRegister("sidewalks.guess.min-speed", new Option_Float((double) 5.8));
     473         5048 :     oc.addDescription("sidewalks.guess.min-speed", "Pedestrian",
     474         2524 :                       TL("Add sidewalks for edges with a speed above the given limit"));
     475              : 
     476         2524 :     oc.doRegister("sidewalks.guess.from-permissions", new Option_Bool(false));
     477         5048 :     oc.addDescription("sidewalks.guess.from-permissions", "Pedestrian",
     478         2524 :                       TL("Add sidewalks for edges that allow pedestrians on any of their lanes regardless of speed"));
     479              : 
     480         2524 :     oc.doRegister("sidewalks.guess.exclude", new Option_StringVector());
     481         5048 :     oc.addDescription("sidewalks.guess.exclude", "Pedestrian",
     482         2524 :                       TL("Do not guess sidewalks for the given list of edges"));
     483              : 
     484         2524 :     oc.doRegister("bikelanes.guess", new Option_Bool(false));
     485         5048 :     oc.addDescription("bikelanes.guess", "Bicycle",
     486         2524 :                       TL("Guess bike lanes based on edge speed"));
     487              : 
     488         2524 :     oc.doRegister("bikelanes.guess.max-speed", new Option_Float((double) 22.22));
     489         5048 :     oc.addDescription("bikelanes.guess.max-speed", "Bicycle",
     490         2524 :                       TL("Add bike lanes for edges with a speed equal or below the given limit"));
     491              : 
     492         2524 :     oc.doRegister("bikelanes.guess.min-speed", new Option_Float((double) 5.8));
     493         5048 :     oc.addDescription("bikelanes.guess.min-speed", "Bicycle",
     494         2524 :                       TL("Add bike lanes for edges with a speed above the given limit"));
     495              : 
     496         2524 :     oc.doRegister("bikelanes.guess.from-permissions", new Option_Bool(false));
     497         5048 :     oc.addDescription("bikelanes.guess.from-permissions", "Bicycle",
     498         2524 :                       TL("Add bike lanes for edges that allow bicycles on any of their lanes regardless of speed"));
     499              : 
     500         2524 :     oc.doRegister("bikelanes.guess.exclude", new Option_StringVector());
     501         5048 :     oc.addDescription("bikelanes.guess.exclude", "Bicycle",
     502         2524 :                       TL("Do not guess bikelanes for the given list of edges"));
     503              : 
     504         2524 :     oc.doRegister("crossings.guess", new Option_Bool(false));
     505         5048 :     oc.addDescription("crossings.guess", "Pedestrian",
     506         2524 :                       TL("Guess pedestrian crossings based on the presence of sidewalks"));
     507              : 
     508         2524 :     oc.doRegister("crossings.guess.speed-threshold", new Option_Float(13.89));
     509         5048 :     oc.addDescription("crossings.guess.speed-threshold", "Pedestrian",
     510         2524 :                       TL("At uncontrolled nodes, do not build crossings across edges with a speed above the threshold"));
     511              : 
     512         2524 :     oc.doRegister("crossings.guess.roundabout-priority", new Option_Bool(true));
     513         5048 :     oc.addDescription("crossings.guess.roundabout-priority", "Pedestrian",
     514         2524 :                       TL("Give priority to guessed crossings at roundabouts"));
     515              : 
     516         2524 :     oc.doRegister("walkingareas", new Option_Bool(false));
     517         5048 :     oc.addDescription("walkingareas", "Pedestrian", TL("Always build walking areas even if there are no crossings"));
     518              : 
     519         2524 :     oc.doRegister("walkingareas.join-dist", new Option_Float(15));
     520         5048 :     oc.addDescription("walkingareas.join-dist", "Pedestrian", TL("Do not create a walkingarea between sidewalks that are connected by a pedestrian junction within FLOAT"));
     521              : 
     522              :     // tls setting options
     523              :     // explicit tls
     524         2524 :     oc.doRegister("tls.set", new Option_StringVector());
     525         5048 :     oc.addSynonyme("tls.set", "explicite-tls", true);
     526         5048 :     oc.addDescription("tls.set", "TLS Building", TL("Interprets STR[] as list of junctions to be controlled by TLS"));
     527              : 
     528         2524 :     oc.doRegister("tls.unset", new Option_StringVector());
     529         5048 :     oc.addSynonyme("tls.unset", "explicite-no-tls", true);
     530         5048 :     oc.addDescription("tls.unset", "TLS Building", TL("Interprets STR[] as list of junctions to be not controlled by TLS"));
     531              : 
     532              :     // tls-guessing
     533         2524 :     oc.doRegister("tls.guess", new Option_Bool(false));
     534         5048 :     oc.addSynonyme("tls.guess", "guess-tls", true);
     535         5048 :     oc.addDescription("tls.guess", "TLS Building", TL("Turns on TLS guessing"));
     536              : 
     537         2524 :     oc.doRegister("tls.guess.threshold", new Option_Float(250 / 3.6));
     538         5048 :     oc.addDescription("tls.guess.threshold", "TLS Building", TL("Sets minimum value for the sum of all incoming lane speeds when guessing TLS"));
     539              : 
     540         2524 :     if (!forNetgen) {
     541         2404 :         oc.doRegister("tls.taz-nodes", new Option_Bool(false));
     542         4808 :         oc.addSynonyme("tls.taz-nodes", "tls-guess.district-nodes", true);
     543         4808 :         oc.addDescription("tls.taz-nodes", "TLS Building", TL("Sets district nodes as tls-controlled")); // !!! describe
     544              :     }
     545              : 
     546         2524 :     oc.doRegister("tls.guess.joining", new Option_Bool(false));
     547         5048 :     oc.addSynonyme("tls.guess.joining", "tls-guess.joining", true);
     548         5048 :     oc.addDescription("tls.guess.joining", "TLS Building", TL("Includes node clusters into guess")); // !!! describe
     549              : 
     550         2524 :     oc.doRegister("tls.join", new Option_Bool(false));
     551         5048 :     oc.addSynonyme("tls.join", "try-join-tls", true);
     552         5048 :     oc.addDescription("tls.join", "TLS Building", TL("Tries to cluster tls-controlled nodes")); // !!! describe
     553              : 
     554         2524 :     oc.doRegister("tls.join-dist", new Option_Float(20));
     555         5048 :     oc.addDescription("tls.join-dist", "TLS Building",
     556         2524 :                       TL("Determines the maximal distance for joining traffic lights (defaults to 20)"));
     557              : 
     558         2524 :     oc.doRegister("tls.join-exclude", new Option_StringVector());
     559         5048 :     oc.addDescription("tls.join-exclude", "TLS Building", TL("Interprets STR[] as list of tls ids to exclude from joining"));
     560              : 
     561         2524 :     oc.doRegister("tls.uncontrolled-within", new Option_Bool(false));
     562         5048 :     oc.addDescription("tls.uncontrolled-within", "TLS Building",
     563         2524 :                       TL("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"));
     564              : 
     565         2524 :     oc.doRegister("tls.ignore-internal-junction-jam", new Option_Bool(false));
     566         5048 :     oc.addDescription("tls.ignore-internal-junction-jam", "TLS Building",
     567         2524 :                       TL("Do not build mutually conflicting response matrix, potentially ignoring vehicles that are stuck at an internal junction when their phase has ended"));
     568              : 
     569         2524 :     if (!forNetgen) {
     570         2404 :         oc.doRegister("tls.guess-signals", new Option_Bool(false));
     571         4808 :         oc.addDescription("tls.guess-signals", "TLS Building", TL("Interprets tls nodes surrounding an intersection as signal positions for a larger TLS. This is typical pattern for OSM-derived networks"));
     572              : 
     573         2404 :         oc.doRegister("tls.guess-signals.dist", new Option_Float(25));
     574         4808 :         oc.addDescription("tls.guess-signals.dist", "TLS Building", TL("Distance for interpreting nodes as signal locations"));
     575              : 
     576         2404 :         oc.doRegister("tls.guess-signals.slack", new Option_Integer(0));
     577         4808 :         oc.addDescription("tls.guess-signals.slack", "TLS Building", TL("Number of uncontrolled entry edges to accept and still consider the central node as a traffic light"));
     578              :     }
     579              : 
     580              : 
     581              :     // computational
     582         2524 :     oc.doRegister("tls.cycle.time", new Option_Integer(90));
     583         5048 :     oc.addDescription("tls.cycle.time", "TLS Building", TL("Use INT as cycle duration"));
     584              : 
     585         2524 :     oc.doRegister("tls.green.time", new Option_Integer(31));
     586         5048 :     oc.addSynonyme("tls.green.time", "traffic-light-green", true);
     587         5048 :     oc.addDescription("tls.green.time", "TLS Building", TL("Use INT as green phase duration"));
     588              : 
     589         2524 :     oc.doRegister("tls.yellow.min-decel", 'D', new Option_Float(3.0));
     590         5048 :     oc.addSynonyme("tls.yellow.min-decel", "min-decel", true);
     591         5048 :     oc.addDescription("tls.yellow.min-decel", "TLS Building", TL("Defines smallest vehicle deceleration"));
     592              : 
     593         2524 :     oc.doRegister("tls.yellow.patch-small", new Option_Bool(false));
     594         5048 :     oc.addSynonyme("tls.yellow.patch-small", "patch-small-tyellow", true);
     595         5048 :     oc.addDescription("tls.yellow.patch-small", "TLS Building", TL("Given yellow times are patched even if being too short"));
     596              : 
     597         2524 :     oc.doRegister("tls.yellow.time", new Option_Integer(-1));
     598         5048 :     oc.addSynonyme("tls.yellow.time", "traffic-light-yellow", true);
     599         5048 :     oc.addDescription("tls.yellow.time", "TLS Building", TL("Set INT as fixed time for yellow phase durations"));
     600              : 
     601         2524 :     oc.doRegister("tls.red.time", new Option_Integer(5));
     602         5048 :     oc.addDescription("tls.red.time", "TLS Building", TL("Set INT as fixed time for red phase duration at traffic lights that do not have a conflicting flow"));
     603              : 
     604         2524 :     oc.doRegister("tls.allred.time", new Option_Integer(0));
     605         5048 :     oc.addDescription("tls.allred.time", "TLS Building", TL("Set INT as fixed time for intermediate red phase after every switch"));
     606              : 
     607         2524 :     oc.doRegister("tls.minor-left.max-speed", new Option_Float(19.44)); // 70km/h
     608         5048 :     oc.addDescription("tls.minor-left.max-speed", "TLS Building", TL("Use FLOAT as threshold for allowing left-turning vehicles to move in the same phase as oncoming straight-going vehicles"));
     609              : 
     610         2524 :     oc.doRegister("tls.left-green.time", new Option_Integer(6));
     611         5048 :     oc.addDescription("tls.left-green.time", "TLS Building", TL("Use INT as green phase duration for left turns (s). Setting this value to 0 disables additional left-turning phases"));
     612              : 
     613         2524 :     oc.doRegister("tls.nema.vehExt", new Option_Integer(2));
     614         5048 :     oc.addDescription("tls.nema.vehExt", "TLS Building", TL("Set INT as fixed time for intermediate vehext phase after every switch"));
     615              : 
     616         2524 :     oc.doRegister("tls.nema.yellow", new Option_Integer(3));
     617         5048 :     oc.addDescription("tls.nema.yellow", "TLS Building", TL("Set INT as fixed time for intermediate NEMA yellow phase after every switch"));
     618              : 
     619         2524 :     oc.doRegister("tls.nema.red", new Option_Integer(2));
     620         5048 :     oc.addDescription("tls.nema.red", "TLS Building", TL("Set INT as fixed time for intermediate NEMA red phase after every switch"));
     621              : 
     622         2524 :     oc.doRegister("tls.crossing-min.time", new Option_Integer(4));
     623         5048 :     oc.addDescription("tls.crossing-min.time", "TLS Building", TL("Use INT as minimum green duration for pedestrian crossings (s)."));
     624              : 
     625         2524 :     oc.doRegister("tls.crossing-clearance.time", new Option_Integer(5));
     626         5048 :     oc.addDescription("tls.crossing-clearance.time", "TLS Building", TL("Use INT as clearance time for pedestrian crossings (s)."));
     627              : 
     628         2524 :     oc.doRegister("tls.scramble.time", new Option_Integer(5));
     629         5048 :     oc.addDescription("tls.scramble.time", "TLS Building", TL("Use INT as green phase duration for pedestrian scramble phase (s)."));
     630              : 
     631              :     // tls-shifts
     632         2524 :     oc.doRegister("tls.half-offset", new Option_StringVector());
     633         5048 :     oc.addSynonyme("tls.half-offset", "tl-logics.half-offset", true);
     634         5048 :     oc.addDescription("tls.half-offset", "TLS Building", TL("TLSs in STR[] will be shifted by half-phase"));
     635              : 
     636         2524 :     oc.doRegister("tls.quarter-offset", new Option_StringVector());
     637         5048 :     oc.addSynonyme("tls.quarter-offset", "tl-logics.quarter-offset", true);
     638         5048 :     oc.addDescription("tls.quarter-offset", "TLS Building", TL("TLSs in STR[] will be shifted by quarter-phase"));
     639              : 
     640              :     // tls type
     641         5048 :     oc.doRegister("tls.default-type", new Option_String("static"));
     642         5048 :     oc.addDescription("tls.default-type", "TLS Building", TL("TLSs with unspecified type will use STR as their algorithm"));
     643              : 
     644         5048 :     oc.doRegister("tls.layout", new Option_String("opposites"));
     645         5048 :     oc.addDescription("tls.layout", "TLS Building", TL("Set phase layout four grouping opposite directions or grouping all movements for one incoming edge ['opposites', 'incoming']"));
     646              : 
     647         2524 :     oc.doRegister("tls.no-mixed", new Option_Bool(false));
     648         5048 :     oc.addDescription("tls.no-mixed", "TLS Building", TL("Avoid phases with green and red signals for different connections from the same lane"));
     649              : 
     650         2524 :     oc.doRegister("tls.min-dur", new Option_Integer(5));
     651         5048 :     oc.addDescription("tls.min-dur", "TLS Building", TL("Default minimum phase duration for traffic lights with variable phase length"));
     652              : 
     653         2524 :     oc.doRegister("tls.max-dur", new Option_Integer(50));
     654         5048 :     oc.addDescription("tls.max-dur", "TLS Building", TL("Default maximum phase duration for traffic lights with variable phase length"));
     655              : 
     656         2524 :     oc.doRegister("tls.group-signals", new Option_Bool(false));
     657         5048 :     oc.addDescription("tls.group-signals", "TLS Building", TL("Assign the same tls link index to connections that share the same states"));
     658              : 
     659         2524 :     oc.doRegister("tls.ungroup-signals", new Option_Bool(false));
     660         5048 :     oc.addDescription("tls.ungroup-signals", "TLS Building", TL("Assign a distinct tls link index to every connection"));
     661              : 
     662         2524 :     oc.doRegister("tls.rebuild", new Option_Bool(false));
     663         5048 :     oc.addDescription("tls.rebuild", "TLS Building", TL("rebuild all traffic light plans in the network"));
     664              : 
     665              :     // edge pruning
     666         2524 :     oc.doRegister("keep-edges.min-speed", new Option_Float(-1));
     667         5048 :     oc.addSynonyme("keep-edges.min-speed", "edges-min-speed", true);
     668         5048 :     oc.addDescription("keep-edges.min-speed", "Edge Removal", TL("Only keep edges with speed in meters/second > FLOAT"));
     669              : 
     670         2524 :     oc.doRegister("remove-edges.explicit", new Option_StringVector());
     671         5048 :     oc.addSynonyme("remove-edges.explicit", "remove-edges");
     672         5048 :     oc.addDescription("remove-edges.explicit", "Edge Removal", TL("Remove edges in STR[]"));
     673              : 
     674         2524 :     oc.doRegister("keep-edges.explicit", new Option_StringVector());
     675         5048 :     oc.addSynonyme("keep-edges.explicit", "keep-edges");
     676         5048 :     oc.addDescription("keep-edges.explicit", "Edge Removal", TL("Only keep edges in STR[] or those which are kept due to other keep-edges or remove-edges options"));
     677              : 
     678         2524 :     oc.doRegister("keep-edges.input-file", new Option_FileName());
     679         5048 :     oc.addDescription("keep-edges.input-file", "Edge Removal", TL("Only keep edges in FILE (Each id on a single line. Selection files from sumo-gui are also supported) or those which are kept due to other keep-edges or remove-edges options"));
     680              : 
     681         2524 :     oc.doRegister("remove-edges.input-file", new Option_FileName());
     682         5048 :     oc.addDescription("remove-edges.input-file", "Edge Removal", TL("Remove edges in FILE. (Each id on a single line. Selection files from sumo-gui are also supported)"));
     683              : 
     684         2524 :     if (!forNetgen) {
     685         2404 :         oc.doRegister("keep-edges.postload", new Option_Bool(false));
     686         4808 :         oc.addDescription("keep-edges.postload", "Edge Removal", TL("Remove edges after loading, patching and joining"));
     687              :     }
     688              : 
     689         2524 :     oc.doRegister("keep-edges.in-boundary", new Option_StringVector());
     690         5048 :     oc.addDescription("keep-edges.in-boundary", "Edge Removal", TL("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,...>)"));
     691              : 
     692         2524 :     oc.doRegister("keep-edges.in-geo-boundary", new Option_StringVector());
     693         5048 :     oc.addDescription("keep-edges.in-geo-boundary", "Edge Removal", TL("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,...>)"));
     694              : 
     695         2524 :     if (!forNetgen) {
     696         2404 :         oc.doRegister("keep-edges.by-vclass", new Option_StringVector());
     697         4808 :         oc.addDescription("keep-edges.by-vclass", "Edge Removal", TL("Only keep edges which allow one of the vclasses in STR[]"));
     698              : 
     699         2404 :         oc.doRegister("remove-edges.by-vclass", new Option_StringVector());
     700         4808 :         oc.addDescription("remove-edges.by-vclass", "Edge Removal", TL("Remove edges which allow only vclasses from STR[]"));
     701              : 
     702         2404 :         oc.doRegister("keep-edges.by-type", new Option_StringVector());
     703         4808 :         oc.addDescription("keep-edges.by-type", "Edge Removal", TL("Only keep edges where type is in STR[]"));
     704              : 
     705         2404 :         oc.doRegister("keep-edges.components", new Option_Integer(0));
     706         4808 :         oc.addDescription("keep-edges.components", "Edge Removal", TL("Only keep the INT largest weakly connected components"));
     707              : 
     708         2404 :         oc.doRegister("remove-edges.by-type", new Option_StringVector());
     709         4808 :         oc.addDescription("remove-edges.by-type", "Edge Removal", TL("Remove edges where type is in STR[]"));
     710              : 
     711         2404 :         oc.doRegister("remove-edges.isolated", new Option_Bool(false));
     712         4808 :         oc.addSynonyme("remove-edges.isolated", "remove-isolated", true);
     713         4808 :         oc.addDescription("remove-edges.isolated", "Edge Removal", TL("Removes isolated edges"));
     714              :     }
     715              : 
     716         2524 :     oc.doRegister("keep-lanes.min-width", new Option_Float(0.01));
     717         5048 :     oc.addDescription("keep-lanes.min-width", "Edge Removal", TL("Only keep lanes with width in meters > FLOAT"));
     718              : 
     719              : 
     720              :     // unregulated nodes options
     721         2524 :     oc.doRegister("keep-nodes-unregulated", new Option_Bool(false));
     722         5048 :     oc.addSynonyme("keep-nodes-unregulated", "keep-unregulated");
     723         5048 :     oc.addDescription("keep-nodes-unregulated", "Unregulated Nodes", TL("All nodes will be unregulated"));
     724              : 
     725         2524 :     oc.doRegister("keep-nodes-unregulated.explicit", new Option_StringVector());
     726         5048 :     oc.addSynonyme("keep-nodes-unregulated.explicit", "keep-unregulated.explicit");
     727         5048 :     oc.addSynonyme("keep-nodes-unregulated.explicit", "keep-unregulated.nodes", true);
     728         5048 :     oc.addDescription("keep-nodes-unregulated.explicit", "Unregulated Nodes", TL("Do not regulate nodes in STR[]"));
     729              : 
     730         2524 :     oc.doRegister("keep-nodes-unregulated.district-nodes", new Option_Bool(false));
     731         5048 :     oc.addSynonyme("keep-nodes-unregulated.district-nodes", "keep-unregulated.district-nodes");
     732         5048 :     oc.addDescription("keep-nodes-unregulated.district-nodes", "Unregulated Nodes", TL("Do not regulate district nodes"));
     733              : 
     734              :     // ramp guessing options
     735         2524 :     if (!forNetgen) {
     736         2404 :         oc.doRegister("ramps.guess", new Option_Bool(false));
     737         4808 :         oc.addSynonyme("ramps.guess", "guess-ramps", true);
     738         4808 :         oc.addDescription("ramps.guess", "Ramp Guessing", TL("Enable ramp-guessing"));
     739              : 
     740         2404 :         oc.doRegister("ramps.guess-acceleration-lanes", new Option_Bool(true));
     741         4808 :         oc.addDescription("ramps.guess-acceleration-lanes", "Ramp Guessing", TL("Guess on-ramps and mark acceleration lanes if they exist but do not add new lanes"));
     742              : 
     743         2404 :         oc.doRegister("ramps.max-ramp-speed", new Option_Float(-1));
     744         4808 :         oc.addSynonyme("ramps.max-ramp-speed", "ramp-guess.max-ramp-speed", true);
     745         4808 :         oc.addDescription("ramps.max-ramp-speed", "Ramp Guessing", TL("Treat edges with speed > FLOAT as no ramps"));
     746              : 
     747         2404 :         oc.doRegister("ramps.min-highway-speed", new Option_Float((double)(79 / 3.6)));
     748         4808 :         oc.addSynonyme("ramps.min-highway-speed", "ramp-guess.min-highway-speed", true);
     749         4808 :         oc.addDescription("ramps.min-highway-speed", "Ramp Guessing", TL("Treat edges with speed < FLOAT as no highways"));
     750              : 
     751         2404 :         oc.doRegister("ramps.ramp-length", new Option_Float(100));
     752         4808 :         oc.addSynonyme("ramps.ramp-length", "ramp-guess.ramp-length", true);
     753         4808 :         oc.addDescription("ramps.ramp-length", "Ramp Guessing", TL("Use FLOAT as ramp-length"));
     754              : 
     755              :         //The Weaving Length Limit for Short Free Onramps, Chiu Liu, Zhongren WangPhD even suggest 70m
     756         2404 :         oc.doRegister("ramps.min-weave-length", new Option_Float(50));
     757         4808 :         oc.addDescription("ramps.min-weave-length", "Ramp Guessing", TL("Use FLOAT as minimum ramp-length"));
     758              : 
     759         2404 :         oc.doRegister("ramps.set", new Option_StringVector());
     760         4808 :         oc.addSynonyme("ramps.set", "ramp-guess.explicite", true);
     761         4808 :         oc.addDescription("ramps.set", "Ramp Guessing", TL("Tries to handle the given edges as ramps"));
     762              : 
     763         2404 :         oc.doRegister("ramps.unset", new Option_StringVector());
     764         4808 :         oc.addDescription("ramps.unset", "Ramp Guessing", TL("Do not consider the given edges as ramps"));
     765              : 
     766         2404 :         oc.doRegister("ramps.no-split", new Option_Bool(false));
     767         4808 :         oc.addSynonyme("ramps.no-split", "ramp-guess.no-split", true);
     768         4808 :         oc.addDescription("ramps.no-split", "Ramp Guessing", TL("Avoids edge splitting"));
     769              :     }
     770         2524 : }
     771              : 
     772              : 
     773              : bool
     774         2499 : NBFrame::checkOptions(OptionsCont& oc) {
     775              :     bool ok = true;
     776              :     //
     777         4998 :     if (!SUMOXMLDefinitions::TrafficLightTypes.hasString(oc.getString("tls.default-type"))) {
     778            0 :         WRITE_ERRORF(TL("unsupported value '%' for option '--tls.default-type'"), oc.getString("tls.default-type"));
     779              :         ok = false;
     780              :     }
     781         2509 :     if (oc.isSet("keep-edges.in-boundary") && oc.isSet("keep-edges.in-geo-boundary")) {
     782            0 :         WRITE_ERROR(TL("only one of the options 'keep-edges.in-boundary' or 'keep-edges.in-geo-boundary' may be given"));
     783              :         ok = false;
     784              :     }
     785         2973 :     if (oc.getBool("no-internal-links") && oc.getBool("crossings.guess")) {
     786            2 :         WRITE_ERROR(TL("only one of the options 'no-internal-links' or 'crossings.guess' may be given"));
     787              :         ok = false;
     788              :     }
     789         2973 :     if (oc.getBool("no-internal-links") && oc.getBool("walkingareas")) {
     790            0 :         WRITE_ERROR(TL("only one of the options 'no-internal-links' or 'walkareas' may be given"));
     791              :         ok = false;
     792              :     }
     793         2503 :     if (!oc.isDefault("tls.green.time") && !oc.isDefault("tls.cycle.time")) {
     794            0 :         WRITE_ERROR(TL("only one of the options 'tls.green.time' or 'tls.cycle.time' may be given"));
     795              :         ok = false;
     796              :     }
     797         4998 :     if (oc.getInt("tls.green.time") <= 0) {
     798            2 :         WRITE_ERROR(TL("'tls.green.time' must be positive"));
     799              :         ok = false;
     800              :     }
     801         4998 :     if (oc.getInt("default.lanenumber") < 1) {
     802            2 :         WRITE_ERROR(TL("default.lanenumber must be at least 1"));
     803              :         ok = false;
     804              :     }
     805         2502 :     if (!oc.isDefault("default.lanewidth") && oc.getFloat("default.lanewidth") < POSITION_EPS) {
     806            3 :         WRITE_ERROR("default.lanewidth must be at least " + toString(POSITION_EPS));
     807              :         ok = false;
     808              :     }
     809         2507 :     if (!oc.isDefault("default.disallow") && !oc.isDefault("default.allow")) {
     810            0 :         WRITE_ERROR(TL("only one of the options 'default.disallow' or 'default.allow' may be given"));
     811              :         ok = false;
     812              :     }
     813         4998 :     if (oc.getInt("junctions.internal-link-detail") < 2) {
     814            0 :         WRITE_ERROR(TL("junctions.internal-link-detail must >= 2"));
     815              :         ok = false;
     816              :     }
     817         4998 :     if (oc.getFloat("junctions.scurve-stretch") > 0) {
     818            4 :         if (oc.getBool("no-internal-links")) {
     819            0 :             WRITE_WARNING(TL("Option 'junctions.scurve-stretch' requires internal lanes to work. Option '--no-internal-links' will be disabled."));
     820              :         }
     821              :         // make sure the option is set so heuristics cannot ignore it
     822            4 :         oc.set("no-internal-links", "false");
     823              :     }
     824         2504 :     if (oc.getFloat("junctions.small-radius") > oc.getFloat("default.junctions.radius") && oc.getFloat("default.junctions.radius") >= 0) {
     825            6 :         if (!oc.isDefault("junctions.small-radius")) {
     826            2 :             WRITE_WARNING(TL("option 'default.junctions.radius' is smaller than option 'junctions.small-radius'"));
     827              :         } else {
     828            6 :             oc.setDefault("junctions.small-radius", oc.getValueString("default.junctions.radius"));
     829              :         }
     830              :     }
     831         4998 :     if (oc.getString("tls.layout") != "opposites"
     832         2505 :             && oc.getString("tls.layout") != "incoming"
     833         2505 :             && oc.getString("tls.layout") != "alternateOneWay") {
     834            0 :         WRITE_ERROR(TL("tls.layout must be 'opposites', 'incoming' or 'alternateOneWay'"));
     835              :         ok = false;
     836              :     }
     837         5000 :     if (!oc.isDefault("default.right-of-way") &&
     838         2505 :             !SUMOXMLDefinitions::RightOfWayValues.hasString(oc.getString("default.right-of-way"))) {
     839            0 :         WRITE_ERRORF(TL("default.right-of-way must be one of '%'"), toString(SUMOXMLDefinitions::RightOfWayValues.getStrings()));
     840              :         ok = false;
     841              :     }
     842         2501 :     if (oc.getFloat("roundabouts.visibility-distance") < 0 && oc.getFloat("roundabouts.visibility-distance") != NBEdge::UNSPECIFIED_VISIBILITY_DISTANCE) {
     843            0 :         WRITE_ERROR(TL("roundabouts.visibility-distance must be positive or -1"));
     844              :         ok = false;
     845              :     }
     846         4849 :     if (oc.isDefault("railway.topology.repair") && oc.getBool("railway.topology.repair.connect-straight")) {
     847            0 :         oc.setDefault("railway.topology.repair", "true");
     848              :     }
     849         4849 :     if (oc.isDefault("railway.topology.repair") && oc.getBool("railway.topology.repair.minimal")) {
     850            6 :         oc.setDefault("railway.topology.repair", "true");
     851              :     }
     852         7256 :     if (oc.isDefault("railway.topology.all-bidi") && !oc.isDefault("railway.topology.all-bidi.input-file")) {
     853            2 :         oc.setDefault("railway.topology.all-bidi", "true");
     854              :     }
     855         7233 :     if (oc.isDefault("railway.topology.repair.stop-turn") && !oc.isDefault("railway.topology.repair")) {
     856           72 :         oc.setDefault("railway.topology.repair.stop-turn", "true");
     857              :     }
     858         4998 :     if (!SUMOXMLDefinitions::LaneSpreadFunctions.hasString(oc.getString("default.spreadtype"))) {
     859            0 :         WRITE_ERRORF(TL("Unknown value for default.spreadtype '%'."), oc.getString("default.spreadtype"));
     860              :         ok = false;
     861              :     }
     862              :     // check whether the junction type to use is properly set
     863         4998 :     if (oc.isSet("default.junctions.type")) {
     864           18 :         std::string type = oc.getString("default.junctions.type");
     865           50 :         if (type != toString(SumoXMLNodeType::TRAFFIC_LIGHT) &&
     866           46 :                 type != toString(SumoXMLNodeType::TRAFFIC_LIGHT_NOJUNCTION) &&
     867           46 :                 type != toString(SumoXMLNodeType::TRAFFIC_LIGHT_RIGHT_ON_RED) &&
     868           43 :                 type != toString(SumoXMLNodeType::PRIORITY) &&
     869           40 :                 type != toString(SumoXMLNodeType::PRIORITY_STOP) &&
     870           39 :                 type != toString(SumoXMLNodeType::ALLWAY_STOP) &&
     871           38 :                 type != toString(SumoXMLNodeType::ZIPPER) &&
     872           38 :                 type != toString(SumoXMLNodeType::NOJUNCTION) &&
     873           38 :                 type != toString(SumoXMLNodeType::RAIL_SIGNAL) &&
     874           38 :                 type != toString(SumoXMLNodeType::RAIL_CROSSING) &&
     875           38 :                 type != toString(SumoXMLNodeType::LEFT_BEFORE_RIGHT) &&
     876           35 :                 type != toString(SumoXMLNodeType::RIGHT_BEFORE_LEFT) &&
     877           50 :                 type != toString(SumoXMLNodeType::NOJUNCTION) &&
     878           32 :                 type != toString(SumoXMLNodeType::UNKNOWN)) {
     879           98 :             WRITE_ERROR("Only the following junction types are known: " +
     880              :                         toString(SumoXMLNodeType::TRAFFIC_LIGHT) + ", " +
     881              :                         toString(SumoXMLNodeType::TRAFFIC_LIGHT_NOJUNCTION) + ", " +
     882              :                         toString(SumoXMLNodeType::TRAFFIC_LIGHT_RIGHT_ON_RED) + ", " +
     883              :                         toString(SumoXMLNodeType::PRIORITY) + ", " +
     884              :                         toString(SumoXMLNodeType::PRIORITY_STOP) + ", " +
     885              :                         toString(SumoXMLNodeType::ALLWAY_STOP) + ", " +
     886              :                         toString(SumoXMLNodeType::ZIPPER) + ", " +
     887              :                         toString(SumoXMLNodeType::NOJUNCTION) + ", " +
     888              :                         toString(SumoXMLNodeType::RAIL_SIGNAL) + ", " +
     889              :                         toString(SumoXMLNodeType::RAIL_CROSSING) + ", " +
     890              :                         toString(SumoXMLNodeType::LEFT_BEFORE_RIGHT) + ", " +
     891              :                         toString(SumoXMLNodeType::RIGHT_BEFORE_LEFT) + ", " +
     892              :                         toString(SumoXMLNodeType::UNKNOWN));
     893              :             ok = false;
     894              :         }
     895              :     }
     896         2499 :     return ok;
     897              : }
     898              : 
     899              : /****************************************************************************/
        

Generated by: LCOV version 2.0-1