Eclipse SUMO - Simulation of Urban MObility
NWWriter_MATSim.h
Go to the documentation of this file.
1 /****************************************************************************/
2 // Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
3 // Copyright (C) 2001-2019 German Aerospace Center (DLR) and others.
4 // This program and the accompanying materials
5 // are made available under the terms of the Eclipse Public License v2.0
6 // which accompanies this distribution, and is available at
7 // http://www.eclipse.org/legal/epl-v20.html
8 // SPDX-License-Identifier: EPL-2.0
9 /****************************************************************************/
15 // Exporter writing networks using the MATSim format
16 /****************************************************************************/
17 #ifndef NWWriter_MATSim_h
18 #define NWWriter_MATSim_h
19 
20 
21 // ===========================================================================
22 // included modules
23 // ===========================================================================
24 #include <config.h>
25 
26 #include <string>
27 #include <map>
30 
31 
32 // ===========================================================================
33 // class declarations
34 // ===========================================================================
35 class NBEdge;
36 class NBEdgeCont;
37 class NBNetBuilder;
38 class NBNode;
39 class NBNodeCont;
41 class NBTypeCont;
42 class OptionsCont;
43 
44 
45 // ===========================================================================
46 // class definitions
47 // ===========================================================================
54 public:
60  static void writeNetwork(const OptionsCont& oc, NBNetBuilder& nb);
61 
62 };
63 
64 
65 #endif
66 
67 /****************************************************************************/
68 
NBEdgeCont
Storage for edges, including some functionality operating on multiple edges.
Definition: NBEdgeCont.h:60
NBNetBuilder
Instance responsible for building networks.
Definition: NBNetBuilder.h:109
NBTrafficLightLogicCont
A container for traffic light definitions and built programs.
Definition: NBTrafficLightLogicCont.h:57
SUMOSAXHandler.h
NBNodeCont
Container for nodes during the netbuilding process.
Definition: NBNodeCont.h:59
NBEdge
The representation of a single edge during network building.
Definition: NBEdge.h:91
UtilExceptions.h
OptionsCont
A storage for options typed value containers)
Definition: OptionsCont.h:89
NWWriter_MATSim
Exporter writing networks using the MATSim format.
Definition: NWWriter_MATSim.h:53
NBTypeCont
A storage for available types of edges.
Definition: NBTypeCont.h:54
config.h
NBNode
Represents a single node (junction) during network building.
Definition: NBNode.h:67
NWWriter_MATSim::writeNetwork
static void writeNetwork(const OptionsCont &oc, NBNetBuilder &nb)
Writes the network into a MATSim-file.
Definition: NWWriter_MATSim.cpp:42