-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add explanation and justification for inclusion of this new legacysurvey module
#2
Comments
It is convenient to have python interface to the LegacySurvey data, in a way similar to already existing SDSS astroquery interface. For the moment the data are publicly accessible, but through wget. Accessing them through astroquery provides better traceability of the data and supplements them with metadata useful for reproducibility / traceability of results obtained with the data. |
we could try to see if we can use TAP https://github.com/oda-hub/oda-sdss/issues/11 It's not guaranteed it will have the necessary data exposed. |
the request can be made as so: # see details in https://datalab.noirlab.edu/query.php?name=ls_dr9.tractor_n
from astroquery.utils.tap.core import Tap
datalab = Tap(url="https://datalab.noirlab.edu/tap")
#tables = gaia.load_tables(only_names=True)
job = datalab.launch_job('''
select top 10 ra,dec from ls_dr8.tractor_n where
ra > 100
'''
) I did not follow what exactly you request, but this seems somewhere around what is needed. Note that TAP does not exclude an dedicated astroquery module. So it is often useful to reduce complexity to "query_object" and "query_target". So my suggestion now would be:
|
I've just given a first try to TAP, and it looks really interesting and powerful indeed. It could actually help us a lot |
|
this is needed before the PR to astroquery @andriineronov |
possibly should be renamed! Need to consult JP Kneib |
We would need to explain why are we doing this: what is the value for us and for the community.
The text was updated successfully, but these errors were encountered: