Eclipse SUMO - Simulation of Urban MObility
PCLoaderVisum.h
Go to the documentation of this file.
1 /****************************************************************************/
2 // Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
3 // Copyright (C) 2001-2024 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 /****************************************************************************/
19 // A reader of pois and polygons stored in VISUM-format
20 /****************************************************************************/
21 #pragma once
22 #include <config.h>
23 
24 #include <string>
25 #include "PCPolyContainer.h"
26 #include "PCTypeMap.h"
27 
28 
29 // ===========================================================================
30 // class definitions
31 // ===========================================================================
32 class OptionsCont;
33 
34 
35 // ===========================================================================
36 // class declarations
37 // ===========================================================================
43 public:
56  static void loadIfSet(OptionsCont& oc, PCPolyContainer& toFill,
57  PCTypeMap& tm);
58 
59 
60 protected:
67  static void load(const std::string& file, OptionsCont& oc, PCPolyContainer& toFill,
68  PCTypeMap& tm);
69 
70 
75  enum VISUM_KEY {
113  // polyconvert keys added to avoid warnings
117  VISUM_NO // must be the last one
118  };
119 
122 
125 
126  static void loadLanguage(const std::string& file);
127 };
A storage for options typed value containers)
Definition: OptionsCont.h:89
A reader of pois and polygons stored in VISUM-format.
Definition: PCLoaderVisum.h:42
@ VISUM_DISTRICT_CONNECTION
Definition: PCLoaderVisum.h:94
static StringBijection< VISUM_KEY >::Entry KEYS_DE[]
Strings for the keywords.
static void loadLanguage(const std::string &file)
static void load(const std::string &file, OptionsCont &oc, PCPolyContainer &toFill, PCTypeMap &tm)
Parses pois/polys stored within the given file.
static StringBijection< VISUM_KEY > KEYS
link directions
static void loadIfSet(OptionsCont &oc, PCPolyContainer &toFill, PCTypeMap &tm)
Loads pois/polygons assumed to be stored using VISUM-format.
A storage for loaded polygons and pois.
A storage for type mappings.
Definition: PCTypeMap.h:42