Finding the angular diameter of a planet is a trivial task once we have found the distance to the planet, which we have found here.

The only thing else we need is the angular diameter at 1AU, and then applying the formula,
angular diameter = angular diameter at 1AU / distance
we get the value we are looking for.

		public static double CalcPlanetDiam(double fDistance, double fAngDiam1AU)
		{
			return (fAngDiam1AU / fDistance);
		}
  • Share/Bookmark

Related posts:

  1. Astronomical calculations in C#: Finding the angular diameter of the Moon Once we can find the distance to the Moon, we...
  2. Astronomical calculations in C#: Finding the angular diameter of the Sun The method of find the angular diameter of the Sun...
  3. Astronomical calculations in C#: Finding the distance to a planet The calculation for the distance of the Earth to a...
  4. Astronomical calculations in C#: Calculating the phase of a planet Once we know how to find the position of the...
  5. Astronomical calculations in C#: Finding the magnitude of a planet This calculation is based on the position calculation, but also...

Related posts brought to you by Yet Another Related Posts Plugin.