CelestialGet_Next_MoonRise(Coordinate) Method

Gets the next moon rise from the provided point in time at the passed location.

Definition

Namespace: CoordinateSharp
Assembly: CoordinateSharp (in CoordinateSharp.dll) Version: 2.21.1.1
XMLNS for XAML: Not mapped to an xmlns.
C#
public static DateTime Get_Next_MoonRise(
	Coordinate coordinate
)

Parameters

coordinate  Coordinate
Coordinate

Return Value

DateTime
DateTime

Example

The following example gets the next moon rise from the point in time at the provided location.
C#
DateTime d = new DateTime(2019, 2, 6);
Coordinate c = new Coordinate(40.0352, -74.5844, d);

//JBMDL
DateTime moon = Celestial.Get_Next_MoonRise(c); //2/6/2019 1:10:32 PM (UTC)

See Also