File: azimuth.cpp

package info (click to toggle)
boost1.90 1.90.0-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 593,120 kB
  • sloc: cpp: 4,190,908; xml: 196,648; python: 34,618; ansic: 23,145; asm: 5,468; sh: 3,774; makefile: 1,161; perl: 1,020; sql: 728; ruby: 676; yacc: 478; java: 77; lisp: 24; csh: 6
file content (88 lines) | stat: -rw-r--r-- 2,526 bytes parent folder | download | duplicates (11)
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
// Boost.Geometry
// Unit Test

// Copyright (c) 2021, Oracle and/or its affiliates.

// Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle

// Licensed under the Boost Software License version 1.0.
// http://www.boost.org/users/license.html


#include <geometry_test_common.hpp>

#include <boost/geometry/geometries/geometries.hpp>

#include <boost/geometry/algorithms/azimuth.hpp>


template <typename P, typename S>
auto call_azimuth(P const& p1, P const& p2, S const& s)
{
    return bg::azimuth(p1, p2, s);
}

template <typename P>
auto call_azimuth(P const& p1, P const& p2, bg::default_strategy const&)
{
    return bg::azimuth(p1, p2);
}

template <typename P, typename S = bg::default_strategy>
void test_one(P const& p1, P const& p2, double expected, S const& s = S())
{
    double const result = call_azimuth(p1, p2, s) * bg::math::r2d<double>();
    BOOST_CHECK_CLOSE(result, expected, 0.0001);
}

template <typename P>
void test_car()
{
    test_one(P(0, 0), P(0, 0), 0);
    test_one(P(0, 0), P(1, 1), 45);
    test_one(P(0, 0), P(100, 1), 89.427061302316517);
    test_one(P(0, 0), P(-1, 1), -45);
    test_one(P(0, 0), P(-100, 1), -89.427061302316517);
}

template <typename P>
void test_sph()
{
    test_one(P(0, 0), P(0, 0), 0);
    test_one(P(0, 0), P(1, 1), 44.995636455344851);
    test_one(P(0, 0), P(100, 1), 88.984576593576293);
    test_one(P(0, 0), P(-1, 1), -44.995636455344851);
    test_one(P(0, 0), P(-100, 1), -88.984576593576293);
}

template <typename P>
void test_geo()
{
    test_one(P(0, 0), P(0, 0), 0);
    test_one(P(0, 0), P(1, 1), 45.187718848049521);
    test_one(P(0, 0), P(100, 1), 88.986933066023497);
    test_one(P(0, 0), P(-1, 1), -45.187718848049521);
    test_one(P(0, 0), P(-100, 1), -88.986933066023497);
}

template <typename P>
void test_geo_v()
{
    bg::strategies::azimuth::geographic<bg::strategy::vincenty> s;

    test_one(P(0, 0), P(0, 0), 0, s);
    test_one(P(0, 0), P(1, 1), 45.188040229339755, s);
    test_one(P(0, 0), P(100, 1), 88.986914518230208, s);
    test_one(P(0, 0), P(-1, 1), -45.188040229339755, s);
    test_one(P(0, 0), P(-100, 1), -88.986914518230208, s);
}

int test_main(int, char* [])
{
    test_car< bg::model::point<double, 2, bg::cs::cartesian> >();
    test_sph< bg::model::point<double, 2, bg::cs::spherical_equatorial<bg::degree> > >();
    test_geo< bg::model::point<double, 2, bg::cs::geographic<bg::degree> > >();
    test_geo_v< bg::model::point<double, 2, bg::cs::geographic<bg::degree> > >();
    
    return 0;
}