added earth-registration load/save
This commit is contained in:
@@ -11,6 +11,11 @@ struct EarthPos {
|
||||
/** height above sea level */
|
||||
float height;
|
||||
|
||||
/** empty ctor */
|
||||
EarthPos() : lat(NAN), lon(NAN), height(NAN) {
|
||||
;
|
||||
}
|
||||
|
||||
/** ctor with values */
|
||||
EarthPos(const double lat, const double lon, const float height) : lat(lat), lon(lon), height(height) {
|
||||
;
|
||||
|
||||
Reference in New Issue
Block a user