CoordinateLoadCelestialInfo Method

Load celestial information (required if eager loading is turned off).

Definition

Namespace: CoordinateSharp
Assembly: CoordinateSharp (in CoordinateSharp.dll) Version: 2.21.1.1
XMLNS for XAML: Not mapped to an xmlns.
C#
public void LoadCelestialInfo()

Example

The following example shows how to Load Celestial information when eager loading is turned off.
C#
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();

See Also