Times of day (in seconds since midnight) for sun events

interface SunEvents {
    dawn: null | SunEvent;
    dusk: null | SunEvent;
    nadir: SunEvent;
    noon: SunEvent;
    sunrise: null | SunEvent;
    sunset: null | SunEvent;
}

Properties

dawn: null | SunEvent

Seconds since midnight at the beginning of civil twilight

dusk: null | SunEvent

Seconds since midnight at the end of civil twilight

nadir: SunEvent

Seconds since midnight when the sun is at its lowest point (nadir)

noon: SunEvent

Seconds since midnight when the sun is at solar noon

sunrise: null | SunEvent

Seconds since midnight at sunrise

sunset: null | SunEvent

Seconds since midnight when the sun sets