LatLongEllipsodial constructor
Creates a new Lat Long object with a given latitude and longitude in decimal form
Implementation
LatLongEllipsodial(var la, var lo, var h, this.datum) {
this.lat = Dms().wrap90(la);
this.long = Dms().wrap180(lo);
this.height = h;
}