Libosmium  2.5.4
Fast and flexible C++ library for working with OpenStreetMap data
haversine.hpp
Go to the documentation of this file.
1 #ifndef OSMIUM_GEOM_HAVERSINE_HPP
2 #define OSMIUM_GEOM_HAVERSINE_HPP
3 
4 /*
5 
6 This file is part of Osmium (http://osmcode.org/libosmium).
7 
8 Copyright 2013-2015 Jochen Topf <jochen@topf.org> and others (see README).
9 
10 Boost Software License - Version 1.0 - August 17th, 2003
11 
12 Permission is hereby granted, free of charge, to any person or organization
13 obtaining a copy of the software and accompanying documentation covered by
14 this license (the "Software") to use, reproduce, display, distribute,
15 execute, and transmit the Software, and to prepare derivative works of the
16 Software, and to permit third-parties to whom the Software is furnished to
17 do so, all subject to the following:
18 
19 The copyright notices in the Software and this entire statement, including
20 the above license grant, this restriction and the following disclaimer,
21 must be included in all copies of the Software, in whole or in part, and
22 all derivative works of the Software, unless such copies or derivative
23 works are solely in the form of machine-executable object code generated by
24 a source language processor.
25 
26 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
27 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
28 FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
29 SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
30 FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
31 ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
32 DEALINGS IN THE SOFTWARE.
33 
34 */
35 
36 #include <cmath>
37 #include <iterator>
38 
40 #include <osmium/geom/util.hpp>
41 #include <osmium/osm/node_ref.hpp>
42 #include <osmium/osm/way.hpp>
43 
44 namespace osmium {
45 
46  namespace geom {
47 
56  namespace haversine {
57 
59  constexpr double EARTH_RADIUS_IN_METERS = 6372797.560856;
60 
64  inline double distance(const osmium::geom::Coordinates& c1, const osmium::geom::Coordinates& c2) {
65  double lonh = sin(deg_to_rad(c1.x - c2.x) * 0.5);
66  lonh *= lonh;
67  double lath = sin(deg_to_rad(c1.y - c2.y) * 0.5);
68  lath *= lath;
69  const double tmp = cos(deg_to_rad(c1.y)) * cos(deg_to_rad(c2.y));
70  return 2.0 * EARTH_RADIUS_IN_METERS * asin(sqrt(lath + tmp*lonh));
71  }
72 
76  inline double distance(const osmium::WayNodeList& wnl) {
77  double sum_length = 0;
78 
79  for (auto it = wnl.begin(); it != wnl.end(); ++it) {
80  if (std::next(it) != wnl.end()) {
81  sum_length += distance(it->location(), std::next(it)->location());
82  }
83  }
84 
85  return sum_length;
86  }
87 
88  } // namespace haversine
89 
90  } // namespace geom
91 
92 } // namespace osmium
93 
94 #endif // OSMIUM_GEOM_HAVERSINE_HPP
double y
Definition: coordinates.hpp:49
constexpr double EARTH_RADIUS_IN_METERS
Earth's quadratic mean radius for WGS84.
Definition: haversine.hpp:59
double distance(const osmium::geom::Coordinates &c1, const osmium::geom::Coordinates &c2)
Definition: haversine.hpp:64
Definition: way.hpp:52
Namespace for everything in the Osmium library.
Definition: assembler.hpp:59
constexpr double deg_to_rad(double degree) noexcept
Convert angle from degrees to radians.
Definition: util.hpp:62
Definition: coordinates.hpp:46
iterator begin() noexcept
Returns an iterator to the beginning.
Definition: node_ref_list.hpp:144
iterator end() noexcept
Returns an iterator to the end.
Definition: node_ref_list.hpp:149
double x
Definition: coordinates.hpp:48