Metadata-Version: 2.1
Name: astronomia
Version: 3.0.2
Summary: Library for calculation of ephemeris and other astronomical calculations
Author-email: Tim Cera <tim@cerazone.net>
License: BSD-3-Clause
Project-URL: documentation, https://timcera.bitbucket.io/astronomia/docs/index.html#astronomia-documentation
Project-URL: github, https://github.com/timcera/astronomia
Project-URL: bitbucket, https://bitbucket.org/timcera/astronomia/src/main/
Keywords: ephemeris,astronomy
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: End Users/Desktop
Classifier: Intended Audience :: Developers
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Scientific/Engineering :: Information Analysis
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.8
Description-Content-Type: text/x-rst
License-File: LICENSE.txt
Requires-Dist: cltoolbox
Requires-Dist: numpy
Requires-Dist: pandas

.. image:: https://github.com/timcera/astronomia/actions/workflows/pypi-package.yml/badge.svg
    :alt: Tests
    :target: https://github.com/timcera/astronomia/actions/workflows/pypi-package.yml
    :height: 20

.. image:: https://img.shields.io/coveralls/github/timcera/astronomia
    :alt: Test Coverage
    :target: https://coveralls.io/r/timcera/astronomia?branch=master
    :height: 20

.. image:: https://img.shields.io/pypi/v/astronomia.svg
    :alt: Latest release
    :target: https://pypi.python.org/pypi/astronomia/
    :height: 20

.. image:: http://img.shields.io/pypi/l/astronomia.svg
    :alt: BSD-3 clause license
    :target: https://pypi.python.org/pypi/astronomia/
    :height: 20

.. image:: http://img.shields.io/pypi/dd/astronomia.svg
    :alt: astronomia downloads
    :target: https://pypi.python.org/pypi/astronomia/
    :height: 20

.. image:: https://img.shields.io/pypi/pyversions/astronomia
    :alt: PyPI - Python Version
    :target: https://pypi.org/project/astronomia/
    :height: 20

Astronomia - Quick Guide
------------------------
Astronomia is a collection of subroutines and applications for calculating the
positions of the sun, moon, planets and other celestial objects. The emphasis
is on high accuracy over a several thousand year time span. Note that the
techniques used are overkill for most calendar applications.

The subroutine library attempts to implement some the techniques described in
*Astronomical Algorithms*, second edition 1998, by Jean Meeus, `Willmann-Bell,
Inc. <http://www.willbell.com/">`_

Currently there are no graphical applications apart from some demo CGI
interfaces.

Astronomia will work with Python 2.6+ and 3.0+.

Documentation
~~~~~~~~~~~~~
Reference documentation is at http://timcera.bitbucket.io/.

Installation
~~~~~~~~~~~~
At the command line::

    $ pip install astronomia
    # OR
    $ conda install -c conda-forge astronomia

Usage
~~~~~
To use Astronomia in a project::

	import astronomia

Development
~~~~~~~~~~~
Development is managed on bitbucket at
https://bitbucket.org/timcera/astronomia/overview.

History
~~~~~~~
Astronomia is a fork of the Astrolabe library created by Bill McClain.  The
Astrolabe library is no longer available.

I (Tim Cera) used the Astrolabe library within my tidal analysis package
`TAPPy <http://tappy.sf.net>`_. In 2013 I pulled Astrolabe out of TAPPy and
forked Astronomia.  I have since fixed many bugs and added features.  The most
important added feature is the ability for most functions to work with array
inputs.  Bill McClain had dual Python and 'C' code, but I focused only on the
Python code, updating with newer data and equations as I found them.
