mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-05-04 18:11:01 -05:00
259 lines
7.5 KiB
C++
259 lines
7.5 KiB
C++
/*****************************************************************************************
|
|
* *
|
|
* OpenSpace *
|
|
* *
|
|
* Copyright (c) 2014-2016 *
|
|
* *
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy of this *
|
|
* software and associated documentation files (the "Software"), to deal in the Software *
|
|
* without restriction, including without limitation the rights to use, copy, modify, *
|
|
* merge, publish, distribute, sublicense, and/or sell copies of the Software, and to *
|
|
* permit persons to whom the Software is furnished to do so, subject to the following *
|
|
* conditions: *
|
|
* *
|
|
* The above copyright notice and this permission notice shall be included in all copies *
|
|
* or substantial portions of the Software. *
|
|
* *
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, *
|
|
* INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A *
|
|
* PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT *
|
|
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF *
|
|
* CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE *
|
|
* OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
|
|
****************************************************************************************/
|
|
|
|
#ifndef __GEODETIC2_H__
|
|
#define __GEODETIC2_H__
|
|
|
|
#include <glm/glm.hpp>
|
|
#include <vector>
|
|
#include <memory>
|
|
#include <ostream>
|
|
|
|
#define _USE_MATH_DEFINES
|
|
#include <math.h>
|
|
|
|
#include <ghoul/misc/assert.h>
|
|
|
|
|
|
|
|
|
|
// Using double precision
|
|
typedef double Scalar;
|
|
typedef glm::dvec2 Vec2;
|
|
typedef glm::dvec3 Vec3;
|
|
|
|
namespace openspace {
|
|
|
|
// Forward declaration
|
|
class Ellipsoid;
|
|
|
|
struct Geodetic2 {
|
|
Geodetic2();
|
|
Geodetic2(Scalar latitude, Scalar longitude);
|
|
Geodetic2(const Geodetic2& src);
|
|
|
|
|
|
/*
|
|
static Geodetic2 fromCartesian(const Vec3& v);
|
|
Vec3 asUnitCartesian() const;
|
|
*/
|
|
|
|
|
|
|
|
Vec2 toLonLatVec2() const;
|
|
|
|
bool operator==(const Geodetic2& other) const;
|
|
bool operator!=(const Geodetic2& other) const { return !(*this == (other)); }
|
|
|
|
Geodetic2 operator+(const Geodetic2& other) const;
|
|
Geodetic2 operator-(const Geodetic2& other) const;
|
|
Geodetic2 operator*(Scalar scalar) const;
|
|
Geodetic2 operator/(Scalar scalar) const;
|
|
|
|
Scalar lat;
|
|
Scalar lon;
|
|
};
|
|
|
|
|
|
|
|
struct Geodetic3 {
|
|
Geodetic2 geodetic2;
|
|
Scalar height;
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////////////
|
|
// TILE INDEX //
|
|
//////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
using HashKey = unsigned long;
|
|
|
|
|
|
struct GeodeticTileIndex {
|
|
|
|
int x, y, level;
|
|
|
|
GeodeticTileIndex()
|
|
: x(0), y(0), level(0) {
|
|
|
|
}
|
|
|
|
GeodeticTileIndex(int x, int y, int level)
|
|
: x(x), y(y), level(level) {
|
|
|
|
}
|
|
|
|
GeodeticTileIndex(const GeodeticTileIndex& other)
|
|
: x(other.x), y(other.y), level(other.level) {
|
|
|
|
}
|
|
|
|
/**
|
|
Creates the geodetic tile index for the Geodetic patch that covers the
|
|
point p at the specified level
|
|
*/
|
|
GeodeticTileIndex(const Geodetic2& point, int level)
|
|
: level(level) {
|
|
int numIndicesAtLevel = 1 << level;
|
|
double u = 0.5 + point.lon / (2*M_PI);
|
|
double v = 0.25 - point.lat / (2*M_PI);
|
|
double xIndexSpace = u * numIndicesAtLevel;
|
|
double yIndexSpace = v * numIndicesAtLevel;
|
|
|
|
x = floor(xIndexSpace);
|
|
y = floor(yIndexSpace);
|
|
}
|
|
|
|
GeodeticTileIndex parent() const {
|
|
ghoul_assert(level > 0, "tile at level 0 has no parent!");
|
|
return GeodeticTileIndex(x / 2, y / 2, level - 1);
|
|
}
|
|
|
|
bool isWestChild() const {
|
|
return x % 2 == 0;
|
|
}
|
|
|
|
bool isEastChild() const {
|
|
return x % 2 == 1;
|
|
}
|
|
|
|
bool isNorthChild() const {
|
|
return y % 2 == 0;
|
|
}
|
|
|
|
bool isSouthChild() const {
|
|
return y % 2 == 1;
|
|
}
|
|
|
|
bool hasParent() const {
|
|
return level > 0;
|
|
}
|
|
|
|
/**
|
|
Gets the tile at a specified offset from this tile.
|
|
Accepts delta indices ranging from [-2^level, Infinity[
|
|
*/
|
|
GeodeticTileIndex getRelatedTile(int deltaX, int deltaY) const {
|
|
int indicesAtThisLevel = 1 << level;
|
|
int newX = (indicesAtThisLevel + x + deltaX) % indicesAtThisLevel;
|
|
int newY = (indicesAtThisLevel + y + deltaY) % indicesAtThisLevel;
|
|
return GeodeticTileIndex(newX, newY, level);
|
|
}
|
|
|
|
HashKey hashKey() const;
|
|
|
|
bool operator==(const GeodeticTileIndex& other) const;
|
|
};
|
|
|
|
std::ostream& operator<<(std::ostream& os, const GeodeticTileIndex& ti);
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////////////
|
|
// GEODETICPATCH //
|
|
//////////////////////////////////////////////////////////////////////////////////////
|
|
class GeodeticPatch {
|
|
public:
|
|
GeodeticPatch(
|
|
Scalar centerLat,
|
|
Scalar centerLon,
|
|
Scalar halfSizeLat,
|
|
Scalar halfSizeLon);
|
|
|
|
GeodeticPatch(
|
|
const Geodetic2& center,
|
|
const Geodetic2& halfSize);
|
|
|
|
GeodeticPatch(const GeodeticPatch& patch);
|
|
|
|
GeodeticPatch(const GeodeticTileIndex& tileIndex);
|
|
|
|
|
|
void setCenter(const Geodetic2&);
|
|
void setHalfSize(const Geodetic2&);
|
|
|
|
/**
|
|
Returns the minimal bounding radius that together with the LatLonPatch's
|
|
center point represents a sphere in which the patch is completely contained.
|
|
|
|
TODO : THIS FUNCTION IS CURRENTLY ERROR PRONE SINCE THE PATCH IS NOW COVERING
|
|
A PART OF AN ELLIPSOID AND NOT A SPHERE! MUST CHECK IF THIS FUNCTION IS STILL
|
|
VALID.
|
|
*/
|
|
Scalar minimalBoundingRadius(const Ellipsoid& ellipsoid) const;
|
|
|
|
/**
|
|
Returns the area of the patch with unit radius
|
|
*/
|
|
// Scalar unitArea() const;
|
|
|
|
|
|
Geodetic2 northWestCorner() const;
|
|
Geodetic2 northEastCorner() const;
|
|
Geodetic2 southWestCorner() const;
|
|
Geodetic2 southEastCorner() const;
|
|
|
|
/**
|
|
* Clamps a point to the patch region
|
|
*/
|
|
Geodetic2 clamp(const Geodetic2& p) const;
|
|
|
|
/**
|
|
* Returns the corner of the patch that is closest to the given point p
|
|
*/
|
|
Geodetic2 closestCorner(const Geodetic2& p) const;
|
|
|
|
/**
|
|
* Returns a point on the patch that minimizes the great-circle distance to
|
|
* the given point p.
|
|
*/
|
|
Geodetic2 closestPoint(const Geodetic2& p) const;
|
|
|
|
/**
|
|
* Returns the minimum tile level of the patch (based on largest side)
|
|
*/
|
|
Scalar minimumTileLevel() const;
|
|
|
|
/**
|
|
* Returns the maximum level of the patch (based on smallest side)
|
|
*/
|
|
Scalar maximumTileLevel() const;
|
|
|
|
const Geodetic2& center() const;
|
|
const Geodetic2& halfSize() const;
|
|
Geodetic2 size() const;
|
|
|
|
private:
|
|
Geodetic2 _center;
|
|
Geodetic2 _halfSize;
|
|
};
|
|
|
|
} // namespace openspace
|
|
|
|
#endif // __GEODETIC2_H__
|