Skip to content

v0.2.48..v0.2.49 changeset OsmApiReader.h

Garret Voltz edited this page Oct 2, 2019 · 1 revision
diff --git a/hoot-core/src/main/cpp/hoot/core/io/OsmApiReader.h b/hoot-core/src/main/cpp/hoot/core/io/OsmApiReader.h
new file mode 100644
index 0000000..27b19e0
--- /dev/null
+++ b/hoot-core/src/main/cpp/hoot/core/io/OsmApiReader.h
@@ -0,0 +1,98 @@
+/*
+ * This file is part of Hootenanny.
+ *
+ * Hootenanny is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ *
+ * --------------------------------------------------------------------
+ *
+ * The following copyright notices are generated automatically. If you
+ * have a new notice to add, please use the format:
+ * " * @copyright Copyright ..."
+ * This will properly maintain the copyright information. DigitalGlobe
+ * copyrights will be updated automatically.
+ *
+ * @copyright Copyright (C) 2019 DigitalGlobe (http://www.digitalglobe.com/)
+ */
+#ifndef OSM_API_READER_H
+#define OSM_API_READER_H
+
+// Hoot
+#include <hoot/core/elements/Tags.h>
+#include <hoot/core/io/OsmXmlReader.h>
+#include <hoot/core/io/ParallelBoundedApiReader.h>
+#include <hoot/core/util/Units.h>
+
+// Qt
+#include <QHash>
+#include <QString>
+
+namespace hoot
+{
+
+class OsmMap;
+class Element;
+
+/**
+ * Reads OSM XML output from an OSM API map call by bounding box.  Reading will fail without a bounding box
+ * https://wiki.openstreetmap.org/wiki/API_v0.6#Retrieving_map_data_by_bounding_box:_GET_.2Fapi.2F0.6.2Fmap
+ */
+class OsmApiReader : public OsmXmlReader, private ParallelBoundedApiReader
+{
+public:
+
+  static std::string className() { return "hoot::OsmApiReader"; }
+  /** Constructor */
+  OsmApiReader();
+  /** Destructor */
+  virtual ~OsmApiReader();
+  /**
+   * @brief close Close the reader
+   */
+  virtual void close();
+  /**
+   * @brief isSupported
+   * @param url URL of the OSM API to read
+   * @return True if the URL is a supported format
+   */
+  virtual bool isSupported(const QString& url) override;
+  /**
+   * @brief open Open up the reader
+   * @param url URL of the OSM API to read from
+   */
+  virtual void open(const QString& url) override;
+  /**
+   * @brief read Read the OSM from the API into the map
+   * @param map Pointer to the map to read into
+   */
+  virtual void read(const OsmMapPtr& map) override;
+  /**
+   * @brief setUseDataSourceIds
+   * @param useDataSourceIds
+   */
+  virtual void setUseDataSourceIds(bool useDataSourceIds) override;
+  /**
+   * @brief supportedFormats
+   * @return the supported formats
+   */
+  virtual QString supportedFormats() override;
+  /**
+   * @brief setConfiguration
+   * @param conf Updated configuration
+   */
+  virtual void setConfiguration(const Settings& conf) override;
+};
+
+}
+
+#endif // OSM_API_READER_H
Clone this wiki locally