Libosmium  2.20.0
Fast and flexible C++ library for working with OpenStreetMap data
node_ref.hpp
Go to the documentation of this file.
1#ifndef OSMIUM_OSM_NODE_REF_HPP
2#define OSMIUM_OSM_NODE_REF_HPP
3
4/*
5
6This file is part of Osmium (https://osmcode.org/libosmium).
7
8Copyright 2013-2023 Jochen Topf <jochen@topf.org> and others (see README).
9
10Boost Software License - Version 1.0 - August 17th, 2003
11
12Permission is hereby granted, free of charge, to any person or organization
13obtaining a copy of the software and accompanying documentation covered by
14this license (the "Software") to use, reproduce, display, distribute,
15execute, and transmit the Software, and to prepare derivative works of the
16Software, and to permit third-parties to whom the Software is furnished to
17do so, all subject to the following:
18
19The copyright notices in the Software and this entire statement, including
20the above license grant, this restriction and the following disclaimer,
21must be included in all copies of the Software, in whole or in part, and
22all derivative works of the Software, unless such copies or derivative
23works are solely in the form of machine-executable object code generated by
24a source language processor.
25
26THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
27IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
28FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
29SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
30FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
31ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
32DEALINGS IN THE SOFTWARE.
33
34*/
35
38#include <osmium/osm/types.hpp>
39
40#include <cstdint>
41#include <cstdlib>
42#include <iosfwd>
43
44namespace osmium {
45
50 class NodeRef : public osmium::memory::detail::ItemHelper {
51
54
55 public:
56
63 constexpr NodeRef(const osmium::object_id_type ref = 0, const osmium::Location& location = Location{}) noexcept : // NOLINT(google-explicit-constructor, hicpp-explicit-conversions)
64 m_ref(ref),
66 }
67
71 constexpr osmium::object_id_type ref() const noexcept {
72 return m_ref;
73 }
74
79 return static_cast<osmium::unsigned_object_id_type>(std::abs(m_ref));
80 }
81
86 return m_location;
87 }
88
92 constexpr osmium::Location location() const noexcept {
93 return m_location;
94 }
95
101 double lon() const {
102 return m_location.lon();
103 }
104
110 double lat() const {
111 return m_location.lat();
112 }
113
117 constexpr int32_t x() const noexcept {
118 return m_location.x();
119 }
120
124 constexpr int32_t y() const noexcept {
125 return m_location.y();
126 }
127
134 m_ref = ref;
135 return *this;
136 }
137
145 return *this;
146 }
147
148 }; // class NodeRef
149
153 inline constexpr bool operator==(const NodeRef& lhs, const NodeRef& rhs) noexcept {
154 return lhs.ref() == rhs.ref();
155 }
156
161 inline constexpr bool operator!=(const NodeRef& lhs, const NodeRef& rhs) noexcept {
162 return !(lhs == rhs);
163 }
164
169 inline constexpr bool operator<(const NodeRef& lhs, const NodeRef& rhs) noexcept {
170 return lhs.ref() < rhs.ref();
171 }
172
177 inline constexpr bool operator>(const NodeRef& lhs, const NodeRef& rhs) noexcept {
178 return rhs < lhs;
179 }
180
185 inline constexpr bool operator<=(const NodeRef& lhs, const NodeRef& rhs) noexcept {
186 return !(rhs < lhs);
187 }
188
193 inline constexpr bool operator>=(const NodeRef& lhs, const NodeRef& rhs) noexcept {
194 return !(lhs < rhs);
195 }
196
200 template <typename TChar, typename TTraits>
201 inline std::basic_ostream<TChar, TTraits>& operator<<(std::basic_ostream<TChar, TTraits>& out, const osmium::NodeRef& nr) {
202 return out << "<" << nr.ref() << " " << nr.location() << ">";
203 }
204
209
210 constexpr bool operator()(const NodeRef& lhs, const NodeRef& rhs) const noexcept {
211 return lhs.location() == rhs.location();
212 }
213
216 using result_type = bool;
217
218 }; // struct location_equal
219
224
225 constexpr bool operator()(const NodeRef& lhs, const NodeRef& rhs) const noexcept {
226 return lhs.location() < rhs.location();
227 }
228
231 using result_type = bool;
232
233 }; // struct location_less
234
235} // namespace osmium
236
237#endif // OSMIUM_OSM_NODE_REF_HPP
Definition: location.hpp:271
double lon() const
Definition: location.hpp:400
constexpr int32_t x() const noexcept
Definition: location.hpp:377
double lat() const
Definition: location.hpp:419
constexpr int32_t y() const noexcept
Definition: location.hpp:381
Definition: node_ref.hpp:50
NodeRef & set_ref(const osmium::object_id_type ref) noexcept
Definition: node_ref.hpp:133
osmium::unsigned_object_id_type positive_ref() const noexcept
Definition: node_ref.hpp:78
constexpr int32_t x() const noexcept
Definition: node_ref.hpp:117
constexpr NodeRef(const osmium::object_id_type ref=0, const osmium::Location &location=Location{}) noexcept
Definition: node_ref.hpp:63
double lon() const
Definition: node_ref.hpp:101
NodeRef & set_location(const osmium::Location &location) noexcept
Definition: node_ref.hpp:143
constexpr int32_t y() const noexcept
Definition: node_ref.hpp:124
constexpr osmium::Location location() const noexcept
Definition: node_ref.hpp:92
constexpr osmium::object_id_type ref() const noexcept
Definition: node_ref.hpp:71
double lat() const
Definition: node_ref.hpp:110
osmium::Location & location() noexcept
Definition: node_ref.hpp:85
osmium::object_id_type m_ref
Definition: node_ref.hpp:52
osmium::Location m_location
Definition: node_ref.hpp:53
Namespace for everything in the Osmium library.
Definition: assembler.hpp:53
bool operator==(const Changeset &lhs, const Changeset &rhs)
Definition: changeset.hpp:440
bool operator<=(const Changeset &lhs, const Changeset &rhs)
Definition: changeset.hpp:459
bool operator>(const Changeset &lhs, const Changeset &rhs)
Definition: changeset.hpp:455
int64_t object_id_type
Type for OSM object (node, way, or relation) IDs.
Definition: types.hpp:45
bool operator>=(const Changeset &lhs, const Changeset &rhs)
Definition: changeset.hpp:463
bool operator!=(const Changeset &lhs, const Changeset &rhs)
Definition: changeset.hpp:444
std::basic_ostream< TChar, TTraits > & operator<<(std::basic_ostream< TChar, TTraits > &out, const item_type item_type)
Definition: item_type.hpp:187
uint64_t unsigned_object_id_type
Type for OSM object (node, way, or relation) IDs where we only allow positive IDs.
Definition: types.hpp:46
bool operator<(const Changeset &lhs, const Changeset &rhs)
Definition: changeset.hpp:451
Definition: node_ref.hpp:208
bool result_type
Definition: node_ref.hpp:216
constexpr bool operator()(const NodeRef &lhs, const NodeRef &rhs) const noexcept
Definition: node_ref.hpp:210
Definition: node_ref.hpp:223
bool result_type
Definition: node_ref.hpp:231
constexpr bool operator()(const NodeRef &lhs, const NodeRef &rhs) const noexcept
Definition: node_ref.hpp:225