astrometry-net-client


Nameastrometry-net-client JSON
Version 0.3.1 PyPI version JSON
download
home_pagehttps://github.com/StenSipma/astrometry_net_client
SummaryA Python interface for the Astrometry.net API.
upload_time2024-01-30 12:22:49
maintainer
docs_urlNone
authorSten Sipma
requires_python>=3.8
license
keywords astronomy astrometry client coordinates wcs api
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            *********************
Astrometry.net Client
*********************

.. image:: https://readthedocs.org/projects/astrometry-net-client/badge/?version=latest
   :target: https://astrometry-net-client.readthedocs.io/en/latest/?badge=latest
   :alt: Documentation Status
   
.. image:: https://github.com/StenSipma/astrometry_net_client/workflows/Build%20&%20Tests/badge.svg
   :target: https://github.com/StenSipma/astrometry_net_client/actions?query=workflow%3A%22Build+%26+Tests%22
   :alt: Build & Tests Status

.. note:: 
   The package is still in development, but it can already be used. 
   Do not hesitate to leave any feedback (positive or negative)!

Introduction
------------

This package is meant to be a simple but extensible interface for the `Astrometry.net API`_. A higher level interface is offered through the ``Client`` class, combining most functionality. However, if you want more control over the requests (e.g. by manually checking the responses), you can also use the ``Job``, ``Submission`` and ``UploadFile`` classes directly.

The structure of these classes tries to follow the pattern of the API itself, which is essentially:

1. Upload some file (``UploadFile``), which requires an API key & a login (``Session``)
2. The upload creates a submission (``Submission``), unique for each upload. This has to do some general processing, even before the uploaded image is processed.
3. When the submission is done preprocessing, and the system is ready to process the uploaded file, a job (``Job``) is spawned for each image.
4. The job then takes some time to process, and when it is done it can either be successful or fail.
5. When successful, some information (e.g. found objects) and result files like the generated WCS header can be retrieved.

Using this package, these steps are (note that this is not the ideal way to upload multiple files):

.. code:: python
   :number-lines:
   
    from astrometry_net_client import Session
    from astrometry_net_client import FileUpload

    s = Session(api_key='xxxxxxxxx')
    upl = FileUpload('some/file/name', session=s) # 1.
    submission = upl.submit()                     # 2.
    submission.until_done()                       # blocks until it is finished       
    job = submission.jobs[0]                      # 3.
    job.until_done()                              # 4. (again blocks)
    if job.success():
        wcs = job.wcs_file()                      # 5. (only if successful)
    print(job.info())                             # works even though the job failed

Or with the higher level ``Client`` :

.. code:: python
   :number-lines:
   
    from astrometry_net_client import Client

    c = Client(api_key='xxxxxxxxxx')

    # WARNING: this can take a while, as it blocks until the file is solved.
    # wcs will be None if upload is not successful
    wcs = c.calibrate_file_wcs(filename)  

One of the core ideas of this package is to try and make the minimal amount of requests possible and make them at a clear time. This is realized by the following *initialize & send* pattern:

.. code:: python

    r = Request(url)    # initialize (request not yet sent)
    response = r.make() # send the request

Similarely, retrieving files like the WCS file (after a successful ``Job``) will be done once and cached thereafter:

.. code:: python

    wcs = job.wcs_file()    # first call makes the actual request
    wcs_2 = job.wcs_file()  # second call uses previously obtained result

.. _Astrometry.net API: http://nova.astrometry.net/


Installation
------------

Installation required python version 3.8 or greater.

Simpy install the package usng PyPi:

.. code:: bash

        pip install astrometry-net-client

Note that the development and testing of this package is done on Linux, so it
may not work on a different platform.

Installing From Source
""""""""""""""""""""""

Installing the package from source is made easy by the Makefile, once you have a local copy of the repository (e.g. by cloning, or downloading & extracting the repo ZIP).

It is heavily recommended to use a virtual environment. Create and activate one by running:

.. code:: bash

        make virt-env
        source .env/bin/activate
        pip install wheel

Then build & install the package with (does not install development dependencies):

.. code:: bash

        make install

Documentation
-------------
Documentation is available at `Readthedocs`_

.. _Readthedocs: https://astrometry-net-client.readthedocs.io/en/latest/

There is a local documentation available (defined by docstrings). To access it, first  install the package and the development dependencies:

.. code:: bash

        make dependencies
        
then generate the documentation (using Sphinx) by:

.. code:: bash

        make documentation

The main page can then be found at (assuming you are in the project root) ``./docs/_build/html/index.html``. Open this (for example) with:

.. code:: bash

        firefox ./docs/_build/html/index.html

Examples
--------
Some example files/scripts are found at the `examples entry`_ of the documentation.

Some elaborate examples can be found in the ``examples`` directory. 
For more specific usage, refer to the `documentation`_.

.. _examples entry: https://astrometry-net-client.readthedocs.io/en/latest/examples/overview.html
.. _documentation: https://astrometry-net-client.readthedocs.io/en/latest

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/StenSipma/astrometry_net_client",
    "name": "astrometry-net-client",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "astronomy astrometry client coordinates wcs api",
    "author": "Sten Sipma",
    "author_email": "sten.sipma@ziggo.nl",
    "download_url": "https://files.pythonhosted.org/packages/7b/cb/55b45dec1552d79f399be84e6ad83cbb4b77df4c6689a8c4608cc03bb0b1/astrometry_net_client-0.3.1.tar.gz",
    "platform": null,
    "description": "*********************\nAstrometry.net Client\n*********************\n\n.. image:: https://readthedocs.org/projects/astrometry-net-client/badge/?version=latest\n   :target: https://astrometry-net-client.readthedocs.io/en/latest/?badge=latest\n   :alt: Documentation Status\n   \n.. image:: https://github.com/StenSipma/astrometry_net_client/workflows/Build%20&%20Tests/badge.svg\n   :target: https://github.com/StenSipma/astrometry_net_client/actions?query=workflow%3A%22Build+%26+Tests%22\n   :alt: Build & Tests Status\n\n.. note:: \n   The package is still in development, but it can already be used. \n   Do not hesitate to leave any feedback (positive or negative)!\n\nIntroduction\n------------\n\nThis package is meant to be a simple but extensible interface for the `Astrometry.net API`_. A higher level interface is offered through the ``Client`` class, combining most functionality. However, if you want more control over the requests (e.g. by manually checking the responses), you can also use the ``Job``, ``Submission`` and ``UploadFile`` classes directly.\n\nThe structure of these classes tries to follow the pattern of the API itself, which is essentially:\n\n1. Upload some file (``UploadFile``), which requires an API key & a login (``Session``)\n2. The upload creates a submission (``Submission``), unique for each upload. This has to do some general processing, even before the uploaded image is processed.\n3. When the submission is done preprocessing, and the system is ready to process the uploaded file, a job (``Job``) is spawned for each image.\n4. The job then takes some time to process, and when it is done it can either be successful or fail.\n5. When successful, some information (e.g. found objects) and result files like the generated WCS header can be retrieved.\n\nUsing this package, these steps are (note that this is not the ideal way to upload multiple files):\n\n.. code:: python\n   :number-lines:\n   \n    from astrometry_net_client import Session\n    from astrometry_net_client import FileUpload\n\n    s = Session(api_key='xxxxxxxxx')\n    upl = FileUpload('some/file/name', session=s) # 1.\n    submission = upl.submit()                     # 2.\n    submission.until_done()                       # blocks until it is finished       \n    job = submission.jobs[0]                      # 3.\n    job.until_done()                              # 4. (again blocks)\n    if job.success():\n        wcs = job.wcs_file()                      # 5. (only if successful)\n    print(job.info())                             # works even though the job failed\n\nOr with the higher level ``Client`` :\n\n.. code:: python\n   :number-lines:\n   \n    from astrometry_net_client import Client\n\n    c = Client(api_key='xxxxxxxxxx')\n\n    # WARNING: this can take a while, as it blocks until the file is solved.\n    # wcs will be None if upload is not successful\n    wcs = c.calibrate_file_wcs(filename)  \n\nOne of the core ideas of this package is to try and make the minimal amount of requests possible and make them at a clear time. This is realized by the following *initialize & send* pattern:\n\n.. code:: python\n\n    r = Request(url)    # initialize (request not yet sent)\n    response = r.make() # send the request\n\nSimilarely, retrieving files like the WCS file (after a successful ``Job``) will be done once and cached thereafter:\n\n.. code:: python\n\n    wcs = job.wcs_file()    # first call makes the actual request\n    wcs_2 = job.wcs_file()  # second call uses previously obtained result\n\n.. _Astrometry.net API: http://nova.astrometry.net/\n\n\nInstallation\n------------\n\nInstallation required python version 3.8 or greater.\n\nSimpy install the package usng PyPi:\n\n.. code:: bash\n\n        pip install astrometry-net-client\n\nNote that the development and testing of this package is done on Linux, so it\nmay not work on a different platform.\n\nInstalling From Source\n\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\n\nInstalling the package from source is made easy by the Makefile, once you have a local copy of the repository (e.g. by cloning, or downloading & extracting the repo ZIP).\n\nIt is heavily recommended to use a virtual environment. Create and activate one by running:\n\n.. code:: bash\n\n        make virt-env\n        source .env/bin/activate\n        pip install wheel\n\nThen build & install the package with (does not install development dependencies):\n\n.. code:: bash\n\n        make install\n\nDocumentation\n-------------\nDocumentation is available at `Readthedocs`_\n\n.. _Readthedocs: https://astrometry-net-client.readthedocs.io/en/latest/\n\nThere is a local documentation available (defined by docstrings). To access it, first  install the package and the development dependencies:\n\n.. code:: bash\n\n        make dependencies\n        \nthen generate the documentation (using Sphinx) by:\n\n.. code:: bash\n\n        make documentation\n\nThe main page can then be found at (assuming you are in the project root) ``./docs/_build/html/index.html``. Open this (for example) with:\n\n.. code:: bash\n\n        firefox ./docs/_build/html/index.html\n\nExamples\n--------\nSome example files/scripts are found at the `examples entry`_ of the documentation.\n\nSome elaborate examples can be found in the ``examples`` directory. \nFor more specific usage, refer to the `documentation`_.\n\n.. _examples entry: https://astrometry-net-client.readthedocs.io/en/latest/examples/overview.html\n.. _documentation: https://astrometry-net-client.readthedocs.io/en/latest\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "A Python interface for the Astrometry.net API.",
    "version": "0.3.1",
    "project_urls": {
        "Homepage": "https://github.com/StenSipma/astrometry_net_client"
    },
    "split_keywords": [
        "astronomy",
        "astrometry",
        "client",
        "coordinates",
        "wcs",
        "api"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1565c3664064ee93e39cefa55a226991aa61cc6a808ffa5b70993ec377dea2c9",
                "md5": "ae1dabdc257b05e5f03f220979086e2d",
                "sha256": "c1001bc012ed597b0d6dee65fcc032041f86fe2f4f8f60d9eb48ff9f5af2d332"
            },
            "downloads": -1,
            "filename": "astrometry_net_client-0.3.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "ae1dabdc257b05e5f03f220979086e2d",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 21480,
            "upload_time": "2024-01-30T12:22:48",
            "upload_time_iso_8601": "2024-01-30T12:22:48.062248Z",
            "url": "https://files.pythonhosted.org/packages/15/65/c3664064ee93e39cefa55a226991aa61cc6a808ffa5b70993ec377dea2c9/astrometry_net_client-0.3.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7bcb55b45dec1552d79f399be84e6ad83cbb4b77df4c6689a8c4608cc03bb0b1",
                "md5": "c56802929f70330e9ccce3c31d5fc658",
                "sha256": "a81c13f0a1f4ce43b4d505b39d9488132dafee53247f2ef3ade7524d39d1d16f"
            },
            "downloads": -1,
            "filename": "astrometry_net_client-0.3.1.tar.gz",
            "has_sig": false,
            "md5_digest": "c56802929f70330e9ccce3c31d5fc658",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 24928,
            "upload_time": "2024-01-30T12:22:49",
            "upload_time_iso_8601": "2024-01-30T12:22:49.512150Z",
            "url": "https://files.pythonhosted.org/packages/7b/cb/55b45dec1552d79f399be84e6ad83cbb4b77df4c6689a8c4608cc03bb0b1/astrometry_net_client-0.3.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-30 12:22:49",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "StenSipma",
    "github_project": "astrometry_net_client",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "astrometry-net-client"
}
        
Elapsed time: 0.18367s