GeographicLib 2.1.2
GeographicLib::Georef Class Reference

Conversions for the World Geographic Reference System (georef) More...

#include <GeographicLib/Georef.hpp>

Static Public Member Functions

static void Forward (real lat, real lon, int prec, std::string &georef)
 
static void Reverse (const std::string &georef, real &lat, real &lon, int &prec, bool centerp=true)
 
static Math::real Resolution (int prec)
 
static int Precision (real res)
 

Detailed Description

Conversions for the World Geographic Reference System (georef)

The World Geographic Reference System is described in

It provides a compact string representation of a geographic area (expressed as latitude and longitude). The classes GARS and Geohash implement similar compact representations.

Example of use:

// Example of using the GeographicLib::GARS class
#include <iostream>
#include <iomanip>
#include <exception>
#include <string>
using namespace std;
using namespace GeographicLib;
int main() {
try {
{
// Sample forward calculation
double lat = 57.64911, lon = 10.40744; // Jutland
string georef;
for (int prec = -1; prec <= 11; ++prec) {
Georef::Forward(lat, lon, prec, georef);
cout << prec << " " << georef << "\n";
}
}
{
// Sample reverse calculation
string georef = "NKLN2444638946";
double lat, lon;
int prec;
cout << fixed;
Georef::Reverse(georef.substr(0, 2), lat, lon, prec);
cout << prec << " " << lat << " " << lon << "\n";
Georef::Reverse(georef.substr(0, 4), lat, lon, prec);
cout << prec << " " << lat << " " << lon << "\n";
Georef::Reverse(georef, lat, lon, prec);
cout << prec << " " << lat << " " << lon << "\n";
}
}
catch (const exception& e) {
cerr << "Caught exception: " << e.what() << "\n";
return 1;
}
}
int main(int argc, const char *const argv[])
Definition: CartConvert.cpp:29
Header for GeographicLib::Georef class.
static void Forward(real lat, real lon, int prec, std::string &georef)
Definition: Georef.cpp:27
static void Reverse(const std::string &georef, real &lat, real &lon, int &prec, bool centerp=true)
Definition: Georef.cpp:70
Namespace for GeographicLib.
Definition: Accumulator.cpp:12

Definition at line 38 of file Georef.hpp.

Member Function Documentation

◆ Forward()

void GeographicLib::Georef::Forward ( real  lat,
real  lon,
int  prec,
std::string &  georef 
)
static

Convert from geographic coordinates to georef.

Parameters
[in]latlatitude of point (degrees).
[in]lonlongitude of point (degrees).
[in]precthe precision of the resulting georef.
[out]georefthe georef string.
Exceptions
GeographicErrif lat is not in [−90°, 90°].
std::bad_allocif memory for georef can't be allocated.

prec specifies the precision of georef as follows:

  • prec = −1 (min), 15°
  • prec = 0, 1°
  • prec = 1, converted to prec = 2
  • prec = 2, 1'
  • prec = 3, 0.1'
  • prec = 4, 0.01'
  • prec = 5, 0.001'
  • prec = 11 (max), 10−9'

If lat or lon is NaN, then georef is set to "INVALID".

Definition at line 27 of file Georef.cpp.

References GeographicLib::Math::AngNormalize(), GeographicLib::Math::qd, and GeographicLib::Utility::str().

◆ Reverse()

void GeographicLib::Georef::Reverse ( const std::string &  georef,
real &  lat,
real &  lon,
int &  prec,
bool  centerp = true 
)
static

Convert from Georef to geographic coordinates.

Parameters
[in]georefthe Georef.
[out]latlatitude of point (degrees).
[out]lonlongitude of point (degrees).
[out]precthe precision of georef.
[in]centerpif true (the default) return the center georef, otherwise return the south-west corner.
Exceptions
GeographicErrif georef is illegal.

The case of the letters in georef is ignored. prec is in the range [−1, 11] and gives the precision of georef as follows:

  • prec = −1 (min), 15°
  • prec = 0, 1°
  • prec = 1, not returned
  • prec = 2, 1'
  • prec = 3, 0.1'
  • prec = 4, 0.01'
  • prec = 5, 0.001'
  • prec = 11 (max), 10−9'

If the first 3 characters of georef are "INV", then lat and lon are set to NaN and prec is unchanged.

Definition at line 70 of file Georef.cpp.

References GeographicLib::Utility::lookup(), GeographicLib::Math::NaN(), and GeographicLib::Utility::str().

◆ Resolution()

static Math::real GeographicLib::Georef::Resolution ( int  prec)
inlinestatic

The angular resolution of a Georef.

Parameters
[in]precthe precision of the Georef.
Returns
the latitude-longitude resolution (degrees).

Internally, prec is first put in the range [−1, 11].

Definition at line 133 of file Georef.hpp.

◆ Precision()

static int GeographicLib::Georef::Precision ( real  res)
inlinestatic

The Georef precision required to meet a given geographic resolution.

Parameters
[in]resthe minimum of resolution in latitude and longitude (degrees).
Returns
Georef precision.

The returned length is in the range [0, 11].

Definition at line 154 of file Georef.hpp.


The documentation for this class was generated from the following files: