Eclipse SUMO - Simulation of Urban MObility
Loading...
Searching...
No Matches
polyconvert_main.cpp
Go to the documentation of this file.
1/****************************************************************************/
2// Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
3// Copyright (C) 2005-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/****************************************************************************/
22// Main for POLYCONVERT
23/****************************************************************************/
24#include <config.h>
25
26#ifdef HAVE_VERSION_H
27#include <version.h>
28#endif
29
30#include <iostream>
31#include <string>
44#include <utils/geom/Boundary.h>
46#include <utils/xml/XMLSubSys.h>
55#include <polyconvert/pc_typemap.h>
56
57
58// ===========================================================================
59// method definitions
60// ===========================================================================
61void
64 oc.addCallExample("-c <CONFIGURATION>", "run with configuration options set in file");
65
66 // insert options sub-topics
67 SystemFrame::addConfigurationOptions(oc); // fill this subtopic, too
68 oc.addOptionSubTopic("Input");
69 oc.addOptionSubTopic("Output");
71 oc.addOptionSubTopic("Pruning");
72 oc.addOptionSubTopic("Processing");
73 oc.addOptionSubTopic("Building Defaults");
74
75
76 // register options
77 // add i/o options
78 // original network
79 oc.doRegister("net-file", 'n', new Option_FileName());
80 oc.addSynonyme("net-file", "net");
81 oc.addDescription("net-file", "Input", TL("Loads SUMO-network FILE as reference to offset and projection"));
82
83 // dlrnavteq import
84 oc.doRegister("dlr-navteq-poly-files", new Option_FileName());
85 oc.addDescription("dlr-navteq-poly-files", "Input", TL("Reads polygons from FILE assuming they're coded in DLR-Navteq (Elmar)-format"));
86 oc.doRegister("dlr-navteq-poi-files", new Option_FileName());
87 oc.addDescription("dlr-navteq-poi-files", "Input", TL("Reads pois from FILE assuming they're coded in DLR-Navteq (Elmar)-format"));
88
89 // visum import
90 oc.doRegister("visum-files", new Option_FileName());
91 oc.addSynonyme("visum-files", "visum");
92 oc.addDescription("visum-files", "Input", TL("Reads polygons from FILE assuming it's a Visum-net"));
93
94 oc.doRegister("visum.language-file", new Option_FileName());
95 oc.addDescription("visum.language-file", "Input", TL("Load language mappings from FILE"));
96
97 // xml import
98 oc.doRegister("xml-files", new Option_FileName());
99 oc.addSynonyme("xml-files", "xml");
100 oc.addDescription("xml-files", "Input", TL("Reads pois and shapes from FILE assuming they're coded in XML"));
101
102 // osm import
103 oc.doRegister("osm-files", new Option_FileName());
104 oc.addSynonyme("osm-files", "osm");
105 oc.addDescription("osm-files", "Input", TL("Reads pois from FILE assuming they're coded in OSM"));
106 oc.doRegister("osm.keep-full-type", new Option_Bool(false));
107 oc.addDescription("osm.keep-full-type", "Input", TL("The type will be made of the key-value - pair"));
108 oc.doRegister("osm.use-name", new Option_Bool(false));
109 oc.addDescription("osm.use-name", "Input", TL("The id will be set from the given 'name' attribute"));
110 oc.doRegister("osm.merge-relations", new Option_Float(-1));
111 oc.addDescription("osm.merge-relations", "Input", TL("If FLOAT >= 0, assemble one polygon from all ways of a relation if they all connect with gaps below FLOAT"));
112
113 // arcview import
114 oc.doRegister("shapefile-prefixes", new Option_FileName());
115 oc.addSynonyme("shapefile-prefixes", "shapefile-prefix");
116 oc.addSynonyme("shapefile-prefixes", "shapefile");
117 oc.addSynonyme("shapefile-prefixes", "shape-files", true);
118 oc.addDescription("shapefile-prefixes", "Input", TL("Reads shapes from shapefiles FILE"));
119
120 oc.doRegister("shapefile.guess-projection", new Option_Bool(false));
121 oc.addSynonyme("shapefile.guess-projection", "arcview.guess-projection", true);
122 oc.addDescription("shapefile.guess-projection", "Input", TL("Guesses the shapefile's projection"));
123
124 oc.doRegister("shapefile.traditional-axis-mapping", new Option_Bool(false));
125 oc.addDescription("shapefile.traditional-axis-mapping", "Input", TL("Use traditional axis order (lon, lat)"));
126
127 oc.doRegister("shapefile.id-column", new Option_String());
128 oc.addSynonyme("shapefile.id-column", "shapefile.id-name", true);
129 oc.addSynonyme("shapefile.id-column", "shape-files.id-name", true);
130 oc.addDescription("shapefile.id-column", "Input", TL("Defines in which column the id can be found"));
131
132 oc.doRegister("shapefile.type-columns", new Option_StringVector());
133 oc.addSynonyme("shapefile.type-columns", "shapefile.type-column");
134 oc.addDescription("shapefile.type-columns", "Input", TL("Defines which columns form the type id (comma separated list)"));
135
136 oc.doRegister("shapefile.use-running-id", new Option_Bool(false));
137 oc.addDescription("shapefile.use-running-id", "Input", TL("A running number will be used as id"));
138
139 oc.doRegister("shapefile.add-param", new Option_Bool(false));
140 oc.addDescription("shapefile.add-param", "Input", TL("Extract all additional columns as params"));
141
142 oc.doRegister("shapefile.fill", new Option_String());
143 oc.addDescription("shapefile.fill", "Input", TL("[auto|true|false]. Forces the 'fill' status to the given value. Default 'auto' tries to determine it from the data type"));
144
145 // typemap reading
146 oc.doRegister("type-file", new Option_FileName());
147 oc.addSynonyme("type-file", "typemap", true);
148 oc.addDescription("type-file", "Input", TL("Reads types from FILE"));
149
150 // need to do this here to be able to check for network and route input options
152
153 // output
154 oc.doRegister("output-file", 'o', new Option_FileName());
155 oc.addSynonyme("output-file", "output");
156 oc.addDescription("output-file", "Output", TL("Write generated polygons/pois to FILE"));
157
158 oc.doRegister("dlr-tdp-output", new Option_FileName());
159 oc.addDescription("dlr-tdp-output", "Output", TL("Write generated polygons/pois to a dlr-tdp file with the given prefix"));
160
161
162 // pruning options
163 oc.doRegister("prune.in-net", new Option_Bool(false));
164 oc.addSynonyme("prune.in-net", "prune.on-net", true);
165 oc.addDescription("prune.in-net", TL("Pruning"), TL("Enables pruning on net boundaries"));
166
167 oc.doRegister("prune.in-net.offsets", new Option_String("0,0,0,0"));
168 oc.addSynonyme("prune.in-net.offsets", "prune.on-net.offsets", true);
169 oc.addDescription("prune.in-net.offsets", TL("Pruning"), TL("Uses FLOAT,FLOAT,FLOAT,FLOAT as offset definition added to the net boundary. Positive values grow the boundary on all sides while negative values shrink it."));
170
171 oc.doRegister("prune.boundary", new Option_String());
172 oc.addDescription("prune.boundary", TL("Pruning"), TL("Uses STR as pruning boundary"));
173
174 oc.doRegister("prune.keep-list", new Option_String());
175 oc.addSynonyme("prune.keep-list", "prune.keep");
176 oc.addSynonyme("prune.keep-list", "prune.ignore", true);
177 oc.addDescription("prune.keep-list", TL("Pruning"), TL("Items in STR will be kept though out of boundary"));
178
179 oc.doRegister("prune.explicit", new Option_StringVector(StringVector({ "" })));
180 oc.addSynonyme("prune.explicit", "remove");
181 oc.addDescription("prune.explicit", TL("Pruning"), TL("Items with names in STR[] will be removed"));
182
183
184 oc.doRegister("offset.x", new Option_Float(0));
185 oc.addSynonyme("offset.x", "x-offset-to-apply", true);
186 oc.addDescription("offset.x", "Processing", TL("Adds FLOAT to net x-positions"));
187
188 oc.doRegister("offset.y", new Option_Float(0));
189 oc.addSynonyme("offset.y", "y-offset-to-apply", true);
190 oc.addDescription("offset.y", "Processing", TL("Adds FLOAT to net y-positions"));
191
192 oc.doRegister("offset.z", new Option_Float(0));
193 oc.addDescription("offset.z", "Processing", TL("Adds FLOAT to net z-positions"));
194
195 oc.doRegister("all-attributes", new Option_Bool(false));
196 oc.addDescription("all-attributes", "Processing", TL("Imports all attributes as key/value pairs"));
197
198 oc.doRegister("ignore-errors", new Option_Bool(false));
199 oc.addDescription("ignore-errors", "Processing", TL("Continue on broken input"));
200
201 oc.doRegister("poi-layer-offset", new Option_Float(0));
202 oc.addDescription("poi-layer-offset", "Processing", TL("Adds FLOAT to the layer value for each poi (i.e. to raise it above polygons)"));
203
204 oc.doRegister("flatten", new Option_Bool(false));
205 oc.addDescription("flatten", "Processing", TL("Remove all z-data"));
206
207 // building defaults options
208 oc.doRegister("color", new Option_String("0.2,0.5,1."));
209 oc.addDescription("color", "Building Defaults", TL("Sets STR as default color"));
210
211 oc.doRegister("prefix", new Option_String(""));
212 oc.addDescription("prefix", "Building Defaults", TL("Sets STR as default prefix"));
213
214 oc.doRegister("type", new Option_String("unknown"));
215 oc.addDescription("type", "Building Defaults", TL("Sets STR as default type"));
216
217 oc.doRegister("fill", new Option_Bool(true));
218 oc.addDescription("fill", "Building Defaults", TL("Fills polygons by default"));
219
221 oc.addDescription("icon", "Building Defaults", TL("Sets STR as default icon"));
222
223 oc.doRegister("layer", new Option_Float(-1));
224 oc.addDescription("layer", "Building Defaults", TL("Sets FLOAT as default layer"));
225
226 oc.doRegister("discard", new Option_Bool(false));
227 oc.addDescription("discard", "Building Defaults", TL("Sets default action to discard"));
228
229 // projection
230 oc.doRegister("proj.plain-geo", new Option_Bool(false));
231 oc.addDescription("proj.plain-geo", "Projection", TL("Write geo coordinates in output"));
232}
233
234
235int
236main(int argc, char** argv) {
238 oc.setApplicationDescription(TL("Importer of polygons and POIs for the microscopic, multi-modal traffic simulation SUMO."));
239 oc.setApplicationName("polyconvert", "Eclipse SUMO polyconvert Version " VERSION_STRING);
240 int ret = 0;
241 try {
242 // initialise subsystems
244 fillOptions();
245 OptionsIO::setArgs(argc, argv);
247 if (oc.processMetaOptions(argc < 2)) {
249 return 0;
250 }
252 XMLSubSys::setValidation(oc.getString("xml-validation"), oc.getString("xml-validation.net"), "never");
253 if (oc.isDefault("aggregate-warnings")) {
254 oc.setDefault("aggregate-warnings", "5");
255 }
257 // build the projection
258 double scale = 1.0;
259 if ((oc.isSet("dlr-navteq-poly-files") || oc.isSet("dlr-navteq-poi-files")) && oc.isDefault("proj.scale")) {
260 scale = 1e-5;
261 }
262 if (!oc.isSet("net")) {
263 // from the given options
264#ifdef PROJ_API_FILE
265 const int numProjections = oc.getBool("simple-projection") + oc.getBool("proj.utm") + oc.getBool("proj.dhdn") + (oc.getString("proj").length() > 1);
266 if ((oc.isSet("osm-files") || oc.isSet("dlr-navteq-poly-files") || oc.isSet("dlr-navteq-poi-files") || oc.isSet("shapefile-prefixes")) && numProjections == 0) {
267 // input is lon,lat and projecting it to UTM ensures accurate handling of geometry
268 oc.set("proj.utm", "true");
269 if (oc.isDefault("proj.plain-geo")) {
270 // without reference to a network, raw UTM isn't helpful so we better write the data out as lon,lat
271 oc.set("proj.plain-geo", "true");
272 }
273 }
274 if (oc.isDefault("proj.scale")) {
275 oc.set("proj.scale", toString(scale, 5));
276 }
277#endif
278 if (!GeoConvHelper::init(oc)) {
279 throw ProcessError(TL("Could not build projection!"));
280 }
281 } else {
282 // from the supplied network
283 // @todo warn about given options being ignored
284 PCNetProjectionLoader::load(oc.getString("net"), scale);
285 }
287 // check whether the input shall be pruned
288 bool prune = false;
289 if (oc.getBool("prune.in-net")) {
290 if (!oc.isSet("net")) {
291 throw ProcessError(TL("In order to prune the input on the net, you have to supply a network."));
292 }
293 bool ok = true;
294 // !!! no proper error handling
296 oc.getString("prune.in-net.offsets"), "--prune.on-net.offsets", nullptr, ok, true, true);
297 pruningBoundary.setOffsets(
298 pruningBoundary.xmin() - offsets.xmin(),
299 pruningBoundary.ymin() - offsets.ymin(),
300 pruningBoundary.xmax() + offsets.xmax(),
301 pruningBoundary.ymax() + offsets.ymax());
302 prune = true;
303 }
304 if (oc.isSet("prune.boundary")) {
305 bool ok = true;
306 // !!! no proper error handling
307 pruningBoundary = GeomConvHelper::parseBoundaryReporting(oc.getString("prune.boundary"), "--prune.boundary", nullptr, ok);
308 prune = true;
309 }
310 if (oc.isSet("osm-files") && oc.isDefault("poi-layer-offset")) {
311 oc.setDefault("poi-layer-offset", "5"); // sufficient when using the default typemap
312 }
313
314 PCPolyContainer toFill(prune, pruningBoundary, oc.getStringVector("remove"));
315
316 // read in the type defaults
317 if (!oc.isSet("type-file")) {
318 const char* sumoPath = std::getenv("SUMO_HOME");
319 if (sumoPath == nullptr) {
320 WRITE_WARNING(TL("Environment variable SUMO_HOME is not set, using built in type maps."));
321 } else {
322 const std::string path = sumoPath + std::string("/data/typemap/");
323 if (oc.isSet("dlr-navteq-poly-files")) {
324 oc.setDefault("type-file", path + "navteqPolyconvert.typ.xml");
325 }
326 if (oc.isSet("osm-files")) {
327 oc.setDefault("type-file", path + "osmPolyconvert.typ.xml");
328 }
329 if (oc.isSet("visum-files")) {
330 oc.setDefault("type-file", path + "visumPolyconvert.typ.xml");
331 }
332 }
333 }
334 PCTypeMap tm(oc);
335 PCTypeDefHandler handler(oc, tm);
336 if (oc.isSet("type-file")) {
337 if (!XMLSubSys::runParser(handler, oc.getString("type-file"))) {
338 // something failed
339 throw ProcessError();
340 }
341 } else {
342 handler.setFileName("built in type map");
343 SUMOSAXReader* reader = XMLSubSys::getSAXReader(handler);
344 if (oc.isSet("dlr-navteq-poly-files")) {
345 reader->parseString(navteqTypemap);
346 }
347 if (oc.isSet("osm-files")) {
348 reader->parseString(osmTypemap);
349 }
350 if (oc.isSet("visum-files")) {
351 reader->parseString(visumTypemap);
352 }
353 delete reader;
354 }
355 // read in the data
356 PCLoaderXML::loadIfSet(oc, toFill, tm); // SUMO-XML
357 PCLoaderOSM::loadIfSet(oc, toFill, tm); // OSM-XML
358 PCLoaderDlrNavteq::loadIfSet(oc, toFill, tm); // Elmar-files
359 PCLoaderVisum::loadIfSet(oc, toFill, tm); // VISUM
360 PCLoaderArcView::loadIfSet(oc, toFill, tm); // shape-files
362 // error processing
363 if (MsgHandler::getErrorInstance()->wasInformed() && !oc.getBool("ignore-errors")) {
364 throw ProcessError();
365 }
366 // output
367 if (!oc.isSet("output-file") && !oc.isSet("dlr-tdp-output")) {
368 std::string out = "polygons.xml";
369 if (oc.isSet("configuration-file")) {
370 out = FileHelpers::getConfigurationRelative(oc.getString("configuration-file"), out);
371 }
372 oc.setDefault("output-file", out);
373 }
374 if (oc.isSet("output-file")) {
375 toFill.save(oc.getString("output-file"), oc.getBool("proj.plain-geo"));
376 }
377 if (oc.isSet("dlr-tdp-output")) {
378 toFill.saveDlrTDP(oc.getString("dlr-tdp-output"));
379 }
380
381 } catch (const ProcessError& e) {
382 if (std::string(e.what()) != std::string("Process Error") && std::string(e.what()) != std::string("")) {
383 WRITE_ERROR(e.what());
384 }
385 MsgHandler::getErrorInstance()->inform("Quitting (on error).", false);
386 ret = 1;
387#ifndef _DEBUG
388 } catch (const std::exception& e) {
389 if (std::string(e.what()) != std::string("")) {
390 WRITE_ERROR(e.what());
391 }
392 MsgHandler::getErrorInstance()->inform("Quitting (on error).", false);
393 ret = 1;
394 } catch (...) {
395 MsgHandler::getErrorInstance()->inform("Quitting (on unknown error).", false);
396 ret = 1;
397#endif
398 }
400 // report about ending
401 if (ret == 0) {
402 std::cout << "Success." << std::endl;
403 }
404 return ret;
405}
406
407
408/****************************************************************************/
#define WRITE_ERROR(msg)
Definition MsgHandler.h:304
#define WRITE_WARNING(msg)
Definition MsgHandler.h:295
#define TL(string)
Definition MsgHandler.h:315
std::vector< std::string > StringVector
Definition of a vector of strings.
Definition Option.h:42
std::string toString(const T &t, std::streamsize accuracy=gPrecision)
Definition ToString.h:46
A class that stores a 2D geometrical boundary.
Definition Boundary.h:39
double ymin() const
Returns minimum y-coordinate.
Definition Boundary.cpp:130
double xmin() const
Returns minimum x-coordinate.
Definition Boundary.cpp:118
void setOffsets(double xmin, double ymin, double xmax, double ymax)
Sets the boundary to the given values, ignoring min < max constraints.
Definition Boundary.cpp:427
double ymax() const
Returns maximum y-coordinate.
Definition Boundary.cpp:136
double xmax() const
Returns maximum x-coordinate.
Definition Boundary.cpp:124
static std::string getConfigurationRelative(const std::string &configPath, const std::string &path)
Returns the second path as a relative path to the first file.
void setFileName(const std::string &name)
Sets the current file name.
static void addProjectionOptions(OptionsCont &oc)
Adds projection options to the given container.
static const GeoConvHelper & getFinal()
the coordinate transformation for writing the location element and for tracking the original coordina...
static bool init(OptionsCont &oc)
Initialises the processing and the final instance using the given options.
static void computeFinal(bool lefthand=false)
compute the location attributes which will be used for output based on the loaded location data,...
const Boundary & getConvBoundary() const
Returns the converted boundary.
static Boundary parseBoundaryReporting(const std::string &def, const std::string &objecttype, const char *objectid, bool &ok, bool report=true, bool offsets=false)
Builds a boundary from its string representation, reporting occurred errors.
static MsgHandler * getErrorInstance()
Returns the instance to add errors to.
virtual void inform(std::string msg, bool addType=true)
adds a new error to the list
static void initOutputOptions()
init output options
A storage for options typed value containers)
Definition OptionsCont.h:89
void addDescription(const std::string &name, const std::string &subtopic, const std::string &description)
Adds a description for an option.
bool isSet(const std::string &name, bool failOnNonExistant=true) const
Returns the information whether the named option is set.
void setApplicationName(const std::string &appName, const std::string &fullName)
Sets the application name.
std::string getString(const std::string &name) const
Returns the string-value of the named option (only for Option_String)
void addSynonyme(const std::string &name1, const std::string &name2, bool isDeprecated=false)
Adds a synonyme for an options name (any order)
bool isDefault(const std::string &name) const
Returns the information whether the named option has still the default value.
bool setDefault(const std::string &name, const std::string &value)
Sets the given value for the named option as new default value.
void doRegister(const std::string &name, Option *o)
Adds an option under the given name.
void setApplicationDescription(const std::string &appDesc)
Sets the application description.
bool set(const std::string &name, const std::string &value, const bool append=false)
Sets the given value for the named option.
void addOptionSubTopic(const std::string &topic)
Adds an option subtopic.
bool getBool(const std::string &name) const
Returns the boolean-value of the named option (only for Option_Bool)
const StringVector & getStringVector(const std::string &name) const
Returns the list of string-value of the named option (only for Option_StringVector)
static OptionsCont & getOptions()
Retrieves the options.
bool processMetaOptions(bool missingOptions)
Checks for help and configuration output, returns whether we should exit.
void addCallExample(const std::string &example, const std::string &desc)
Add a call example.
static void setArgs(int argc, char **argv)
Stores the command line arguments for later parsing.
Definition OptionsIO.cpp:58
static void getOptions(const bool commandLineOnly=false)
Parses the command line arguments and loads the configuration.
Definition OptionsIO.cpp:74
static void loadIfSet(OptionsCont &oc, PCPolyContainer &toFill, PCTypeMap &tm)
Loads pois/polygons assumed to be stored as shape files-files.
static void loadIfSet(OptionsCont &oc, PCPolyContainer &toFill, PCTypeMap &tm)
Loads pois/polygons assumed to be stored as according DLR-Navteq (Elmar)-files.
static void loadIfSet(OptionsCont &oc, PCPolyContainer &toFill, PCTypeMap &tm)
Loads pois/polygons assumed to be stored as OSM-XML.
static void loadIfSet(OptionsCont &oc, PCPolyContainer &toFill, PCTypeMap &tm)
Loads pois/polygons assumed to be stored using VISUM-format.
static void loadIfSet(OptionsCont &oc, PCPolyContainer &toFill, PCTypeMap &tm)
Loads pois/polygons assumed to be stored as XML.
static void load(const std::string &file, double scale)
Loads network projection if wished.
A storage for loaded polygons and pois.
void save(const std::string &file, bool useGeo)
Saves the stored polygons and pois into the given file.
void saveDlrTDP(const std::string &prefix)
Saves the stored polygons and pois into the given file in dlrTDP format.
A handler for loading polygon type maps.
A storage for type mappings.
Definition PCTypeMap.h:42
SAX-reader encapsulation containing binary reader.
void parseString(std::string content)
Parse XML from the given string.
static StringBijection< POIIcon > POIIcons
POI icon values.
static void close()
Closes all of an applications subsystems.
static bool checkOptions(OptionsCont &oc)
checks shared options and sets StdDefs
static void addConfigurationOptions(OptionsCont &oc)
Adds configuration options to the given container.
static void addReportOptions(OptionsCont &oc)
Adds reporting options to the given container.
static void setValidation(const std::string &validationScheme, const std::string &netValidationScheme, const std::string &routeValidationScheme)
Enables or disables validation.
Definition XMLSubSys.cpp:83
static SUMOSAXReader * getSAXReader(SUMOSAXHandler &handler, const bool isNet=false, const bool isRoute=false)
Builds a reader and assigns the handler to it.
static void init()
Initialises the xml-subsystem.
Definition XMLSubSys.cpp:56
static bool runParser(GenericSAXHandler &handler, const std::string &file, const bool isNet=false, const bool isRoute=false, const bool isExternal=false, const bool catchExceptions=true)
Runs the given handler on the given file; returns if everything's ok.
void fillOptions()
int main(int argc, char **argv)