spatie/sun

Get information on the position of the sun

1.1.2 2021-07-22 08:48 UTC

This package is auto-updated.

Last update: 2024-03-21 19:07:22 UTC


README

68747470733a2f2f6769746875622d6164732e73332e65752d63656e7472616c2d312e616d617a6f6e6177732e636f6d2f737570706f72742d756b7261696e652e7376673f743d31

Get information on the position of the sun

Latest Version on Packagist GitHub Tests Action Status Total Downloads

This package can determine several things on the position of the sun.

Support us

68747470733a2f2f6769746875622d6164732e73332e65752d63656e7472616c2d312e616d617a6f6e6177732e636f6d2f73756e2e6a70673f743d31

We invest a lot of resources into creating best in class open source packages. You can support us by buying one of our paid products.

We highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using. You'll find our address on our contact page. We publish all received postcards on our virtual postcard wall.

Installation

You can install the package via composer:

composer require spatie/sun

Usage

When instantiating Spatie\Sun\Sun you should pass it coordinates.

$coordinatesOfAntwerp = ['lat' => 51.260197, 'lng' => 4.402771];

$sun = new Sun($coordinatesOfAntwerp['lat'], $coordinatesOfAntwerp['lng']);

Get the time of sunrise

You can get the time of the sunrise.

$sun->sunrise(); // returns an instance of \Carbon\Carbon

You can get the time of the sunrise on a specific date by passing in instance of Carbon\Carbon to sunrise

$sun->sunrise($carbon); // returns an instance of \Carbon\Carbon

Get the time of zenith

You can get the time of the zenith.

$sun->zenith(); // returns an instance of \Carbon\Carbon

You can get the time of the zenith on a specific date by passing in instance of Carbon\Carbon to zenith

$sun->zenith($carbon); // returns an instance of \Carbon\Carbon

Get the time of sunset

You can get the time of the sunset.

$sun->sunset(); // returns an instance of \Carbon\Carbon

You can get the time of the sunset on a specific date by passing in instance of Carbon\Carbon to sunset

$sun->sunset($carbon); // returns an instance of \Carbon\Carbon

Determine if the sun is up

This is how you can determine if the sun is up:

$sun->sunIsUp(); // returns a boolean

You can get determine if the sun is up at a specific moment by passing in instance of Carbon\Carbon to sunIsUp

$sun->sunIsUp($carbon); // returns a boolean

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you've found a bug regarding security please mail security@spatie.be instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.