1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
|
// Boost.Geometry
// Unit Test
// Copyright (c) 2022 Oracle and/or its affiliates.
// Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
// Use, modification and distribution is subject to the Boost Software License,
// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#include <limits>
#include <type_traits>
#include <geometry_test_common.hpp>
#include <boost/geometry/util/condition.hpp>
#include <boost/geometry/util/math.hpp>
#include <boost/geometry/util/normalize_spheroidal_box_coordinates.hpp>
#include <boost/geometry/util/normalize_spheroidal_coordinates.hpp>
namespace bgm = bg::math;
template <typename T, std::enable_if_t<std::numeric_limits<T>::has_quiet_NaN, int> = 0>
void test_equals(T const& v, T const& r)
{
bool const check = bg::math::equals(v, r) || (std::isnan(v) && std::isnan(r));
BOOST_CHECK_MESSAGE(check, v << " different than " << r);
}
template <typename T, std::enable_if_t<! std::numeric_limits<T>::has_quiet_NaN, int> = 0>
void test_equals(T const& v, T const& r)
{
bool const check = bg::math::equals(v, r);
BOOST_CHECK_MESSAGE(check, v << " different than " << r);
}
template <typename T>
void test_one(T lon, T lat, T const& res_lon, T const& res_lat)
{
bg::math::normalize_spheroidal_coordinates<bg::degree>(lon, lat);
test_equals(lon, res_lon);
test_equals(lat, res_lat);
}
template <typename T>
void test_box(T lon1, T lat1, T lon2, T lat2,
T const& res_lon1, T const& res_lat1, T const& res_lon2, T const& res_lat2)
{
bg::math::normalize_spheroidal_box_coordinates<bg::degree>(lon1, lat1, lon2, lat2);
test_equals(lon1, res_lon1);
test_equals(lat1, res_lat1);
test_equals(lon2, res_lon2);
test_equals(lat2, res_lat2);
}
template <typename T>
void test_all()
{
test_one<T>(270, 0, -90, 0);
test_one<T>(-180, 10, 180, 10);
test_one<T>(-180, -90, 0, -90);
if (BOOST_GEOMETRY_CONDITION(std::numeric_limits<T>::has_quiet_NaN))
{
T nan = std::numeric_limits<T>::quiet_NaN();
test_one<T>(nan, 10, nan, 10);
test_one<T>(10, nan, 10, nan);
test_one<T>(nan, nan, nan, nan);
test_box<T>(nan, 10, 20, 20, nan, 10, 20, 20);
test_box<T>(10, nan, 20, 20, 10, nan, 20, 20);
test_box<T>(10, 10, nan, 20, 10, 10, nan, 20);
test_box<T>(10, 10, 20, nan, 10, 10, 20, nan);
test_box<T>(nan, 10, 270, 20, nan, 10, -90, 20);
test_box<T>(270, 10, nan, 20, -90, 10, nan, 20);
}
}
int test_main(int, char* [])
{
test_all<int>();
test_all<float>();
test_all<double>();
return 0;
}
|