mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-06 11:39:49 -06:00
118 lines
4.2 KiB
C++
118 lines
4.2 KiB
C++
/*****************************************************************************************
|
|
* *
|
|
* OpenSpace *
|
|
* *
|
|
* Copyright (c) 2014-2017 *
|
|
* *
|
|
* 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 __OPENSPACE_MODULE_GLOBEBROWSING___GEODETICPATCH___H__
|
|
#define __OPENSPACE_MODULE_GLOBEBROWSING___GEODETICPATCH___H__
|
|
|
|
#include <modules/globebrowsing/geometry/geodetic2.h>
|
|
#include <modules/globebrowsing/tile/quad.h>
|
|
|
|
namespace openspace {
|
|
namespace globebrowsing {
|
|
|
|
struct TileIndex;
|
|
|
|
class GeodeticPatch {
|
|
public:
|
|
GeodeticPatch(
|
|
double centerLat,
|
|
double centerLon,
|
|
double halfSizeLat,
|
|
double halfSizeLon);
|
|
|
|
GeodeticPatch(
|
|
const Geodetic2& center,
|
|
const Geodetic2& halfSize);
|
|
|
|
GeodeticPatch(const GeodeticPatch& patch);
|
|
|
|
GeodeticPatch(const TileIndex& tileIndex);
|
|
|
|
void setCenter(const Geodetic2&);
|
|
void setHalfSize(const Geodetic2&);
|
|
|
|
/**
|
|
* Returns the latitude boundary which is closest to the equator
|
|
*/
|
|
double edgeLatitudeNearestEquator() const;
|
|
|
|
/**
|
|
* Returns \c true if the center above the equator
|
|
*/
|
|
double isNorthern() const;
|
|
|
|
Geodetic2 getCorner(Quad q) const;
|
|
Geodetic2 getSize() const;
|
|
|
|
double minLat() const;
|
|
double maxLat() const;
|
|
double minLon() const;
|
|
double maxLon() const;
|
|
|
|
/**
|
|
* Returns \c true if the specified coordinate is contained within the patch
|
|
*/
|
|
bool contains(const Geodetic2& p) 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)
|
|
*/
|
|
double minimumTileLevel() const;
|
|
|
|
/**
|
|
* Returns the maximum level of the patch (based on smallest side)
|
|
*/
|
|
double maximumTileLevel() const;
|
|
|
|
const Geodetic2& center() const;
|
|
const Geodetic2& halfSize() const;
|
|
Geodetic2 size() const;
|
|
|
|
private:
|
|
Geodetic2 _center;
|
|
Geodetic2 _halfSize;
|
|
};
|
|
|
|
} // namespace globebrowsing
|
|
} // namespace openspace
|
|
|
|
#endif // __OPENSPACE_MODULE_GLOBEBROWSING___GEODETICPATCH___H__
|