Skip to content
This repository has been archived by the owner on Jul 24, 2019. It is now read-only.

Catalog matching Between Sextractor Sources and Querying APASS #8

Open
thomastu opened this issue Jun 10, 2016 · 5 comments
Open

Catalog matching Between Sextractor Sources and Querying APASS #8

thomastu opened this issue Jun 10, 2016 · 5 comments

Comments

@thomastu
Copy link
Collaborator

We want to take ALPHA_J2000 (RA) and DELTA_J2000 (RA and DEC) in decimal degrees and match to APASS catalog.

@thomastu
Copy link
Collaborator Author

There appears to be an implicit API on the APASS site --

https://www.aavso.org/cgi-bin/apass_download.pl?ra=10&dec=10&radius=1&outtype=1

Ultimately we want to be able to call

>>> print(apass(ra, dec, radius))
Some rectangular format that can be hashed by header names (e.g. pd.DataFrame or astropy table)

@thomastu
Copy link
Collaborator Author

Matching can be done via astropy.coordinates -- read "Matching catalogs/finidng nearest coordinates"

@thomastu
Copy link
Collaborator Author

APASS query thing is done, but some discussion on how we want the data is probably a good idea.

Currently, the output table is based off a pandas dataframe which is a little prohibitive. Great framework, but potentially steep learning curve.

Otherwise, querying APASS currently works as follows

in bash:

git fetch && git checkout apass

in python:

from flipp.libs.apass import Client as APASS

df = APASS.query(10., 10., 1.)
print(df.head())

@thomastu
Copy link
Collaborator Author

this has been merged to master. Second part of this is in zeropoint.py, might be good to rewrite later.

@thomastu thomastu changed the title Catalog matching Between Sextractor Sources and Astroquery Catalog matching Between Sextractor Sources and Querying APASS Jun 16, 2016
@thomastu
Copy link
Collaborator Author

We want to consider the ability to run catalog matching against other surveys as well. This issue will remain open to address that this should eventually be generalized.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant