Eclipse SUMO - Simulation of Urban MObility
PCLoaderDlrNavteq.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 DLR-Navteq (Elmar)-format
20 /****************************************************************************/
21 #pragma once
22 #include <config.h>
23 
24 #include <string>
25 #include "PCPolyContainer.h"
26 #include "PCTypeMap.h"
28 
29 
30 // ===========================================================================
31 // class definitions
32 // ===========================================================================
33 class OptionsCont;
34 
35 
36 // ===========================================================================
37 // class declarations
38 // ===========================================================================
48 public:
66  static void loadIfSet(OptionsCont& oc, PCPolyContainer& toFill,
67  PCTypeMap& tm);
68 
69 
70 protected:
81  static void loadPOIFiles(OptionsCont& oc, PCPolyContainer& toFill,
82  PCTypeMap& tm);
83 
84 
95  static void loadPolyFiles(OptionsCont& oc, PCPolyContainer& toFill,
96  PCTypeMap& tm);
97 
98 
106  static void loadPOIFile(const std::string& file,
107  OptionsCont& oc, PCPolyContainer& toFill,
108  PCTypeMap& tm);
109 
110 
118  static void loadPolyFile(const std::string& file,
119  OptionsCont& oc, PCPolyContainer& toFill,
120  PCTypeMap& tm);
121 
122 
123 };
A storage for options typed value containers)
Definition: OptionsCont.h:89
A reader of pois and polygons stored in DLR-Navteq (Elmar)-format.
static void loadPOIFile(const std::string &file, OptionsCont &oc, PCPolyContainer &toFill, PCTypeMap &tm)
Loads DLR-Navteq (Elmar)-pois from the given file.
static void loadPOIFiles(OptionsCont &oc, PCPolyContainer &toFill, PCTypeMap &tm)
Loads pois assumed to be stored as according DLR-Navteq (Elmar)-files.
static void loadPolyFiles(OptionsCont &oc, PCPolyContainer &toFill, PCTypeMap &tm)
Loads polygons assumed to be stored as according DLR-Navteq (Elmar)-files.
static void loadPolyFile(const std::string &file, OptionsCont &oc, PCPolyContainer &toFill, PCTypeMap &tm)
Loads DLR-Navteq (Elmar)-polygons from the given file.
static void loadIfSet(OptionsCont &oc, PCPolyContainer &toFill, PCTypeMap &tm)
Loads pois/polygons assumed to be stored as according DLR-Navteq (Elmar)-files.
A storage for loaded polygons and pois.
A storage for type mappings.
Definition: PCTypeMap.h:42