GeographicLib 2.1.2
|
Conversions for the Global Area Reference System (GARS) More...
#include <GeographicLib/GARS.hpp>
Static Public Member Functions | |
static void | Forward (real lat, real lon, int prec, std::string &gars) |
static void | Reverse (const std::string &gars, real &lat, real &lon, int &prec, bool centerp=true) |
static Math::real | Resolution (int prec) |
static int | Precision (real res) |
Conversions for the Global Area Reference System (GARS)
The Global Area Reference System is described in
It provides a compact string representation of a geographic area (expressed as latitude and longitude). The classes Georef and Geohash implement similar compact representations.
Example of use:
|
static |
Convert from geographic coordinates to GARS.
[in] | lat | latitude of point (degrees). |
[in] | lon | longitude of point (degrees). |
[in] | prec | the precision of the resulting GARS. |
[out] | gars | the GARS string. |
GeographicErr | if lat is not in [−90°, 90°]. |
std::bad_alloc | if memory for gars can't be allocated. |
prec specifies the precision of gars as follows:
If lat or lon is NaN, then gars is set to "INVALID".
Definition at line 25 of file GARS.cpp.
References GeographicLib::Math::AngNormalize(), GeographicLib::Math::hd, GeographicLib::Math::qd, and GeographicLib::Utility::str().
|
static |
Convert from GARS to geographic coordinates.
[in] | gars | the GARS. |
[out] | lat | latitude of point (degrees). |
[out] | lon | longitude of point (degrees). |
[out] | prec | the precision of gars. |
[in] | centerp | if true (the default) return the center of the gars, otherwise return the south-west corner. |
GeographicErr | if gars is illegal. |
The case of the letters in gars is ignored. prec is in the range [0, 2] and gives the precision of gars as follows:
If the first 3 characters of gars are "INV", then lat and lon are set to NaN and prec is unchanged.
Definition at line 65 of file GARS.cpp.
References GeographicLib::Utility::lookup(), GeographicLib::Math::NaN(), and GeographicLib::Math::td.
|
inlinestatic |
|
inlinestatic |