Metadata-Version: 2.1
Name: pygaia
Version: 3.0.2
Summary: Gaia science performance simulation toolkit
Author-email: "Anthony G.A. Brown" <brown@strw.leidenuniv.nl>
Project-URL: Homepage, https://github.com/agabrown/PyGaia
Project-URL: Documentation, https://PyGaia.readthedocs.io/en/latest/
Project-URL: Source, https://github.com/agabrown/PyGaia
Project-URL: Bug Tracker, https://github.com/agabrown/PyGaia/issues
Keywords: plotting, data analysis, numerical tools
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: BSD License
Classifier: Topic :: Scientific/Engineering :: Astronomy
Classifier: Intended Audience :: Science/Research
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Provides-Extra: docs
License-File: LICENSE
License-File: AUTHORS.md

# PyGaia

Python toolkit for Gaia science performance simulation and astrometric catalogue data manipulation.

## Description

PyGaia provides python modules for the simulation of Gaia data and their uncertainties, as well modules for the
manipulation of the Gaia catalogue data. In particular transformations between astrometric observables and phase space
variables are provided as well as transformations between sky coordinate systems. Only (very) basic functionality is
provided. Full blown simulations of Gaia data in all their gory detail requires the Java tools developed by the Gaia
Data Processing and Analysis Consortium (DPAC) in particular its Coordination Unit 2 (CU2).

This toolkit is basically an implementation of the performance models for Gaia which are publicly available at:
[http://www.cosmos.esa.int/web/gaia/science-performance](http://www.cosmos.esa.int/web/gaia/science-performance). In
addition much of the material in chapter 4 of the book [Astrometry for Astrophysics: Methods, Models, and
 Applications (2012, van Altena et al.)](http://www.cambridge.org/9780521519205) is implemented.

* The code in this package is __not intended for accurate astrometry applications__, such as predicting in detail
 astrometric paths of stars on the sky. 
* Epoch transformation _is_ provided, including the transformation of the astrometric covariance matrix to different
 epochs.
 
## Astropy astrometry modules versus pygaia.astrometry

It is recommended to use the [Astropy](https://www.astropy.org/) facilities for handling astrometric data, including transformations from (Cartesian) phase space coordinates to astrometric observables and vice versa. See the [`astropy.coordinates`](https://docs.astropy.org/en/stable/coordinates/index.html) package. Compared to the [`pygaia.astrometry`](./pygaia/astrometry) package this gives you more functionality, the use of units, and much better maintained code.
 
The only functionality not (yet) provided in Astropy is the propagation of the covariance matrix of the astrometric observables to to a different epoch. This is implemented in the class [`pygaia.astrometry.coordinates.EpochPropagation`](./pygaia/astrometry/coordinates.py). Epoch propagation as such is implemented in Astropy as the [`apply_space_motion()`](https://docs.astropy.org/en/stable/coordinates/apply_space_motion.html) function of the [`SkyCoord`](https://docs.astropy.org/en/stable/api/astropy.coordinates.SkyCoord.html#astropy.coordinates.SkyCoord) class.

## Documentation

All classes and methods/functions are documented so use the python help() function to find out more.

## Installation

To install from source.

```bash
git clone https://github.com/agabrown/PyGaia.git
cd PyGaia
python -m pip install .
```

From PyPI:

```bash
pip install pygaia
```

## Dependencies

This package is intended for Python3.

The following python packages are required:

* [numpy](https://numpy.org/)
* [scipy](https://scipy.org/)
* [pandas](https://pandas.pydata.org/)
* [UltraJSON](https://github.com/ultrajson/ultrajson)

For the plotting tools:

* [matplotlib](https://matplotlib.org/)

## Acknowledgements

PyGaia is based on the effort by Jos de Bruijne to create and maintain the Gaia Science Performance pages (with support from David Katz, Paola Sartoretti, Francesca De Angeli, Dafydd Evans, [Marco Riello](https://github.com/marc0uk), and Josep Manel Carrasco), and benefits from the suggestions and contributions by [Morgan Fouesneau](https://github.com/mfouesneau) and [Tom Callingham](https://github.com/TomCallingham).

## Attribution

Please acknowledge the Gaia Project Scientist Support Team and the Gaia Data Processing and Analysis Consortium 
(DPAC) if you used this code in your research.

## License

Copyright (c) 2012-2023 Anthony Brown, Leiden University, Gaia Data Processing and Analysis Consortium
