/// <summary>
 /// Returns the atmospheric density ASL for this CelestialBody
 /// </summary>
 public static double GetDensityASL(this CelestialBody body)
 {
     return(body.GetDensityAtAlt(0));
 }