Skip to content

Commit

Permalink
Merge pull request #833 from keflavich/simbad-vector
Browse files Browse the repository at this point in the history
WIP: SIMBAD refactor to vectorize some queries
  • Loading branch information
keflavich committed Jan 18, 2017
2 parents 4c6e8f5 + d68dbc5 commit ee9d8d9
Show file tree
Hide file tree
Showing 5 changed files with 305 additions and 234 deletions.
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

0 comments on commit ee9d8d9

Please sign in to comment.