|
NETGeographicLib
1.38
|
Enumerations | |
| enum | captype { CAP_NONE = 0U, CAP_C1 = 1U<<0, CAP_C1p = 1U<<1, CAP_C2 = 1U<<2, CAP_C3 = 1U<<3, CAP_C4 = 1U<<4, CAP_ALL = 0x1FU, OUT_ALL = 0x7F80U } |
| enum | Mask { NONE, LATITUDE, LONGITUDE, AZIMUTH, DISTANCE, DISTANCE_IN, REDUCEDLENGTH, GEODESICSCALE, AREA, ALL } |
| Enumerator | |
|---|---|
| CAP_NONE | |
| CAP_C1 | |
| CAP_C1p | |
| CAP_C2 | |
| CAP_C3 | |
| CAP_C4 | |
| CAP_ALL | |
| OUT_ALL | |
Definition at line 18 of file NETGeographicLib.h.
Bit masks for what calculations to do. These masks do double duty. They signify to the GeodesicLine::GeodesicLine constructor and to Geodesic::Line what capabilities should be included in the GeodesicLine object. They also specify which results to return in the general routines Geodesic::GenDirect and Geodesic::GenInverse routines.
| Enumerator | |
|---|---|
| NONE |
No capabilities, no output. |
| LATITUDE |
Calculate latitude lat2. (It's not necessary to include this as a capability to GeodesicLine because this is included by default.) |
| LONGITUDE |
Calculate longitude lon2. |
| AZIMUTH |
Calculate azimuths azi1 and azi2. (It's not necessary to include this as a capability to GeodesicLine because this is included by default.) |
| DISTANCE |
Calculate distance s12. |
| DISTANCE_IN |
Allow distance s12 to be used as input in the direct geodesic problem. |
| REDUCEDLENGTH |
Calculate reduced length m12. |
| GEODESICSCALE |
Calculate geodesic scales M12 and M21. |
| AREA |
Calculate area S12. |
| ALL |
All capabilities, calculate everything. |
Definition at line 36 of file NETGeographicLib.h.
1.8.3.1