2 files were added to this release more than 14 days after its initial publication. Inspect the release files before installing.
=============
Python utilities and examples for accessing ESA Gaia data using Table Access Protocol (TAP).
Authors
=======
- Andrew R. Casey (Cambridge)
Installation
============
Install using `pip`:
````
pip install gaia-on-tap
````
Getting Started
===============
The `gaia.tap` package includes two main functions for accessing Gaia data: `query` and `cone_search`.
By default, both will return all retrieved sources as an `astropy.table.Table` object, so you can then
write the results to disk or do something useful with them.
Select stars around M67
-----------------------
````python
# Get all sources within 1 degree of M67
import astropy.coordinates as coord
from gaia.tap import cone_search
cluster = coord.SkyCoord.from_name("M67")
cluster_candidates = cone_search(cluster.ra.deg, cluster.dec.deg, 1.0)
````
Select hypervelocity star candidates in TGAS
--------------------------------------------
This doesn't treat the errors correctly, but it's a useful example to show what you can do:
````python
import gaia.tap
# Identify stars with tangential velocities exceeding 500 km/s, and reasonable parallaxes
hvs_candidates = gaia.tap.query(
""" SELECT *
FROM gaiadr1.tgas_source
WHERE parallax_error/parallax < 0.2
AND (4.74 * SQRT(POWER(pmra, 2) + POWER(pmdec, 2)))/parallax > 500 """)
````
Authenticate using your ESA/Gaia Archive credentials
----------------------------------------------------
If you have an account with the ESA/Gaia archive, you can include your credentials so that
you can upload or query private tables. This is done by having a file (e.g., `credentials.yaml`)
like:
````
username: acasey
password: my-super-awesome-password
````
And then in the code:
````python
import gaia
# Read in our credentials. You only have to do this once per Python session!
gaia.config.read("credentials.yaml")
# For any further queries use the authenticate flag, and the code will log you in automagically
sources = gaia.tap.query(" ... ", authenticate=True)
````
Upload a table to your local space on the ESA/Gaia archive
----------------------------------------------------------
If you want to upload a VOtable and use it for cross-matches through the ESA/Gaia archive:
````python
import gaia
# Read in our credentials.
gaia.config.read("credentials.yaml")
# Upload our table, which we will ask ESA/Gaia to call 'my_table'
gaia.tap.upload("my_table", "/local/path/to/your/table.votable")
# Now use it!
# (Ensure that you use the authenticate=True flag so that you can access your private tables)
xmatched_sources = tap.query(
""" SELECT *
FROM gaiadr1.gaia_source as gaia,
<YOUR_USERNAME>.my_table as my_table
WHERE 1=CONTAINS(
POINT('ICRS', my_table.ra, my_table.dec),
CIRCLE('ICRS', gaia.ra, gaia.dec, 1.5/3600)
)
""", authenticate=True)
````
Resources
=========
- [ESA Gaia TAP documentation](https://gea.esac.esa.int/archive/) -> Help -> Command-line access
- [Gaia ADQL cookbook](https://gaia.ac.uk/science/gaia-data-release-1/adql-cookbook)
- [GAVO ADQL cheat sheet](http://docs.g-vo.org/adqlref/adqlref.pdf)
- [Jo Bovy's `gaia_tools`](https://github.com/jobovy/gaia_tools)
- [TAP ADQL help on Vizier](http://tapvizier.u-strasbg.fr/adql/help.html)
Release files for gaia-on-tap 0.1.7
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Files added late
2 files were uploaded more than 14 days after the first file in this release.
While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.
We recommend inspecting the release files before installing.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| gaia-on-tap-0.1.7.tar.gz | 5.0 kB | Details |
Built distributions (wheels)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| gaia_on_tap-0.1.7-py3.6.egg | Legacy Egg format | - | - | Details |
| gaia_on_tap-0.1.7-py2.7.egg | Legacy Egg format | - | - | Details |
Total release size: 26.4 kB
Release files / gaia-on-tap-0.1.7.tar.gz
| Download URL | gaia-on-tap-0.1.7.tar.gz |
|---|---|
| Size | 5.0 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
7ad9191e2d3f761c6bc429ee1262426c77ef3277c6ed3d341dd58291ffce98d7
|
|
BLAKE2b-256 checksum How to use checksums |
a8b04a68ffadee5134c8605b0c74ce962ec6fa1d11233d26df55b7c6656926d4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
Release files / gaia_on_tap-0.1.7-py3.6.egg
File added late
This file was uploaded more than 14 days after the first file in this release.
While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.
We recommend inspecting the release file before installing.
| Download URL | gaia_on_tap-0.1.7-py3.6.egg |
|---|---|
| Size | 10.8 kB |
| Tags | Egg |
|
SHA-256 checksum How to use checksums |
02754b1ac151efe6086e537c1543ec13b46791dde0b752f82513630b7636df49
|
|
BLAKE2b-256 checksum How to use checksums |
cff1304256e5b5e2eafba15494faa5efe1a6a28fce2110ad4d10cc7aaf052a83
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
Release files / gaia_on_tap-0.1.7-py2.7.egg
File added late
This file was uploaded more than 14 days after the first file in this release.
While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.
We recommend inspecting the release file before installing.
| Download URL | gaia_on_tap-0.1.7-py2.7.egg |
|---|---|
| Size | 10.6 kB |
| Tags | Egg |
|
SHA-256 checksum How to use checksums |
692cc9f519a399c7575542e26f7a0fe714ef76c60d04d78ca6962bb54c8a072d
|
|
BLAKE2b-256 checksum How to use checksums |
e126d0f30cd19969c586b7ce147a3b99e4c04e631e77bd9894ef8f77c6a98c3a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |