shred / commons-suncalc

Calculate sun and moon times in Java
Apache License 2.0
125 stars 22 forks source link
android-library java-library moon-phase sun-position

commons-suncalc build status maven central

A Java library for calculation of sun and moon positions and phases.

Features

Accuracy

Astronomical calculations are far more complex than throwing a few numbers into an obscure formula and then getting a fully accurate result. There is always a tradeoff between accuracy and computing time.

This library has its focus on getting acceptable results at low cost, so it can also run on mobile devices, or devices with a low computing power. The results have an accuracy of about a minute, which should be good enough for common applications (like sunrise/sunset timers), but is probably not sufficient for astronomical purposes.

If you are looking for the highest possible accuracy, you are looking for a different library.

Quick Start

This library consists of a few models, all of them are invoked the same way:

ZonedDateTime dateTime = // date, time and timezone of calculation
double lat, lng = // geolocation
SunTimes times = SunTimes.compute()
        .on(dateTime)   // set a date
        .at(lat, lng)   // set a location
        .execute();     // get the results
System.out.println("Sunrise: " + times.getRise());
System.out.println("Sunset: " + times.getSet());

Read the online documentation for examples and API details.

See the migration guide for how to migrate from a previous version.

References

This library bases on:

Contribute

License

commons-suncalc is open source software. The source code is distributed under the terms of Apache License 2.0.