Skip to content
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

WIP: SIMBAD refactor to vectorize some queries #833

Merged
merged 4 commits into from
Jan 18, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@
- SIMBAD queries allow multiple configurable parameters (#820)
- Add a capability to resume partially-completed downloads for services that
support the http 'range' keyword. Currently applied to ESO and ALMA (#812)
- SIMBAD now supports vectorized region queries. A list of coordinates can be
sent to SIMBAD simultaneously. Users will also be warned if they submit
queries with >10000 entries, which is the SIMBAD-recommended upper limit.
Also, SIMBAD support has noted that any IP submitting >6 queries/second
will be soft-banned, so we have added a warning to this effect in the
documentation (#833)

0.3.4 (2016-11-21)
------------------
Expand Down
6 changes: 6 additions & 0 deletions astroquery/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,3 +51,9 @@ class NoResultsWarning(AstropyWarning):
"""
Astroquery warning class to be issued when a query returns no result.
"""

class LargeQueryWarning(AstropyWarning):
"""
Astroquery warning class to be issued when a query is larger than
recommended for a given service.
"""
Loading