Aer represents an Azimuth, Elevation, and Range measurement.
Azimuth/Elevation (or Az/El) is a common way of locating objects measured
at a specific location on Earth in the local tangent plane
(for instance, from a RADAR). That reference location is not included in
the Aer struct, so re-contextualizing this requires knowing the point
at which the observation was taken from or was in reference to.
An Aer can be passed an “AngularMeasure” generic argument, which means,
for all practical purposes, either Degrees or Radians. The default is
Degrees, but can be overriden by passing Radians into the Aer.
Degrees tend to be a lot easier to use as an API and for humans, but
when passing data between third party code and this library, you may find
it’s less work to skip conversions through Degrees when reading or
writing Aer data. If you don’t have some overriding conviction, using
Degrees is a good idea.