CelestialSolarNoon Property

Solar noon time.

Definition

Namespace: CoordinateSharp
Assembly: CoordinateSharp (in CoordinateSharp.dll) Version: 2.21.1.1
XMLNS for XAML: Not mapped to an xmlns.
C#
public DateTime? SolarNoon { get; }

Property Value

NullableDateTime

Example

The following example gets the solar noon time in UTC at N 39, W 72 on 1-March-2018
C#
Coordinate coordinate = new Coordinate(39,-72, new DateTime(2018,3,1));
Console.WriteLine(coordinate.CelestialInfo.SolarNoon); //3/1/2018 5:01:49 PM(UTC)

See Also