CelestialGet_Last_MoonRise(Coordinate) Method
Gets the last moon rise from the provided point in time at the passed location.
Namespace: CoordinateSharpAssembly: CoordinateSharp (in CoordinateSharp.dll) Version: 3.1.1.1
XMLNS for XAML: Not mapped to an xmlns.
public static DateTime Get_Last_MoonRise(
Coordinate coordinate
)
- coordinate Coordinate
- Coordinate
DateTimeDateTime
The following example gets the last moon rise from the point in time at the provided location.
DateTime d = new DateTime(2019, 2, 6);
Coordinate c = new Coordinate(40.0352, -74.5844, d);
//JBMDL
DateTime moon = Celestial.Get_Last_MoonRise(c); //2/5/2019 12:39:02 PM (UTC)