Exemplo n.º 1
0
 /**
  * Get latitude without checking the validity.
  */
 double lat_without_check() const {
     return fix_to_double(m_y);
 }
Exemplo n.º 2
0
 /**
  * Get latitude.
  *
  * @throws invalid_location if the location is invalid
  */
 double lat() const {
     if (!valid()) {
         throw osmium::invalid_location{"invalid location"};
     }
     return fix_to_double(m_y);
 }
Exemplo n.º 3
0
 double lat() const {
     return fix_to_double(m_y);
 }
Exemplo n.º 4
0
 /**
  * Get longitude without checking the validity.
  */
 double lon_without_check() const {
     return fix_to_double(m_x);
 }
Exemplo n.º 5
0
 double lon() const {
     return fix_to_double(m_x);
 }