CoordinateLoadCelestialInfo Method
Load celestial information (required if eager loading is turned off).
Namespace: CoordinateSharpAssembly: CoordinateSharp (in CoordinateSharp.dll) Version: 3.1.1.1
XMLNS for XAML: Not mapped to an xmlns.
public void LoadCelestialInfo()
The following example shows how to Load Celestial information when eager loading is turned off.
EagerLoad eagerLoad = new EagerLoad();
eagerLoad.Celestial = false;
Coordinate c = new Coordinate(40.0352, -74.5844, DateTime.Now, eagerLoad);
//To load Celestial information when ready
c.LoadCelestialInfo();