Skip to content

v0.2.49..v0.2.50 changeset TileUtils.cpp

Garret Voltz edited this page Nov 6, 2019 · 1 revision
diff --git a/hoot-core/src/main/cpp/hoot/core/conflate/tile/TileUtils.cpp b/hoot-core/src/main/cpp/hoot/core/conflate/tile/TileUtils.cpp
new file mode 100644
index 0000000..410a833
--- /dev/null
+++ b/hoot-core/src/main/cpp/hoot/core/conflate/tile/TileUtils.cpp
@@ -0,0 +1,185 @@
+/*
+ * 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/)
+ */
+
+#include "TileUtils.h"
+
+// hoot
+#include <hoot/core/conflate/tile/TileBoundsCalculator.h>
+#include <hoot/core/io/OsmGeoJsonWriter.h>
+#include <hoot/core/io/OsmMapWriterFactory.h>
+#include <hoot/core/util/ConfigOptions.h>
+#include <hoot/core/util/FileUtils.h>
+#include <hoot/core/util/GeometryUtils.h>
+#include <hoot/core/util/RandomNumberUtils.h>
+
+// Tgs
+#include <tgs/Statistics/Random.h>
+
+// Qt
+#include <QTemporaryFile>
+
+namespace hoot
+{
+
+std::vector<std::vector<geos::geom::Envelope>> TileUtils::calculateTiles(
+  const long maxNodesPerTile, const double pixelSize, OsmMapPtr map, long& minNodeCountInOneTile,
+  long& maxNodeCountInOneTile, std::vector<std::vector<long>>& nodeCounts)
+{
+  TileBoundsCalculator tileBoundsCalculator(pixelSize);
+  tileBoundsCalculator.setMaxNodesPerBox(maxNodesPerTile);
+  //tbc.setSlop(0.1);
+  cv::Mat r1, r2;
+  tileBoundsCalculator.renderImage(map, r1, r2);
+  //we're calculating for unknown1 only, so fill the second matrix with all zeroes
+  cv::Mat zeros = cv::Mat::zeros(r1.size(), r1.type());
+  tileBoundsCalculator.setImages(r1, zeros);
+
+  const std::vector<std::vector<geos::geom::Envelope>> tiles =
+    tileBoundsCalculator.calculateTiles();
+
+  minNodeCountInOneTile = tileBoundsCalculator.getMinNodeCountInOneTile();
+  maxNodeCountInOneTile = tileBoundsCalculator.getMaxNodeCountInOneTile();
+  nodeCounts = tileBoundsCalculator.getNodeCounts();
+
+  return tiles;
+}
+
+int TileUtils::getRandomTileIndex(const std::vector<std::vector<geos::geom::Envelope>>& tiles,
+                                  int randomSeed)
+{
+  if (tiles.size() == 0)
+  {
+    throw IllegalArgumentException("No tiles passed to TileUtils::getRandomTileIndex.");
+  }
+  if (randomSeed == -1)
+  {
+    randomSeed = RandomNumberUtils::generateSeed();
+  }
+  LOG_VARD(tiles.size());
+  LOG_VARD(randomSeed);
+  Tgs::Random::instance()->seed(randomSeed);
+
+  const size_t numBboxes = tiles.size() * tiles[0].size();
+  LOG_VARD(numBboxes);
+  return Tgs::Random::instance()->generateInt(numBboxes);
+}
+
+geos::geom::Envelope TileUtils::getRandomTile(
+  const std::vector<std::vector<geos::geom::Envelope>>& tiles, int randomSeed)
+{
+  const int randomTileIndex = getRandomTileIndex(tiles, randomSeed);
+  LOG_VARD(randomTileIndex);
+  int bboxCtr = 1;
+  for (size_t tx = 0; tx < tiles.size(); tx++)
+  {
+    for (size_t ty = 0; ty < tiles[tx].size(); ty++)
+    {
+      if ((bboxCtr - 1) == randomTileIndex)
+      {
+        LOG_DEBUG("Randomly selected tile: " << GeometryUtils::toConfigString(tiles[tx][ty]));
+        return tiles[tx][ty];
+      }
+      bboxCtr++;
+    }
+  }
+  // shouldn't ever get here
+  return geos::geom::Envelope();
+}
+
+void TileUtils::writeTilesToGeoJson(const std::vector<std::vector<geos::geom::Envelope>>& tiles,
+  const std::vector<std::vector<long>>& nodeCounts, const QString& outputPath,
+  const QString& fileSource, const bool selectSingleRandomTile, int randomSeed)
+{
+  LOG_VARD(outputPath);
+
+  int randomTileIndex = -1;
+  if (selectSingleRandomTile)
+    randomTileIndex = TileUtils::getRandomTileIndex(tiles, randomSeed);
+
+  OsmMapPtr boundaryMap = tilesToOsmMap(tiles, nodeCounts, randomTileIndex, selectSingleRandomTile);
+  boundaryMap->appendSource(fileSource);
+
+  OsmGeoJsonWriter writer;
+  Settings s;
+  //  Output the source tags in the geojson writer
+  s.set(ConfigOptions::getJsonOutputTaskingManagerAoiKey(), true);
+  s.set(ConfigOptions::getWriterPrecisionKey(), 9);
+  writer.setConfiguration(s);
+  writer.open(outputPath);
+  writer.write(boundaryMap);
+
+  OsmMapWriterFactory::writeDebugMap(boundaryMap, "osm-tiles");
+}
+
+void TileUtils::writeTilesToOsm(
+  const std::vector<std::vector<geos::geom::Envelope>>& tiles,
+  const std::vector<std::vector<long>>& nodeCounts, const QString& outputPath,
+  const bool selectSingleRandomTile, int randomSeed)
+{
+  LOG_VARD(outputPath);
+
+  int randomTileIndex = -1;
+  if (selectSingleRandomTile)
+    randomTileIndex = TileUtils::getRandomTileIndex(tiles, randomSeed);
+
+  OsmMapPtr boundaryMap = tilesToOsmMap(tiles, nodeCounts, randomTileIndex, selectSingleRandomTile);
+
+  OsmMapWriterFactory::write(boundaryMap, outputPath);
+  OsmMapWriterFactory::writeDebugMap(boundaryMap, "osm-tiles");
+}
+
+OsmMapPtr TileUtils::tilesToOsmMap(
+  const std::vector<std::vector<geos::geom::Envelope>>& tiles,
+  const std::vector<std::vector<long>>& nodeCounts,
+  int randomTileIndex, const bool selectSingleRandomTile)
+{
+  OsmMapPtr boundaryMap(new OsmMap());
+  int bboxCtr = 1;
+  for (size_t tx = 0; tx < tiles.size(); tx++)
+  {
+    for (size_t ty = 0; ty < tiles[tx].size(); ty++)
+    {
+      //  Only create the bounding tile if we want all of them or
+      //  if this is the randomly selected tile
+      if (!selectSingleRandomTile ||
+          (selectSingleRandomTile && (bboxCtr - 1) == randomTileIndex))
+      {
+        //  Create the way in the map
+        const geos::geom::Envelope env = tiles[tx][ty];
+        ElementId eid = GeometryUtils::createBoundsInMap(boundaryMap, env);
+        //  Update the tags on the bounding rectangle
+        WayPtr bbox = boundaryMap->getWay(eid.getId());
+        bbox->setTag("node_count", QString::number(nodeCounts[tx][ty]));
+        bbox->setTag("task", QString::number(bboxCtr));
+      }
+      bboxCtr++;
+    }
+  }
+  return boundaryMap;
+}
+
+}
Clone this wiki locally