#include <config.h>
#ifdef HAVE_VERSION_H
#include <version.h>
#endif
#include <iostream>
#include <string>
#include <utils/options/OptionsIO.h>
#include <utils/options/OptionsCont.h>
#include <utils/common/UtilExceptions.h>
#include <utils/common/StringTokenizer.h>
#include <utils/common/SystemFrame.h>
#include <utils/common/MsgHandler.h>
#include <utils/common/StringUtils.h>
#include <utils/common/ToString.h>
#include <utils/iodevices/OutputDevice.h>
#include <utils/importio/LineReader.h>
#include <utils/geom/GeoConvHelper.h>
#include <utils/geom/GeomConvHelper.h>
#include <utils/geom/Boundary.h>
#include <utils/xml/SUMOSAXReader.h>
#include <utils/xml/XMLSubSys.h>
#include <polyconvert/PCLoaderVisum.h>
#include <polyconvert/PCLoaderDlrNavteq.h>
#include <polyconvert/PCLoaderXML.h>
#include <polyconvert/PCLoaderOSM.h>
#include <polyconvert/PCLoaderArcView.h>
#include <polyconvert/PCTypeMap.h>
#include <polyconvert/PCTypeDefHandler.h>
#include <polyconvert/PCNetProjectionLoader.h>
#include <polyconvert/pc_typemap.h>
void
fillOptions() {
OptionsCont& oc = OptionsCont::getOptions();
oc.addCallExample("-c <CONFIGURATION>", "run with configuration options set in file");
SystemFrame::addConfigurationOptions(oc);
oc.addOptionSubTopic("Input");
oc.addOptionSubTopic("Output");
GeoConvHelper::addProjectionOptions(oc);
oc.addOptionSubTopic("Pruning");
oc.addOptionSubTopic("Processing");
oc.addOptionSubTopic("Building Defaults");
oc.doRegister("net-file", 'n', new Option_FileName());
oc.addSynonyme("net-file", "net");
oc.addDescription("net-file", "Input", TL("Loads SUMO-network FILE as reference to offset and projection"));
oc.doRegister("dlr-navteq-poly-files", new Option_FileName());
oc.addDescription("dlr-navteq-poly-files", "Input", TL("Reads polygons from FILE assuming they're coded in DLR-Navteq (Elmar)-format"));
oc.doRegister("dlr-navteq-poi-files", new Option_FileName());
oc.addDescription("dlr-navteq-poi-files", "Input", TL("Reads pois from FILE assuming they're coded in DLR-Navteq (Elmar)-format"));
oc.doRegister("visum-files", new Option_FileName());
oc.addSynonyme("visum-files", "visum");
oc.addDescription("visum-files", "Input", TL("Reads polygons from FILE assuming it's a Visum-net"));
oc.doRegister("visum.language-file", new Option_FileName());
oc.addDescription("visum.language-file", "Input", TL("Load language mappings from FILE"));
oc.doRegister("xml-files", new Option_FileName());
oc.addSynonyme("xml-files", "xml");
oc.addDescription("xml-files", "Input", TL("Reads pois and shapes from FILE assuming they're coded in XML"));
oc.doRegister("osm-files", new Option_FileName());
oc.addSynonyme("osm-files", "osm");
oc.addDescription("osm-files", "Input", TL("Reads pois from FILE assuming they're coded in OSM"));
oc.doRegister("osm.keep-full-type", new Option_Bool(false));
oc.addDescription("osm.keep-full-type", "Input", TL("The type will be made of the key-value - pair"));
oc.doRegister("osm.use-name", new Option_Bool(false));
oc.addDescription("osm.use-name", "Input", TL("The id will be set from the given 'name' attribute"));
oc.doRegister("osm.merge-relations", new Option_Float(-1));
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"));
oc.doRegister("geojson-files", new Option_FileName());
oc.addDescription("geojson-files", "Input", TL("Reads shapes from geojson FILE"));
oc.doRegister("shapefile-prefixes", new Option_FileName());
oc.addSynonyme("shapefile-prefixes", "shapefile-prefix");
oc.addSynonyme("shapefile-prefixes", "shapefile");
oc.addSynonyme("shapefile-prefixes", "shape-files", true);
oc.addDescription("shapefile-prefixes", "Input", TL("Reads shapes from shapefiles FILE"));
oc.doRegister("shapefile.guess-projection", new Option_Bool(false));
oc.addSynonyme("shapefile.guess-projection", "arcview.guess-projection", true);
oc.addDescription("shapefile.guess-projection", "Input", TL("Guesses the shapefile's projection"));
oc.doRegister("shapefile.traditional-axis-mapping", new Option_Bool(false));
oc.addDescription("shapefile.traditional-axis-mapping", "Input", TL("Use traditional axis order (lon, lat)"));
oc.doRegister("shapefile.id-column", new Option_String());
oc.addSynonyme("shapefile.id-column", "shapefile.id-name", true);
oc.addSynonyme("shapefile.id-column", "shape-files.id-name", true);
oc.addDescription("shapefile.id-column", "Input", TL("Defines in which column the id can be found"));
oc.doRegister("shapefile.type-columns", new Option_StringVector());
oc.addSynonyme("shapefile.type-columns", "shapefile.type-column");
oc.addDescription("shapefile.type-columns", "Input", TL("Defines which columns form the type id (comma separated list)"));
oc.doRegister("shapefile.use-running-id", new Option_Bool(false));
oc.addDescription("shapefile.use-running-id", "Input", TL("A running number will be used as id"));
oc.doRegister("shapefile.add-param", new Option_Bool(false));
oc.addDescription("shapefile.add-param", "Input", TL("Extract all additional columns as params"));
oc.doRegister("shapefile.fill", new Option_String());
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"));
oc.doRegister("type-file", new Option_FileName());
oc.addSynonyme("type-file", "typemap", true);
oc.addDescription("type-file", "Input", TL("Reads types from FILE"));
SystemFrame::addReportOptions(oc);
oc.doRegister("output-file", 'o', new Option_FileName());
oc.addSynonyme("output-file", "output");
oc.addDescription("output-file", "Output", TL("Write generated polygons/pois to FILE"));
oc.doRegister("dlr-tdp-output", new Option_FileName());
oc.addDescription("dlr-tdp-output", "Output", TL("Write generated polygons/pois to a dlr-tdp file with the given prefix"));
oc.doRegister("prune.in-net", new Option_Bool(false));
oc.addSynonyme("prune.in-net", "prune.on-net", true);
oc.addDescription("prune.in-net", TL("Pruning"), TL("Enables pruning on net boundaries"));
oc.doRegister("prune.in-net.offsets", new Option_String("0,0,0,0"));
oc.addSynonyme("prune.in-net.offsets", "prune.on-net.offsets", true);
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."));
oc.doRegister("prune.boundary", new Option_String());
oc.addDescription("prune.boundary", TL("Pruning"), TL("Uses STR as pruning boundary"));
oc.doRegister("prune.keep-list", new Option_String());
oc.addSynonyme("prune.keep-list", "prune.keep");
oc.addSynonyme("prune.keep-list", "prune.ignore", true);
oc.addDescription("prune.keep-list", TL("Pruning"), TL("Items in STR will be kept though out of boundary"));
oc.doRegister("prune.explicit", new Option_StringVector(StringVector({ "" })));
oc.addSynonyme("prune.explicit", "remove");
oc.addDescription("prune.explicit", TL("Pruning"), TL("Items with names in STR[] will be removed"));
oc.doRegister("offset.x", new Option_Float(0));
oc.addSynonyme("offset.x", "x-offset-to-apply", true);
oc.addDescription("offset.x", "Processing", TL("Adds FLOAT to net x-positions"));
oc.doRegister("offset.y", new Option_Float(0));
oc.addSynonyme("offset.y", "y-offset-to-apply", true);
oc.addDescription("offset.y", "Processing", TL("Adds FLOAT to net y-positions"));
oc.doRegister("offset.z", new Option_Float(0));
oc.addDescription("offset.z", "Processing", TL("Adds FLOAT to net z-positions"));
oc.doRegister("all-attributes", new Option_Bool(false));
oc.addDescription("all-attributes", "Processing", TL("Imports all attributes as key/value pairs"));
oc.doRegister("ignore-errors", new Option_Bool(false));
oc.addDescription("ignore-errors", "Processing", TL("Continue on broken input"));
oc.doRegister("poi-layer-offset", new Option_Float(0));
oc.addDescription("poi-layer-offset", "Processing", TL("Adds FLOAT to the layer value for each poi (i.e. to raise it above polygons)"));
oc.doRegister("flatten", new Option_Bool(false));
oc.addDescription("flatten", "Processing", TL("Remove all z-data"));
oc.doRegister("color", new Option_String("0.2,0.5,1."));
oc.addDescription("color", "Building Defaults", TL("Sets STR as default color"));
oc.doRegister("prefix", new Option_String(""));
oc.addDescription("prefix", "Building Defaults", TL("Sets STR as default prefix"));
oc.doRegister("type", new Option_String("unknown"));
oc.addDescription("type", "Building Defaults", TL("Sets STR as default type"));
oc.doRegister("fill", new Option_Bool(true));
oc.addDescription("fill", "Building Defaults", TL("Fills polygons by default"));
oc.doRegister("icon", new Option_String(SUMOXMLDefinitions::POIIcons.getString(POIIcon::NONE)));
oc.addDescription("icon", "Building Defaults", TL("Sets STR as default icon"));
oc.doRegister("layer", new Option_Float(-1));
oc.addDescription("layer", "Building Defaults", TL("Sets FLOAT as default layer"));
oc.doRegister("discard", new Option_Bool(false));
oc.addDescription("discard", "Building Defaults", TL("Sets default action to discard"));
oc.doRegister("proj.plain-geo", new Option_Bool(false));
oc.addDescription("proj.plain-geo", "Projection", TL("Write geo coordinates in output"));
}
int
main(int argc, char** argv) {
OptionsCont& oc = OptionsCont::getOptions();
oc.setApplicationDescription(TL("Importer of polygons and POIs for the microscopic, multi-modal traffic simulation SUMO."));
oc.setApplicationName("polyconvert", "Eclipse SUMO polyconvert " VERSION_STRING);
int ret = 0;
try {
XMLSubSys::init();
fillOptions();
OptionsIO::setArgs(argc, argv);
OptionsIO::getOptions();
if (oc.processMetaOptions(argc < 2)) {
SystemFrame::close();
return 0;
}
SystemFrame::checkOptions(oc);
XMLSubSys::setValidation(oc.getString("xml-validation"), oc.getString("xml-validation.net"), "never");
if (oc.isDefault("aggregate-warnings")) {
oc.setDefault("aggregate-warnings", "5");
}
MsgHandler::initOutputOptions();
double scale = 1.0;
if ((oc.isSet("dlr-navteq-poly-files") || oc.isSet("dlr-navteq-poi-files")) && oc.isDefault("proj.scale")) {
scale = 1e-5;
}
if (!oc.isSet("net")) {
#ifdef PROJ_API_FILE
const int numProjections = oc.getBool("simple-projection") + oc.getBool("proj.utm") + oc.getBool("proj.dhdn") + (oc.getString("proj").length() > 1);
if ((oc.isSet("osm-files")
|| oc.isSet("dlr-navteq-poly-files")
|| oc.isSet("dlr-navteq-poi-files")
|| oc.isSet("geojson-files")
|| oc.isSet("shapefile-prefixes"))
&& numProjections == 0) {
oc.set("proj.utm", "true");
if (oc.isDefault("proj.plain-geo")) {
oc.set("proj.plain-geo", "true");
}
}
if (oc.isDefault("proj.scale")) {
oc.set("proj.scale", toString(scale, 5));
}
#endif
if (!GeoConvHelper::init(oc)) {
throw ProcessError(TL("Could not build projection!"));
}
} else {
PCNetProjectionLoader::load(oc.getString("net"), scale);
}
Boundary pruningBoundary = GeoConvHelper::getFinal().getConvBoundary();
bool prune = false;
if (oc.getBool("prune.in-net")) {
if (!oc.isSet("net")) {
throw ProcessError(TL("In order to prune the input on the net, you have to supply a network."));
}
bool ok = true;
Boundary offsets = GeomConvHelper::parseBoundaryReporting(
oc.getString("prune.in-net.offsets"), "--prune.on-net.offsets", nullptr, ok, true, true);
pruningBoundary.setOffsets(
pruningBoundary.xmin() - offsets.xmin(),
pruningBoundary.ymin() - offsets.ymin(),
pruningBoundary.xmax() + offsets.xmax(),
pruningBoundary.ymax() + offsets.ymax());
prune = true;
}
if (oc.isSet("prune.boundary")) {
bool ok = true;
pruningBoundary = GeomConvHelper::parseBoundaryReporting(oc.getString("prune.boundary"), "--prune.boundary", nullptr, ok);
prune = true;
}
if (oc.isSet("osm-files") && oc.isDefault("poi-layer-offset")) {
oc.setDefault("poi-layer-offset", "5");
}
PCPolyContainer toFill(prune, pruningBoundary, oc.getStringVector("remove"));
if (!oc.isSet("type-file")) {
const char* sumoPath = std::getenv("SUMO_HOME");
if (sumoPath == nullptr) {
WRITE_WARNING(TL("Environment variable SUMO_HOME is not set, using built in type maps."));
} else {
const std::string path = sumoPath + std::string("/data/typemap/");
if (oc.isSet("dlr-navteq-poly-files")) {
oc.setDefault("type-file", path + "navteqPolyconvert.typ.xml");
}
if (oc.isSet("osm-files")) {
oc.setDefault("type-file", path + "osmPolyconvert.typ.xml");
}
if (oc.isSet("visum-files")) {
oc.setDefault("type-file", path + "visumPolyconvert.typ.xml");
}
}
}
PCTypeMap tm(oc);
PCTypeDefHandler handler(oc, tm);
if (oc.isSet("type-file")) {
if (!XMLSubSys::runParser(handler, oc.getString("type-file"))) {
throw ProcessError();
}
} else {
handler.setFileName("built in type map");
SUMOSAXReader* reader = XMLSubSys::getSAXReader(handler);
if (oc.isSet("dlr-navteq-poly-files")) {
reader->parseString(navteqTypemap);
}
if (oc.isSet("osm-files")) {
reader->parseString(osmTypemap);
}
if (oc.isSet("visum-files")) {
reader->parseString(visumTypemap);
}
delete reader;
}
PCLoaderXML::loadIfSet(oc, toFill, tm);
PCLoaderOSM::loadIfSet(oc, toFill, tm);
PCLoaderDlrNavteq::loadIfSet(oc, toFill, tm);
PCLoaderVisum::loadIfSet(oc, toFill, tm);
PCLoaderArcView::loadIfSet(oc, toFill, tm);
GeoConvHelper::computeFinal();
if (MsgHandler::getErrorInstance()->wasInformed() && !oc.getBool("ignore-errors")) {
throw ProcessError();
}
if (!oc.isSet("output-file") && !oc.isSet("dlr-tdp-output")) {
std::string out = "polygons.xml";
if (oc.isSet("configuration-file")) {
out = FileHelpers::getConfigurationRelative(oc.getString("configuration-file"), out);
}
oc.setDefault("output-file", out);
}
if (oc.isSet("output-file")) {
toFill.save(oc.getString("output-file"), oc.getBool("proj.plain-geo"));
}
if (oc.isSet("dlr-tdp-output")) {
toFill.saveDlrTDP(oc.getString("dlr-tdp-output"));
}
} catch (const ProcessError& e) {
if (std::string(e.what()) != std::string("Process Error") && std::string(e.what()) != std::string("")) {
WRITE_ERROR(e.what());
}
MsgHandler::getErrorInstance()->inform("Quitting (on error).", false);
ret = 1;
#ifndef _DEBUG
} catch (const std::exception& e) {
if (std::string(e.what()) != std::string("")) {
WRITE_ERROR(e.what());
}
MsgHandler::getErrorInstance()->inform("Quitting (on error).", false);
ret = 1;
} catch (...) {
MsgHandler::getErrorInstance()->inform("Quitting (on unknown error).", false);
ret = 1;
#endif
}
SystemFrame::close();
if (ret == 0) {
std::cout << "Success." << std::endl;
}
return ret;
}