Download the PHP package jiri.jozif/moonriset without Composer
On this page you can find all versions of the php package jiri.jozif/moonriset. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Please rate this library. Is it a good library?
Informations about the package moonriset
PHP library for calculating Moon rise, set and transit
Algorithm source: Oliver Montenbruck and Thomas Pfleger: Astronomy on the Personal Computer, Springer-Verlag 1994
Installation
This library is available for use with Composer — add it to your project by running:
Usage
Create an instance of the Moonriset
class with up to three optional parameters:
- $latitude (float, optional): The latitude of the location (default:
ini_get('date.default_latitude')
). - $longitude (float, optional): The longitude of the location (default:
ini_get('date.default_longitude')
). - $timezone (string, optional): The timezone for the location (default:
date_default_timezone_get()
). The calculation is automatically performed for today
You can then use the following methods:
setDate($year, $month, $day)
: Sets the date for which the calculation will be performed.- $year (integer): The year (e.g., 2025).
- $month (integer): The month (e.g., 1 for January, 12 for December).
- $day (integer): The day of the month (e.g., 15).
The following properties of the Moonriset
class provide the calculated times in different formats:
rise['timestamp']
: UNIX timestamp the moon rises ortrue
is Moon continuously above horizon orfalse
if Moon continuously below horizonrise['hh_mm']
: Time the moon rises as string in hh:mm format or ":" Moon continuously above horizon or "--:--" Moon continuously below horizonrise['hhmm']
: Time the moon rises as string in hhmm format or "****" Moon continuously above horizon or "----" Moon continuously below horizonset['timestamp']
: UNIX timestamp the moon sets ortrue
is Moon continuously above horizon orfalse
if Moon continuously below horizonset['hh_mm']
: Time the moon sets as string in hh:mm format or ":" Moon continuously above horizon, or "--:--" Moon continuously below horizonset['hhmm']
: Time the moon sets as string in hhmm format or "****" Moon continuously above horizon or "----" Moon continuously below horizontransit['timestamp']
: UNIX timestamp the moon transit ornull
if transit does not occurtransit['hh_mm']
: Time the moon transit as string in hh:mm formattransit['hhmm']
: Time the moon transit as string in hhmm formatrise2['timestamp']
: UNIX timestamp the second moon rises (an exceptional phenomenon near the Arctic Circle)rise2['hh_mm']
: Time the second moon rises as string in hh:mm format (an exceptional phenomenon near the Arctic Circle)rise2['hhmm']
: Time the second moon rises as string in hhmm format (an exceptional phenomenon near the Arctic Circle)set2['timestamp']
: UNIX timestamp the second moon sets (an exceptional phenomenon near the Arctic Circle)set2['hh_mm']
: Time the second moon sets as string in hh:mm format (an exceptional phenomenon near the Arctic Circle)set2['hhmm']
: Time the second moon sets as string in hhmm format (an exceptional phenomenon near the Arctic Circle)
Example
or
Help
If you have any questions, feel free to contact me at [email protected]
.
All versions of moonriset with dependencies
PHP Build Version
Package Version
Requires
php Version
>=8.1
The package jiri.jozif/moonriset contains the following files
Loading the files please wait ....