astronomia


Nameastronomia JSON
Version 3.0.0 PyPI version JSON
download
home_pageNone
SummaryLibrary for calculation of ephemeris and other astronomical calculations
upload_time2024-03-31 18:06:45
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseBSD-3-Clause
keywords ephemeris astronomy
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            .. image:: https://github.com/timcera/astronomia/actions/workflows/python-package.yml/badge.svg
    :alt: Tests
    :target: https://github.com/timcera/astronomia/actions/workflows/python-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.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "astronomia",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "ephemeris, astronomy",
    "author": null,
    "author_email": "Tim Cera <tim@cerazone.net>",
    "download_url": "https://files.pythonhosted.org/packages/35/3b/39344da94d4fe15cea27f4082e473af07e44dc53bc15d4d0b12e8412ed74/astronomia-3.0.0.tar.gz",
    "platform": null,
    "description": ".. image:: https://github.com/timcera/astronomia/actions/workflows/python-package.yml/badge.svg\n    :alt: Tests\n    :target: https://github.com/timcera/astronomia/actions/workflows/python-package.yml\n    :height: 20\n\n.. image:: https://img.shields.io/coveralls/github/timcera/astronomia\n    :alt: Test Coverage\n    :target: https://coveralls.io/r/timcera/astronomia?branch=master\n    :height: 20\n\n.. image:: https://img.shields.io/pypi/v/astronomia.svg\n    :alt: Latest release\n    :target: https://pypi.python.org/pypi/astronomia/\n    :height: 20\n\n.. image:: http://img.shields.io/pypi/l/astronomia.svg\n    :alt: BSD-3 clause license\n    :target: https://pypi.python.org/pypi/astronomia/\n    :height: 20\n\n.. image:: http://img.shields.io/pypi/dd/astronomia.svg\n    :alt: astronomia downloads\n    :target: https://pypi.python.org/pypi/astronomia/\n    :height: 20\n\n.. image:: https://img.shields.io/pypi/pyversions/astronomia\n    :alt: PyPI - Python Version\n    :target: https://pypi.org/project/astronomia/\n    :height: 20\n\nAstronomia - Quick Guide\n------------------------\nAstronomia is a collection of subroutines and applications for calculating the\npositions of the sun, moon, planets and other celestial objects. The emphasis\nis on high accuracy over a several thousand year time span. Note that the\ntechniques used are overkill for most calendar applications.\n\nThe subroutine library attempts to implement some the techniques described in\n*Astronomical Algorithms*, second edition 1998, by Jean Meeus, `Willmann-Bell,\nInc. <http://www.willbell.com/\">`_\n\nCurrently there are no graphical applications apart from some demo CGI\ninterfaces.\n\nAstronomia will work with Python 2.6+ and 3.0+.\n\nDocumentation\n~~~~~~~~~~~~~\nReference documentation is at http://timcera.bitbucket.io/.\n\nInstallation\n~~~~~~~~~~~~\nAt the command line::\n\n    $ pip install astronomia\n    # OR\n    $ conda install -c conda-forge astronomia\n\nUsage\n~~~~~\nTo use Astronomia in a project::\n\n\timport astronomia\n\nDevelopment\n~~~~~~~~~~~\nDevelopment is managed on bitbucket at\nhttps://bitbucket.org/timcera/astronomia/overview.\n\nHistory\n~~~~~~~\nAstronomia is a fork of the Astrolabe library created by Bill McClain.  The\nAstrolabe library is no longer available.\n\nI (Tim Cera) used the Astrolabe library within my tidal analysis package\n`TAPPy <http://tappy.sf.net>`_. In 2013 I pulled Astrolabe out of TAPPy and\nforked Astronomia.  I have since fixed many bugs and added features.  The most\nimportant added feature is the ability for most functions to work with array\ninputs.  Bill McClain had dual Python and 'C' code, but I focused only on the\nPython code, updating with newer data and equations as I found them.\n",
    "bugtrack_url": null,
    "license": "BSD-3-Clause",
    "summary": "Library for calculation of ephemeris and other astronomical calculations",
    "version": "3.0.0",
    "project_urls": {
        "bitbucket": "https://bitbucket.org/timcera/astronomia/src/main/",
        "documentation": "https://timcera.bitbucket.io/astronomia/docs/index.html#astronomia-documentation",
        "github": "https://github.com/timcera/astronomia"
    },
    "split_keywords": [
        "ephemeris",
        " astronomy"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7c326b1f89b386382242fcbe1f8dcbc11b19f0e35ba97ea01eaacc2efd0647e4",
                "md5": "0a97c8b6b8f1be753c1cc2bc3dde4c5a",
                "sha256": "3bb03448118b1bb0f31c34e338c4ebb85949bfe065d9073d8e2fe83fa9510721"
            },
            "downloads": -1,
            "filename": "astronomia-3.0.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "0a97c8b6b8f1be753c1cc2bc3dde4c5a",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 619694,
            "upload_time": "2024-03-31T18:06:49",
            "upload_time_iso_8601": "2024-03-31T18:06:49.359929Z",
            "url": "https://files.pythonhosted.org/packages/7c/32/6b1f89b386382242fcbe1f8dcbc11b19f0e35ba97ea01eaacc2efd0647e4/astronomia-3.0.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "353b39344da94d4fe15cea27f4082e473af07e44dc53bc15d4d0b12e8412ed74",
                "md5": "462abcc95a6e9dde8525a33763ad187a",
                "sha256": "7d59ab7ec347b16ef539e4557d891167184e7a75028f06af15c6439ae77fa0a4"
            },
            "downloads": -1,
            "filename": "astronomia-3.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "462abcc95a6e9dde8525a33763ad187a",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 646343,
            "upload_time": "2024-03-31T18:06:45",
            "upload_time_iso_8601": "2024-03-31T18:06:45.891631Z",
            "url": "https://files.pythonhosted.org/packages/35/3b/39344da94d4fe15cea27f4082e473af07e44dc53bc15d4d0b12e8412ed74/astronomia-3.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-31 18:06:45",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "timcera",
    "github_project": "astronomia",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "astronomia"
}
        
Elapsed time: 0.24987s