public static void Main()
EagerLoad el = new EagerLoad(EagerLoadType.Celestial);
el.Extensions = new EagerLoad_Extensions(EagerLoad_ExtensionsType.Solar_Cycle);
for (int x = 0; x < 366; x++)
DateTime d = new DateTime(2024, 1, 1);
Coordinate coordinate = new Coordinate(66.771832, 22.339500, d, el);
Console.WriteLine(d.ToString("MM/dd/yyy") + ": " + coordinate.CelestialInfo.SunCondition);