10 #if !defined(GEOGRAPHICLIB_CONSTANTS_HPP) 11 #define GEOGRAPHICLIB_CONSTANTS_HPP 1 21 #define GEOGRAPHICLIB_VERSION_NUM(a,b,c) ((((a) * 10000 + (b)) * 100) + (c)) 34 #define GEOGRAPHICLIB_VERSION \ 35 GEOGRAPHICLIB_VERSION_NUM(GEOGRAPHICLIB_VERSION_MAJOR, \ 36 GEOGRAPHICLIB_VERSION_MINOR, \ 37 GEOGRAPHICLIB_VERSION_PATCH) 43 #if !defined(GEOGRAPHICLIB_HAS_STATIC_ASSERT) 44 # if __cplusplus >= 201103 || defined(__GXX_EXPERIMENTAL_CXX0X__) 45 # define GEOGRAPHICLIB_HAS_STATIC_ASSERT 1 46 # elif defined(_MSC_VER) && _MSC_VER >= 1600 62 # define GEOGRAPHICLIB_HAS_STATIC_ASSERT 1 64 # define GEOGRAPHICLIB_HAS_STATIC_ASSERT 0 72 #if !defined(GEOGRAPHICLIB_STATIC_ASSERT) 73 # if GEOGRAPHICLIB_HAS_STATIC_ASSERT 74 # define GEOGRAPHICLIB_STATIC_ASSERT static_assert 76 # define GEOGRAPHICLIB_STATIC_ASSERT(cond,reason) \ 77 { enum{ GEOGRAPHICLIB_STATIC_ASSERT_ENUM = 1/int(cond) }; } 81 #if defined(_MSC_VER) && defined(GEOGRAPHICLIB_SHARED_LIB) && \ 82 GEOGRAPHICLIB_SHARED_LIB 83 # if GEOGRAPHICLIB_SHARED_LIB > 1 84 # error GEOGRAPHICLIB_SHARED_LIB must be 0 or 1 85 # elif defined(GeographicLib_EXPORTS) 86 # define GEOGRAPHICLIB_EXPORT __declspec(dllexport) 88 # define GEOGRAPHICLIB_EXPORT __declspec(dllimport) 91 # define GEOGRAPHICLIB_EXPORT 99 # define GEOGRAPHICLIB_DEPRECATED(msg) __attribute__((deprecated(msg))) 101 # define GEOGRAPHICLIB_DEPRECATED(msg) __attribute__((deprecated)) 103 #elif defined(_MSC_VER) && _MSC_VER >= 1300 104 # define GEOGRAPHICLIB_DEPRECATED(msg) __declspec(deprecated(msg)) 106 # define GEOGRAPHICLIB_DEPRECATED(msg) 160 {
return 6378137 * meter<T>(); }
173 return 1 / (
T(298257223563LL) / 1000000000 );
185 {
return T(3986004) * 100000000 + 41800000; }
196 {
return 7292115 / (
T(1000000) * 100000); }
206 {
return 6378137 * meter<T>(); }
217 {
return T(3986005) * 100000000; }
235 {
return 7292115 / (
T(1000000) * 100000); }
246 {
return T(108263) / 100000000; }
256 {
return T(9996) / 10000; }
266 {
return T(994) / 1000; }
283 template<
typename T>
static T meter() {
return T(1); }
292 {
return 1000 * meter<real>(); }
298 {
return 1852 * meter<real>(); }
308 {
return meter<real>() * meter<real>(); }
313 {
return square_meter<real>(); }
318 {
return 10000 * square_meter<real>(); }
323 {
return kilometer() * kilometer(); }
328 {
return nauticalmile() * nauticalmile(); }
338 {
return real(254 * 12) / 10000 * meter<real>(); }
376 {
return real(1200) / 3937 * meter<real>(); }
403 #endif // GEOGRAPHICLIB_CONSTANTS_HPP static Math::real arcminute()
static Math::real kilometer()
#define GEOGRAPHICLIB_EXPORT
static Math::real UPS_k0()
static Math::real square_nauticalmile()
static Math::real WGS84_omega()
static Math::real nauticalmile()
static Math::real arcsecond()
static Math::real surveyfoot()
static Math::real furlong()
static Math::real hectare()
static Math::real GRS80_omega()
static Math::real meter()
static Math::real degree()
static Math::real fathom()
static Math::real UTM_k0()
Header for GeographicLib::Math class.
static Math::real chain()
Eigen::Triplet< double > T
Namespace for GeographicLib.
static Math::real WGS84_GM()
static Math::real square_meter()
Constants needed by GeographicLib
static Math::real WGS84_a()
Exception handling for GeographicLib.
static Math::real square_kilometer()
static Math::real GRS80_a()
static Math::real square_mile()
static Math::real GRS80_GM()
static Math::real GRS80_J2()
static Math::real WGS84_f()
GeographicErr(const std::string &msg)