SUMO - Simulation of Urban MObility
marouter_main.cpp
Go to the documentation of this file.
1 /****************************************************************************/
10 // Main for MAROUTER
11 /****************************************************************************/
12 // SUMO, Simulation of Urban MObility; see http://sumo.dlr.de/
13 // Copyright (C) 2001-2015 DLR (http://www.dlr.de/) and contributors
14 /****************************************************************************/
15 //
16 // This file is part of SUMO.
17 // SUMO is free software: you can redistribute it and/or modify
18 // it under the terms of the GNU General Public License as published by
19 // the Free Software Foundation, either version 3 of the License, or
20 // (at your option) any later version.
21 //
22 /****************************************************************************/
23 
24 
25 // ===========================================================================
26 // included modules
27 // ===========================================================================
28 #ifdef _MSC_VER
29 #include <windows_config.h>
30 #else
31 #include <config.h>
32 #endif
33 
34 #ifdef HAVE_VERSION_H
35 #include <version.h>
36 #endif
37 
38 #include <xercesc/sax/SAXException.hpp>
39 #include <xercesc/sax/SAXParseException.hpp>
41 #include <iostream>
42 #include <string>
43 #include <limits.h>
44 #include <ctime>
45 #include <vector>
46 #include <router/ROLoader.h>
47 #include <router/RONet.h>
48 #include <router/ROEdge.h>
53 #include <utils/vehicle/CHRouter.h>
56 #include <utils/options/Option.h>
62 #include <utils/common/ToString.h>
63 #include <utils/xml/XMLSubSys.h>
65 #include <utils/options/Option.h>
68 #include <od/ODCell.h>
69 #include <od/ODDistrict.h>
70 #include <od/ODDistrictCont.h>
71 #include <od/ODDistrictHandler.h>
72 #include <od/ODMatrix.h>
74 
75 #include "ROMAFrame.h"
76 #include "ROMAAssignments.h"
77 #include "ROMAEdgeBuilder.h"
78 #include "ROMARouteHandler.h"
79 #include "ROMAEdge.h"
80 
81 #ifdef CHECK_MEMORY_LEAKS
82 #include <foreign/nvwa/debug_new.h>
83 #endif // CHECK_MEMORY_LEAKS
84 
85 
86 // ===========================================================================
87 // functions
88 // ===========================================================================
89 /* -------------------------------------------------------------------------
90  * data processing methods
91  * ----------------------------------------------------------------------- */
97 void
98 initNet(RONet& net, ROLoader& loader, OptionsCont& oc) {
99  // load the net
100  ROMAEdgeBuilder builder;
101  ROEdge::setGlobalOptions(oc.getBool("weights.interpolate"), false);
102  loader.loadNet(net, builder);
103  // initialize the travel times
104  /* const SUMOTime begin = string2time(oc.getString("begin"));
105  const SUMOTime end = string2time(oc.getString("end"));
106  for (std::map<std::string, ROEdge*>::const_iterator i = net.getEdgeMap().begin(); i != net.getEdgeMap().end(); ++i) {
107  (*i).second->addTravelTime(STEPS2TIME(begin), STEPS2TIME(end), (*i).second->getLength() / (*i).second->getSpeed());
108  }*/
109  // load the weights when wished/available
110  if (oc.isSet("weight-files")) {
111  loader.loadWeights(net, "weight-files", oc.getString("weight-attribute"), false, oc.getBool("weights.expand"));
112  }
113  if (oc.isSet("lane-weight-files")) {
114  loader.loadWeights(net, "lane-weight-files", oc.getString("weight-attribute"), true, oc.getBool("weights.expand"));
115  }
116 }
117 
118 SUMOReal
119 getTravelTime(const ROEdge* const edge, const ROVehicle* const /* veh */, SUMOReal /* time */) {
120  return edge->getLength() / edge->getSpeed();
121 }
122 
123 
127 void
129  std::ofstream outFile(oc.getString("all-pairs-output").c_str(), std::ios::binary);
130  // build the router
132  Dijkstra router(net.getEdgeNo(), oc.getBool("ignore-errors"), &getTravelTime);
133  ConstROEdgeVector into;
134  const int numInternalEdges = net.getInternalEdgeNumber();
135  const int numTotalEdges = (int)net.getEdgeNo();
136  for (int i = numInternalEdges; i < numTotalEdges; i++) {
137  const Dijkstra::EdgeInfo& ei = router.getEdgeInfo(i);
138  if (ei.edge->getFunc() != ROEdge::ET_INTERNAL) {
139  router.compute(ei.edge, 0, 0, 0, into);
140  for (int j = numInternalEdges; j < numTotalEdges; j++) {
141  FileHelpers::writeFloat(outFile, router.getEdgeInfo(j).traveltime);
142  }
143  }
144  }
145 }
146 
147 
151 void
152 writeInterval(OutputDevice& dev, const SUMOTime begin, const SUMOTime end, const RONet& net, const ROVehicle* const veh) {
154  for (std::map<std::string, ROEdge*>::const_iterator i = net.getEdgeMap().begin(); i != net.getEdgeMap().end(); ++i) {
155  ROMAEdge* edge = static_cast<ROMAEdge*>(i->second);
156  if (edge->getFunc() == ROEdge::ET_NORMAL) {
158  const SUMOReal traveltime = edge->getTravelTime(veh, STEPS2TIME(begin));
159  const SUMOReal flow = edge->getFlow(STEPS2TIME(begin));
160  dev.writeAttr("traveltime", traveltime);
161  dev.writeAttr("speed", edge->getLength() / traveltime);
162  dev.writeAttr("entered", flow);
163  dev.writeAttr("flowCapacityRatio", 100. * flow / ROMAAssignments::getCapacity(edge));
164  dev.closeTag();
165  }
166  }
167  dev.closeTag();
168 }
169 
170 
174 void
176  // build the router
178  const std::string measure = oc.getString("weight-attribute");
179  const std::string routingAlgorithm = oc.getString("routing-algorithm");
180  const SUMOTime begin = string2time(oc.getString("begin"));
181  const SUMOTime end = string2time(oc.getString("end"));
182  if (measure == "traveltime") {
183  if (routingAlgorithm == "dijkstra") {
184  if (net.hasPermissions()) {
185  if (oc.getInt("paths") > 1) {
187  net.getEdgeNo(), oc.getBool("ignore-errors"), &ROMAAssignments::getPenalizedTT);
188  } else {
190  net.getEdgeNo(), oc.getBool("ignore-errors"), &ROEdge::getTravelTimeStatic);
191  }
192  } else {
193  if (oc.getInt("paths") > 1) {
195  net.getEdgeNo(), oc.getBool("ignore-errors"), &ROMAAssignments::getPenalizedTT);
196  } else {
198  net.getEdgeNo(), oc.getBool("ignore-errors"), &ROEdge::getTravelTimeStatic);
199  }
200  }
201  } else if (routingAlgorithm == "astar") {
202  if (net.hasPermissions()) {
203  if (oc.getInt("paths") > 1) {
205  net.getEdgeNo(), oc.getBool("ignore-errors"), &ROMAAssignments::getPenalizedTT);
206  } else {
208  net.getEdgeNo(), oc.getBool("ignore-errors"), &ROEdge::getTravelTimeStatic);
209  }
210  } else {
211  if (oc.getInt("paths") > 1) {
213  net.getEdgeNo(), oc.getBool("ignore-errors"), &ROMAAssignments::getPenalizedTT);
214  } else {
216  net.getEdgeNo(), oc.getBool("ignore-errors"), &ROEdge::getTravelTimeStatic);
217  }
218  }
219  } else if (routingAlgorithm == "CH") {
220  const SUMOTime weightPeriod = (oc.isSet("weight-files") ?
221  string2time(oc.getString("weight-period")) :
223  if (net.hasPermissions()) {
225  net.getEdgeNo(), oc.getBool("ignore-errors"), &ROEdge::getTravelTimeStatic, SVC_IGNORING, weightPeriod, true);
226  } else {
228  net.getEdgeNo(), oc.getBool("ignore-errors"), &ROEdge::getTravelTimeStatic, SVC_IGNORING, weightPeriod, false);
229  }
230  } else if (routingAlgorithm == "CHWrapper") {
231  const SUMOTime weightPeriod = (oc.isSet("weight-files") ?
232  string2time(oc.getString("weight-period")) :
234 
236  net.getEdgeNo(), oc.getBool("ignore-errors"), &ROEdge::getTravelTimeStatic, begin, weightPeriod);
237  } else {
238  throw ProcessError("Unknown routing Algorithm '" + routingAlgorithm + "'!");
239  }
240 
241  } else {
243  if (measure == "CO") {
244  op = &ROEdge::getEmissionEffort<PollutantsInterface::CO>;
245  } else if (measure == "CO2") {
246  op = &ROEdge::getEmissionEffort<PollutantsInterface::CO2>;
247  } else if (measure == "PMx") {
248  op = &ROEdge::getEmissionEffort<PollutantsInterface::PM_X>;
249  } else if (measure == "HC") {
250  op = &ROEdge::getEmissionEffort<PollutantsInterface::HC>;
251  } else if (measure == "NOx") {
252  op = &ROEdge::getEmissionEffort<PollutantsInterface::NO_X>;
253  } else if (measure == "fuel") {
254  op = &ROEdge::getEmissionEffort<PollutantsInterface::FUEL>;
255  } else if (measure == "noise") {
257  } else {
258  throw ProcessError("Unknown measure (weight attribute '" + measure + "')!");
259  }
260  if (net.hasPermissions()) {
261  if (oc.getInt("paths") > 1) {
264  } else {
266  net.getEdgeNo(), oc.getBool("ignore-errors"), op, &ROEdge::getTravelTimeStatic);
267  }
268  } else {
269  if (oc.getInt("paths") > 1) {
272  } else {
274  net.getEdgeNo(), oc.getBool("ignore-errors"), op, &ROEdge::getTravelTimeStatic);
275  }
276  }
277  }
278  // prepare the output
279  net.openOutput(oc.isSet("output-file") ? oc.getString("output-file") : "", "", "");
280  // process route definitions
281  try {
282  if (oc.isSet("timeline")) {
283  matrix.applyCurve(matrix.parseTimeLine(oc.getStringVector("timeline"), oc.getBool("timeline.day-in-hours")));
284  }
285  matrix.sortByBeginTime();
286  ROVehicle defaultVehicle(SUMOVehicleParameter(), 0, net.getVehicleTypeSecure(DEFAULT_VTYPE_ID), &net);
287  ROMAAssignments a(begin, end, oc.getBool("additive-traffic"), oc.getFloat("weight-adaption"), net, matrix, *router);
288  a.resetFlows();
289  const std::string assignMethod = oc.getString("assignment-method");
290  if (assignMethod == "incremental") {
291  a.incremental(oc.getInt("max-iterations"));
292  } else if (assignMethod == "SUE") {
293  a.sue(oc.getInt("max-iterations"), oc.getInt("max-inner-iterations"),
294  oc.getInt("paths"), oc.getFloat("paths.penalty"), oc.getFloat("tolerance"), oc.getString("route-choice-method"));
295  }
296  // update path costs and output
297  bool haveOutput = false;
298  OutputDevice* dev = net.getRouteOutput();
299  if (dev != 0) {
300  int num = 0;
301  for (std::vector<ODCell*>::const_iterator i = matrix.getCells().begin(); i != matrix.getCells().end(); ++i) {
302  const ODCell* const c = *i;
303  if (c->departures.empty()) {
304  dev->openTag(SUMO_TAG_FLOW).writeAttr(SUMO_ATTR_ID, oc.getString("prefix") + toString(num++));
307  matrix.writeDefaultAttrs(*dev, oc.getBool("ignore-vehicle-type"), c);
309  for (std::vector<RORoute*>::const_iterator j = c->pathsVector.begin(); j != c->pathsVector.end(); ++j) {
310  (*j)->setCosts(router->recomputeCosts((*j)->getEdgeVector(), &defaultVehicle, string2time(oc.getString("begin"))));
311  (*j)->writeXMLDefinition(*dev, 0, true, false);
312  }
313  dev->closeTag();
314  dev->closeTag();
315  } else {
316  for (std::map<SUMOTime, std::vector<std::string> >::const_iterator deps = c->departures.begin(); deps != c->departures.end(); ++deps) {
317  const std::string routeDistId = c->origin + "_" + c->destination + "_" + time2string(c->begin) + "_" + time2string(c->end);
318  for (std::vector<std::string>::const_iterator id = deps->second.begin(); id != deps->second.end(); ++id) {
320  matrix.writeDefaultAttrs(*dev, oc.getBool("ignore-vehicle-type"), c);
322  for (std::vector<RORoute*>::const_iterator j = c->pathsVector.begin(); j != c->pathsVector.end(); ++j) {
323  (*j)->setCosts(router->recomputeCosts((*j)->getEdgeVector(), &defaultVehicle, string2time(oc.getString("begin"))));
324  (*j)->writeXMLDefinition(*dev, 0, true, false);
325  }
326  dev->closeTag();
327  dev->closeTag();
328  }
329  }
330  }
331  }
332  haveOutput = true;
333  }
334  if (OutputDevice::createDeviceByOption("netload-output", "meandata")) {
335  if (oc.getBool("additive-traffic")) {
336  writeInterval(OutputDevice::getDeviceByOption("netload-output"), begin, end, net, a.getDefaultVehicle());
337  } else {
338  SUMOTime lastCell = 0;
339  for (std::vector<ODCell*>::const_iterator i = matrix.getCells().begin(); i != matrix.getCells().end(); ++i) {
340  if ((*i)->end > lastCell) {
341  lastCell = (*i)->end;
342  }
343  }
344  const SUMOTime interval = string2time(OptionsCont::getOptions().getString("aggregation-interval"));
345  for (SUMOTime start = begin; start < MIN2(end, lastCell); start += interval) {
346  writeInterval(OutputDevice::getDeviceByOption("netload-output"), start, start + interval, net, a.getDefaultVehicle());
347  }
348  }
349  haveOutput = true;
350  }
351  if (!haveOutput) {
352  throw ProcessError("No output file given.");
353  }
354  // end the processing
355  net.cleanup(router);
356  } catch (ProcessError&) {
357  net.cleanup(router);
358  throw;
359  }
360 }
361 
362 
363 /* -------------------------------------------------------------------------
364  * main
365  * ----------------------------------------------------------------------- */
366 int
367 main(int argc, char** argv) {
369  oc.setApplicationDescription("Import O/D-matrices for macroscopic traffic assignment");
370  oc.setApplicationName("marouter", "SUMO marouter Version " + getBuildName(VERSION_STRING));
371  int ret = 0;
372  RONet* net = 0;
373  try {
374  XMLSubSys::init();
376  OptionsIO::setArgs(argc, argv);
378  if (oc.processMetaOptions(argc < 2)) {
380  return 0;
381  }
382  XMLSubSys::setValidation(oc.getString("xml-validation"), oc.getString("xml-validation.net"));
384  if (!ROMAFrame::checkOptions()) {
385  throw ProcessError();
386  }
388  // load data
389  ROLoader loader(oc, false, false);
390  net = new RONet();
391  initNet(*net, loader, oc);
392  if (oc.isSet("all-pairs-output")) {
393  computeAllPairs(*net, oc);
394  if (net->getDistricts().empty()) {
395  delete net;
397  if (ret == 0) {
398  std::cout << "Success." << std::endl;
399  }
400  return ret;
401  }
402  }
403  if (net->getDistricts().empty()) {
404  throw ProcessError("No districts loaded.");
405  }
406  // load districts
407  ODDistrictCont districts;
408  districts.makeDistricts(net->getDistricts());
409  // load the matrix
410  ODMatrix matrix(districts);
411  matrix.loadMatrix(oc);
412  ROMARouteHandler handler(matrix);
413  matrix.loadRoutes(oc, handler);
414  if (matrix.getNoLoaded() == 0) {
415  throw ProcessError("No vehicles loaded.");
416  }
417  if (MsgHandler::getErrorInstance()->wasInformed() && !oc.getBool("ignore-errors")) {
418  throw ProcessError("Loading failed.");
419  }
421  WRITE_MESSAGE(toString(matrix.getNoLoaded()) + " vehicles loaded.");
422 
423  // build routes and parse the incremental rates if the incremental method is choosen.
424  try {
425  computeRoutes(*net, oc, matrix);
426  } catch (XERCES_CPP_NAMESPACE::SAXParseException& e) {
427  WRITE_ERROR(toString(e.getLineNumber()));
428  ret = 1;
429  } catch (XERCES_CPP_NAMESPACE::SAXException& e) {
430  WRITE_ERROR(TplConvert::_2str(e.getMessage()));
431  ret = 1;
432  }
433  if (MsgHandler::getErrorInstance()->wasInformed() || ret != 0) {
434  throw ProcessError();
435  }
436  } catch (const ProcessError& e) {
437  if (std::string(e.what()) != std::string("Process Error") && std::string(e.what()) != std::string("")) {
438  WRITE_ERROR(e.what());
439  }
440  MsgHandler::getErrorInstance()->inform("Quitting (on error).", false);
441  ret = 1;
442  }
443 
444  delete net;
446  if (ret == 0) {
447  std::cout << "Success." << std::endl;
448  }
449  return ret;
450 }
451 
452 
453 
454 /****************************************************************************/
455 
SUMOReal getNoLoaded() const
Returns the number of loaded vehicles.
Definition: ODMatrix.cpp:467
Computes the shortest path through a contracted network.
Definition: CHRouter.h:74
OutputDevice & writeAttr(const SumoXMLAttr attr, const T &val)
writes a named attribute
Definition: OutputDevice.h:257
std::vector< std::string > getStringVector(const std::string &name) const
Returns the list of string-vector-value of the named option (only for Option_String) ...
bool hasPermissions() const
Definition: RONet.cpp:636
static void init()
Initialises the xml-subsystem.
Definition: XMLSubSys.cpp:58
Computes the shortest path through a network using the Dijkstra algorithm.
static MsgHandler * getErrorInstance()
Returns the instance to add errors to.
Definition: MsgHandler.cpp:80
long long int SUMOTime
Definition: SUMOTime.h:43
OutputDevice * getRouteOutput(const bool alternative=false)
Definition: RONet.h:414
const std::map< std::string, std::pair< std::vector< std::string >, std::vector< std::string > > > & getDistricts() const
Retrieves all TAZ (districts) from the network.
Definition: RONet.h:146
void computeRoutes(RONet &net, OptionsCont &oc, ODMatrix &matrix)
SUMOReal getFlow(const SUMOReal time) const
Definition: ROMAEdge.h:93
assignment methods
size_t getEdgeNo() const
Returns the total number of edges the network contains including internal edges.
Definition: RONet.cpp:618
static SUMOReal getNoiseEffort(const ROEdge *const edge, const ROVehicle *const veh, SUMOReal time)
Definition: ROEdge.cpp:184
static void setValidation(const std::string &validationScheme, const std::string &netValidationScheme)
Enables or disables validation.
Definition: XMLSubSys.cpp:69
Interface for building instances of duarouter-edges.
void makeDistricts(const std::map< std::string, std::pair< std::vector< std::string >, std::vector< std::string > > > &districts)
create districts from description
void setApplicationDescription(const std::string &appDesc)
Sets the application description.
bool getBool(const std::string &name) const
Returns the boolean-value of the named option (only for Option_Bool)
int main(int argc, char **argv)
SUMOReal getTravelTime(const ROEdge *const edge, const ROVehicle *const , SUMOReal)
static std::ostream & writeFloat(std::ostream &strm, SUMOReal value)
Writes a float binary.
std::string time2string(SUMOTime t)
Definition: SUMOTime.cpp:61
Computes the shortest path through a network using the A* algorithm.
Definition: AStarRouter.h:71
EdgeFunc getFunc() const
Returns the function of the edge.
Definition: ROEdge.h:186
static bool checkOptions()
Checks set options from the OptionsCont-singleton for being valid for usage within duarouter...
Definition: ROMAFrame.cpp:284
void computeAllPairs(RONet &net, OptionsCont &oc)
An internal edge which models vehicles driving across a junction. This is currently not used for rout...
Definition: ROEdge.h:93
SUMOReal getFloat(const std::string &name) const
Returns the SUMOReal-value of the named option (only for Option_Float)
std::vector< const ROEdge * > ConstROEdgeVector
Definition: ROEdge.h:59
Parser and container for routes during their loading.
std::vector< RORoute * > pathsVector
the list of paths / routes
Definition: ODCell.h:78
const std::string DEFAULT_VTYPE_ID
static void close()
Closes all of an applications subsystems.
Computes the shortest path through a network using the Dijkstra algorithm.
const std::map< std::string, ROEdge * > & getEdgeMap() const
Definition: RONet.cpp:630
static void setArgs(int argc, char **argv)
Stores the command line arguments for later parsing.
Definition: OptionsIO.cpp:64
static OptionsCont & getOptions()
Retrieves the options.
Definition: OptionsCont.cpp:69
static void initRandGlobal(MTRand *which=0)
Reads the given random number options and initialises the random number generator in accordance...
Definition: RandHelper.cpp:68
void loadMatrix(OptionsCont &oc)
read a matrix in one of several formats
Definition: ODMatrix.cpp:513
void openOutput(const std::string &filename, const std::string altFilename, const std::string typeFilename)
Opens the output for computed routes.
Definition: RONet.cpp:207
std::string getString(const std::string &name) const
Returns the string-value of the named option (only for Option_String)
const std::string & getID() const
Returns the id.
Definition: Named.h:65
A vehicle as used by router.
Definition: ROVehicle.h:60
#define max(a, b)
Definition: polyfonts.c:65
A single O/D-matrix cell.
Definition: ODCell.h:58
void initNet(RONet &net, ROLoader &loader, OptionsCont &oc)
std::string origin
Name of the origin district.
Definition: ODCell.h:69
static SUMOReal getPenalizedTT(const ROEdge *const e, const ROVehicle *const v, SUMOReal t)
Returns the traveltime on an edge including penalties.
static std::string _2str(const E *const data)
Definition: TplConvert.h:56
An O/D (origin/destination) matrix.
Definition: ODMatrix.h:75
The data loader.
Definition: ROLoader.h:63
bool processMetaOptions(bool missingOptions)
Checks for help and configuration output, returns whether we should exit.
const std::string getBuildName(const std::string &version)
attach some build flags to the version string
Definition: StdDefs.cpp:91
#define STEPS2TIME(x)
Definition: SUMOTime.h:65
void loadRoutes(OptionsCont &oc, SUMOSAXHandler &handler)
read SUMO routes
Definition: ODMatrix.cpp:559
SUMOTime string2time(const std::string &r)
Definition: SUMOTime.cpp:48
A container for districts.
T MIN2(T a, T b)
Definition: StdDefs.h:73
SUMOReal vehicleNumber
The number of vehicles.
Definition: ODCell.h:60
std::map< SUMOTime, std::vector< std::string > > departures
mapping of departure times to departing vehicles, if already fixed
Definition: ODCell.h:81
void writeInterval(OutputDevice &dev, const SUMOTime begin, const SUMOTime end, const RONet &net, const ROVehicle *const veh)
void sortByBeginTime()
Definition: ODMatrix.cpp:606
static SUMOReal getTravelTime(const ROEdge *const e, const ROVehicle *const v, SUMOReal t)
Returns the traveltime on an edge without penalties.
std::string toString(const T &t, std::streamsize accuracy=OUTPUT_ACCURACY)
Definition: ToString.h:53
static SUMOReal getPenalizedEffort(const ROEdge *const e, const ROVehicle *const v, SUMOReal t)
Returns the effort to pass an edge including penalties.
SUMOTime begin
The begin time this cell describes.
Definition: ODCell.h:63
virtual void loadNet(RONet &toFill, ROAbstractEdgeBuilder &eb)
Loads the network.
Definition: ROLoader.cpp:124
A basic edge for routing applications.
Definition: ROEdge.h:73
int getInternalEdgeNumber() const
Returns the number of internal edges the network contains.
Definition: RONet.cpp:624
#define VERSION_STRING
Definition: config.h:226
#define WRITE_ERROR(msg)
Definition: MsgHandler.h:205
static void fillOptions()
Inserts options used by duarouter into the OptionsCont-singleton.
Definition: ROMAFrame.cpp:57
static void getOptions()
Parses the command line arguments and loads the configuration.
Definition: OptionsIO.cpp:71
static SUMOReal getCapacity(const ROEdge *edge)
The router&#39;s network representation.
Definition: RONet.h:72
Structure representing possible vehicle parameter.
SUMOReal getLength() const
Returns the length of the edge.
Definition: ROEdge.h:194
static OutputDevice & getDeviceByOption(const std::string &name)
Returns the device described by the option.
void inform(std::string msg, bool addType=true)
adds a new error to the list
Definition: MsgHandler.cpp:89
A storage for options typed value containers)
Definition: OptionsCont.h:108
void applyCurve(const Distribution_Points &ps)
Splits the stored cells dividing them on the given time line.
Definition: ODMatrix.cpp:500
static void setGlobalOptions(bool interpolate, bool isParallel)
Definition: ROEdge.h:409
static bool createDeviceByOption(const std::string &optionName, const std::string &rootElement="", const std::string &schemaFile="")
Creates the device using the output definition stored in the named option.
Static storage of an output device and its base (abstract) implementation.
Definition: OutputDevice.h:71
virtual SUMOReal recomputeCosts(const std::vector< const E * > &edges, const V *const v, SUMOTime msTime) const =0
std::string destination
Name of the destination district.
Definition: ODCell.h:72
bool closeTag()
Closes the most recently opened tag.
#define SUMOReal
Definition: config.h:214
SUMOVTypeParameter * getVehicleTypeSecure(const std::string &id)
Retrieves the named vehicle type.
Definition: RONet.cpp:252
SUMOReal getTravelTime(const ROVehicle *const veh, SUMOReal time) const
Returns the travel time for this edge.
Definition: ROEdge.cpp:160
A normal edge.
Definition: ROEdge.h:81
SUMOTime end
The end time this cell describes.
Definition: ODCell.h:66
int getInt(const std::string &name) const
Returns the int-value of the named option (only for Option_Integer)
void clear()
Clears information whether an error occured previously.
Definition: MsgHandler.cpp:149
#define WRITE_MESSAGE(msg)
Definition: MsgHandler.h:201
void cleanup(SUMOAbstractRouter< ROEdge, ROVehicle > *router)
closes the file output for computed routes and deletes routers and associated threads if necessary ...
Definition: RONet.cpp:226
static void initOutputOptions()
Definition: MsgHandler.cpp:197
A basic edge for routing applications.
Definition: ROMAEdge.h:65
bool loadWeights(RONet &net, const std::string &optionName, const std::string &measure, const bool useLanes, const bool boundariesOverride)
Loads the net weights.
Definition: ROLoader.cpp:268
SUMOReal getSpeed() const
Returns the speed allowed on this edge.
Definition: ROEdge.h:209
vehicles ignoring classes
OutputDevice & openTag(const std::string &xmlElement)
Opens an XML tag.
Distribution_Points parseTimeLine(const std::vector< std::string > &def, bool timelineDayInHours)
split the given timeline
Definition: ODMatrix.cpp:576
bool isSet(const std::string &name, bool failOnNonExistant=true) const
Returns the information whether the named option is set.
Computes the shortest path through a contracted network.
static SUMOReal getTravelTimeStatic(const ROEdge *const edge, const ROVehicle *const veh, SUMOReal time)
Returns the travel time for the given edge.
Definition: ROEdge.h:365
void setApplicationName(const std::string &appName, const std::string &fullName)
Sets the application name.