Jérôme Deuchnord fda3c4fce0 | 5 years ago | |
---|---|---|
assets | 5 years ago | |
.gitignore | 5 years ago | |
.pylintrc | 5 years ago | |
LICENSE.md | 5 years ago | |
Pipfile | 5 years ago | |
Pipfile.lock | 5 years ago | |
README.md | 5 years ago | |
ephemeris.py | 5 years ago | |
kosmorro.py | 5 years ago |
Kosmorro is a software that allows you to compute the ephemeris for a date, a month or a year.
To use this software, you will need the following software:
Clone this repository and run pipenv sync
to install all the dependencies.
Because it’s still on an early-development stage, to run Kosmorro, you will need to prefix your commands pipenv run
.
A setup.py
file will come later to manage installation in the real world.
kosmorro.py [-h] [--latitude LATITUDE] [--longitude LONGITUDE]
[--altitude ALTITUDE] [--date DATE] [--month MONTH]
year
Compute the ephemeris for a given day/month/year.
positional arguments:
year The year you want to compute the ephemeris for
optional arguments:
-h, --help show this help message and exit
--latitude LATITUDE, -lat LATITUDE
The observer's position on Earth (latitude)
--longitude LONGITUDE, -lon LONGITUDE
The observer's position on Earth (longitude)
--altitude ALTITUDE, -alt ALTITUDE
The observer's position on Earth (altitude)
--date DATE, -d DATE A number between 1 and 28, 29, 30 or 31 (depending on
the month). The date you want to compute the ephemeris
for
--month MONTH, -m MONTH
A number between 1 and 12. The month you want to
compute the ephemeris for (defaults to the current
month if the day is defined)
By default, the observer will be set at position (0,0) with an altitude of 0.
You will more likely want to change that.