LatLongEllipsodial constructor

LatLongEllipsodial(
  1. dynamic la,
  2. dynamic lo,
  3. dynamic h,
  4. Map<String, Object> datum,
)

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;
}