cesium-native 0.46.0
Loading...
Searching...
No Matches
ImplicitTilingUtilities.h
1#pragma once
2
3#include <CesiumGeometry/OctreeTileID.h>
4#include <CesiumGeometry/QuadtreeTileID.h>
5#include <CesiumGeospatial/Ellipsoid.h>
6
7#include <array>
8#include <iterator>
9#include <string>
10
12class BoundingRegion;
14} // namespace CesiumGeospatial
15
16namespace CesiumGeometry {
19} // namespace CesiumGeometry
20
21namespace Cesium3DTiles {
22struct BoundingVolume;
23}
24
25namespace Cesium3DTilesContent {
26
32public:
36 class iterator {
37 public:
41 using iterator_category = std::forward_iterator_tag;
52 using difference_type = void;
61
70 explicit iterator(
71 const CesiumGeometry::QuadtreeTileID& parentTileID,
72 bool isEnd) noexcept;
73
79 return this->_current;
80 }
86 return &this->_current;
87 }
96
98 bool operator==(const iterator& rhs) const noexcept;
100 bool operator!=(const iterator& rhs) const noexcept;
101
102 private:
104 };
105
108
114 : _tileID(tileID) {}
115
117 iterator begin() const noexcept;
119 iterator end() const noexcept;
124 constexpr int64_t size() const noexcept { return 4; }
125
126private:
128};
129
135public:
139 class iterator {
140 public:
144 using iterator_category = std::forward_iterator_tag;
155 using difference_type = void;
164
173 explicit iterator(
174 const CesiumGeometry::OctreeTileID& parentTileID,
175 bool isEnd) noexcept;
176
182 return this->_current;
183 }
189 return &this->_current;
190 }
199
201 bool operator==(const iterator& rhs) const noexcept;
203 bool operator!=(const iterator& rhs) const noexcept;
204
205 private:
207 };
208
211
217 : _tileID(tileID) {}
219 iterator begin() const noexcept;
221 iterator end() const noexcept;
226 constexpr int64_t size() const noexcept { return 8; }
227
228private:
230};
231
236public:
247 static std::string resolveUrl(
248 const std::string& baseUrl,
249 const std::string& urlTemplate,
250 const CesiumGeometry::QuadtreeTileID& quadtreeID);
251
262 static std::string resolveUrl(
263 const std::string& baseUrl,
264 const std::string& urlTemplate,
265 const CesiumGeometry::OctreeTileID& octreeID);
266
278 static double computeLevelDenominator(uint32_t level) noexcept;
279
287 static uint64_t
289
296 static uint64_t
298
308 const CesiumGeometry::QuadtreeTileID& subtreeID,
309 const CesiumGeometry::QuadtreeTileID& tileID);
310
320 const CesiumGeometry::OctreeTileID& subtreeRootID,
321 const CesiumGeometry::OctreeTileID& tileID);
322
335 uint32_t subtreeLevels,
336 const CesiumGeometry::QuadtreeTileID& tileID) noexcept;
337
350 uint32_t subtreeLevels,
351 const CesiumGeometry::OctreeTileID& tileID) noexcept;
352
366 const CesiumGeometry::QuadtreeTileID& rootID,
367 const CesiumGeometry::QuadtreeTileID& tileID) noexcept;
368
382 const CesiumGeometry::OctreeTileID& rootID,
383 const CesiumGeometry::OctreeTileID& tileID) noexcept;
384
392 static QuadtreeChildren
394 return QuadtreeChildren{tileID};
395 }
396
404 static OctreeChildren
406 return OctreeChildren{tileID};
407 }
408
419 const Cesium3DTiles::BoundingVolume& rootBoundingVolume,
420 const CesiumGeometry::QuadtreeTileID& tileID,
421 const CesiumGeospatial::Ellipsoid& ellipsoid
422 CESIUM_DEFAULT_ELLIPSOID) noexcept;
423
434 const Cesium3DTiles::BoundingVolume& rootBoundingVolume,
435 const CesiumGeometry::OctreeTileID& tileID,
436 const CesiumGeospatial::Ellipsoid& ellipsoid
437 CESIUM_DEFAULT_ELLIPSOID) noexcept;
438
449 const CesiumGeospatial::BoundingRegion& rootBoundingVolume,
450 const CesiumGeometry::QuadtreeTileID& tileID,
451 const CesiumGeospatial::Ellipsoid& ellipsoid
452 CESIUM_DEFAULT_ELLIPSOID) noexcept;
453
464 const CesiumGeospatial::BoundingRegion& rootBoundingVolume,
465 const CesiumGeometry::OctreeTileID& tileID,
466 const CesiumGeospatial::Ellipsoid& ellipsoid
467 CESIUM_DEFAULT_ELLIPSOID) noexcept;
468
478 const CesiumGeometry::OrientedBoundingBox& rootBoundingVolume,
479 const CesiumGeometry::QuadtreeTileID& tileID) noexcept;
480
490 const CesiumGeometry::OrientedBoundingBox& rootBoundingVolume,
491 const CesiumGeometry::OctreeTileID& tileID) noexcept;
492
503 const CesiumGeospatial::S2CellBoundingVolume& rootBoundingVolume,
504 const CesiumGeometry::QuadtreeTileID& tileID,
505 const CesiumGeospatial::Ellipsoid& ellipsoid
506 CESIUM_DEFAULT_ELLIPSOID) noexcept;
507
518 const CesiumGeospatial::S2CellBoundingVolume& rootBoundingVolume,
519 const CesiumGeometry::OctreeTileID& tileID,
520 const CesiumGeospatial::Ellipsoid& ellipsoid
521 CESIUM_DEFAULT_ELLIPSOID) noexcept;
522
532 const CesiumGeometry::BoundingCylinderRegion& rootBoundingVolume,
533 const CesiumGeometry::QuadtreeTileID& tileID) noexcept;
534
544 const CesiumGeometry::BoundingCylinderRegion& rootBoundingVolume,
545 const CesiumGeometry::OctreeTileID& tileID) noexcept;
546};
547
548} // namespace Cesium3DTilesContent
Helper functions for working with 3D Tiles implicit tiling.
static uint64_t computeRelativeMortonIndex(const CesiumGeometry::QuadtreeTileID &subtreeID, const CesiumGeometry::QuadtreeTileID &tileID)
Computes the relative Morton index for a given quadtree tile within its level of a subtree root at th...
static CesiumGeospatial::S2CellBoundingVolume computeBoundingVolume(const CesiumGeospatial::S2CellBoundingVolume &rootBoundingVolume, const CesiumGeometry::OctreeTileID &tileID, const CesiumGeospatial::Ellipsoid &ellipsoid=CesiumGeospatial::Ellipsoid::WGS84) noexcept
Computes the bounding volume for an implicit octree tile with the given ID as an S2 cell bounding vol...
static CesiumGeospatial::BoundingRegion computeBoundingVolume(const CesiumGeospatial::BoundingRegion &rootBoundingVolume, const CesiumGeometry::QuadtreeTileID &tileID, const CesiumGeospatial::Ellipsoid &ellipsoid=CesiumGeospatial::Ellipsoid::WGS84) noexcept
Computes the bounding volume for an implicit quadtree tile with the given ID as a bounding region.
static CesiumGeometry::OctreeTileID absoluteTileIDToRelative(const CesiumGeometry::OctreeTileID &rootID, const CesiumGeometry::OctreeTileID &tileID) noexcept
Converts an absolute tile ID to a tile ID relative to a given root tile.
static uint64_t computeMortonIndex(const CesiumGeometry::OctreeTileID &tileID)
Computes the Morton index for a given octree tile within its level.
static CesiumGeospatial::S2CellBoundingVolume computeBoundingVolume(const CesiumGeospatial::S2CellBoundingVolume &rootBoundingVolume, const CesiumGeometry::QuadtreeTileID &tileID, const CesiumGeospatial::Ellipsoid &ellipsoid=CesiumGeospatial::Ellipsoid::WGS84) noexcept
Computes the bounding volume for an implicit quadtree tile with the given ID as an S2 cell bounding v...
static CesiumGeometry::BoundingCylinderRegion computeBoundingVolume(const CesiumGeometry::BoundingCylinderRegion &rootBoundingVolume, const CesiumGeometry::QuadtreeTileID &tileID) noexcept
Computes the bounding volume for an implicit quadtree tile with the given ID as a bounding cylinder.
static CesiumGeometry::OctreeTileID getSubtreeRootID(uint32_t subtreeLevels, const CesiumGeometry::OctreeTileID &tileID) noexcept
Gets the ID of the root tile of the subtree that contains a given tile.
static CesiumGeometry::QuadtreeTileID getSubtreeRootID(uint32_t subtreeLevels, const CesiumGeometry::QuadtreeTileID &tileID) noexcept
Gets the ID of the root tile of the subtree that contains a given tile.
static std::string resolveUrl(const std::string &baseUrl, const std::string &urlTemplate, const CesiumGeometry::QuadtreeTileID &quadtreeID)
Resolves a templatized implicit tiling URL with a quadtree tile ID.
static CesiumGeometry::OrientedBoundingBox computeBoundingVolume(const CesiumGeometry::OrientedBoundingBox &rootBoundingVolume, const CesiumGeometry::OctreeTileID &tileID) noexcept
Computes the bounding volume for an implicit octree tile with the given ID as an oriented bounding bo...
static CesiumGeometry::BoundingCylinderRegion computeBoundingVolume(const CesiumGeometry::BoundingCylinderRegion &rootBoundingVolume, const CesiumGeometry::OctreeTileID &tileID) noexcept
Computes the bounding volume for an implicit octree tile with the given ID as a bounding cylinder.
static Cesium3DTiles::BoundingVolume computeBoundingVolume(const Cesium3DTiles::BoundingVolume &rootBoundingVolume, const CesiumGeometry::QuadtreeTileID &tileID, const CesiumGeospatial::Ellipsoid &ellipsoid=CesiumGeospatial::Ellipsoid::WGS84) noexcept
Computes the bounding volume for an implicit quadtree tile with the given ID as a Cesium3DTiles::Boun...
static double computeLevelDenominator(uint32_t level) noexcept
Computes the denominator for a given implicit tile level.
static OctreeChildren getChildren(const CesiumGeometry::OctreeTileID &tileID) noexcept
Gets a lightweight virtual container for enumerating the octree IDs of the children of a given octree...
static QuadtreeChildren getChildren(const CesiumGeometry::QuadtreeTileID &tileID) noexcept
Gets a lightweight virtual container for enumerating the quadtree IDs of the children of a given quad...
static CesiumGeometry::OrientedBoundingBox computeBoundingVolume(const CesiumGeometry::OrientedBoundingBox &rootBoundingVolume, const CesiumGeometry::QuadtreeTileID &tileID) noexcept
Computes the bounding volume for an implicit quadtree tile with the given ID as an oriented bounding ...
static uint64_t computeRelativeMortonIndex(const CesiumGeometry::OctreeTileID &subtreeRootID, const CesiumGeometry::OctreeTileID &tileID)
Computes the relative Morton index for a given octree tile within its level of a subtree rooted at th...
static CesiumGeospatial::BoundingRegion computeBoundingVolume(const CesiumGeospatial::BoundingRegion &rootBoundingVolume, const CesiumGeometry::OctreeTileID &tileID, const CesiumGeospatial::Ellipsoid &ellipsoid=CesiumGeospatial::Ellipsoid::WGS84) noexcept
Computes the bounding volume for an implicit octree tile with the given ID as a bounding region.
static Cesium3DTiles::BoundingVolume computeBoundingVolume(const Cesium3DTiles::BoundingVolume &rootBoundingVolume, const CesiumGeometry::OctreeTileID &tileID, const CesiumGeospatial::Ellipsoid &ellipsoid=CesiumGeospatial::Ellipsoid::WGS84) noexcept
Computes the bounding volume for an implicit octree tile with the given ID as a Cesium3DTiles::Boundi...
static uint64_t computeMortonIndex(const CesiumGeometry::QuadtreeTileID &tileID)
Computes the Morton index for a given quadtree tile within its level.
static std::string resolveUrl(const std::string &baseUrl, const std::string &urlTemplate, const CesiumGeometry::OctreeTileID &octreeID)
Resolves a templatized implicit tiling URL with an octree tile ID.
static CesiumGeometry::QuadtreeTileID absoluteTileIDToRelative(const CesiumGeometry::QuadtreeTileID &rootID, const CesiumGeometry::QuadtreeTileID &tileID) noexcept
Converts an absolute tile ID to a tile ID relative to a given root tile.
An STL-compatible iterator over the children of an octree tile.
const CesiumGeometry::OctreeTileID & operator*() const
Returns a reference to the current CesiumGeometry::OctreeTileID being iterated.
bool operator==(const iterator &rhs) const noexcept
Checks if two iterators are at the same child.
std::forward_iterator_tag iterator_category
The iterator category tag denoting this is a forward iterator.
iterator & operator++()
Advances the iterator to the next child.
iterator(const CesiumGeometry::OctreeTileID &parentTileID, bool isEnd) noexcept
Creates a new iterator over the children of a octree tile.
iterator operator++(int)
Advances the iterator to the next child.
void difference_type
The type used to identify distance between iterators.
bool operator!=(const iterator &rhs) const noexcept
Checks if two iterators are NOT at the same child.
const CesiumGeometry::OctreeTileID * operator->() const
Returns a pointer to the current CesiumGeometry::OctreeTileID being iterated.
A lightweight virtual container enumerating the octree IDs of the children of a given octree tile.
constexpr int64_t size() const noexcept
Returns the total number of CesiumGeometry::OctreeTileID children for this tile, which will always be...
iterator end() const noexcept
Returns an iterator starting at the last child.
iterator begin() const noexcept
Returns an iterator starting at the first child.
OctreeChildren(const CesiumGeometry::OctreeTileID &tileID) noexcept
Creates a OctreeChildren instance from the provided parent tile.
An STL-compatible iterator over the children of a quadtree tile.
iterator operator++(int)
Advances the iterator to the next child.
void difference_type
The type used to identify distance between iterators.
const CesiumGeometry::QuadtreeTileID * operator->() const
Returns a pointer to the current CesiumGeometry::QuadtreeTileID being iterated.
std::forward_iterator_tag iterator_category
The iterator category tag denoting this is a forward iterator.
bool operator!=(const iterator &rhs) const noexcept
Checks if two iterators are NOT at the same child.
iterator & operator++()
Advances the iterator to the next child.
const CesiumGeometry::QuadtreeTileID & operator*() const
Returns a reference to the current CesiumGeometry::QuadtreeTileID being iterated.
bool operator==(const iterator &rhs) const noexcept
Checks if two iterators are at the same child.
iterator(const CesiumGeometry::QuadtreeTileID &parentTileID, bool isEnd) noexcept
Creates a new iterator over the children of a quadtree tile.
A lightweight virtual container enumerating the quadtree IDs of the children of a given quadtree tile...
constexpr int64_t size() const noexcept
Returns the total number of CesiumGeometry::QuadtreeTileID children for this tile,...
QuadtreeChildren(const CesiumGeometry::QuadtreeTileID &tileID) noexcept
Creates a QuadtreeChildren instance from the provided parent tile.
iterator begin() const noexcept
Returns an iterator starting at the first child.
iterator end() const noexcept
Returns an iterator starting at the last child.
A bounding volume defined as a region following the surface of a cylinder between two radius values....
A bounding volume defined as a closed and convex cuboid with any orientation.
A bounding volume specified as a longitude/latitude bounding box and a minimum and maximum height.
A quadratic surface defined in Cartesian coordinates.
Definition Ellipsoid.h:39
Classes that support loading and converting 3D Tiles tile content.
Classes for using 3D Tiles.
Definition Buffer.h:7
Basic geometry classes for Cesium.
Classes for geospatial computations in Cesium.
A bounding volume that encloses a tile or its content. At least one bounding volume property is requi...
A structure serving as a unique identifier for a node in an octree.
Uniquely identifies a node in a quadtree.