.NET wrapper for GeographicLib::Georef. More...
#include <Georef.h>
| Static Public Member Functions | |
| static void | Forward (double lat, double lon, int prec, [System::Runtime::InteropServices::Out] System::String^% georef) | 
| static int | Precision (double res) | 
| static double | Resolution (int prec) | 
| static void | Reverse (System::String^ georef, [System::Runtime::InteropServices::Out] double% lat, [System::Runtime::InteropServices::Out] double% lon, [System::Runtime::InteropServices::Out] int% prec, bool centerp) | 
| Private Member Functions | |
| Georef () | |
.NET wrapper for GeographicLib::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.
C# Example:
Managed C++ Example:
Visual Basic Example:
| 
 | static | 
Convert from geographic coordinates to georef.
| [in] | lat | latitude of point (degrees). | 
| [in] | lon | longitude of point (degrees). | 
| [in] | prec | the precision of the resulting georef. | 
| [out] | georef | the georef string. | 
| GeographicErr | if lat is not in [−90°, 90°] or if memory for georef can't be allocated. | 
prec specifies the precision of georef as follows:
If lat or lon is NaN, then georef is set to "INVALID".
Definition at line 19 of file dotnet/NETGeographicLib/Georef.cpp.
| 
 | static | 
The Georef precision required to meet a given geographic resolution.
| [in] | res | the minimum of resolution in latitude and longitude (degrees). | 
The returned length is in the range [0, 11].
Definition at line 57 of file dotnet/NETGeographicLib/Georef.cpp.
| 
 | static | 
The angular resolution of a Georef.
| [in] | prec | the precision of the Georef. | 
Internally, prec is first put in the range [−1, 11].
Definition at line 54 of file dotnet/NETGeographicLib/Georef.cpp.
| 
 | static | 
Convert from Georef to geographic coordinates.
| [in] | georef | the Georef. | 
| [out] | lat | latitude of point (degrees). | 
| [out] | lon | longitude of point (degrees). | 
| [out] | prec | the precision of georef. | 
| [in] | centerp | if true (the default) return the center georef, otherwise return the south-west corner. | 
| GeographicErr | if 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:
If the first 3 characters of georef are "INV", then lat and lon are set to NaN and prec is unchanged.
Definition at line 34 of file dotnet/NETGeographicLib/Georef.cpp.