astroquery 0.4.12.dev459__tar.gz → 0.4.12.dev10525__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1142) hide show
  1. astroquery-0.4.12.dev10525/CHANGES.rst +2442 -0
  2. astroquery-0.4.12.dev10525/PKG-INFO +177 -0
  3. astroquery-0.4.12.dev10525/ah_bootstrap.py +984 -0
  4. astroquery-0.4.12.dev10525/astropy_helpers/CHANGES.rst +660 -0
  5. astroquery-0.4.12.dev10525/astropy_helpers/LICENSE.rst +26 -0
  6. astroquery-0.4.12.dev10525/astropy_helpers/README.rst +28 -0
  7. astroquery-0.4.12.dev10525/astropy_helpers/ah_bootstrap.py +1013 -0
  8. astroquery-0.4.12.dev10525/astropy_helpers/astropy_helpers/__init__.py +49 -0
  9. astroquery-0.4.12.dev10525/astropy_helpers/astropy_helpers/commands/_dummy.py +73 -0
  10. astroquery-0.4.12.dev10525/astropy_helpers/astropy_helpers/commands/build_ext.py +206 -0
  11. astroquery-0.4.12.dev10525/astropy_helpers/astropy_helpers/commands/build_sphinx.py +235 -0
  12. astroquery-0.4.12.dev10525/astropy_helpers/astropy_helpers/commands/src/compiler.c +107 -0
  13. astroquery-0.4.12.dev10525/astropy_helpers/astropy_helpers/commands/test.py +40 -0
  14. astroquery-0.4.12.dev10525/astropy_helpers/astropy_helpers/conftest.py +57 -0
  15. astroquery-0.4.12.dev10525/astropy_helpers/astropy_helpers/distutils_helpers.py +263 -0
  16. astroquery-0.4.12.dev10525/astropy_helpers/astropy_helpers/git_helpers.py +195 -0
  17. astroquery-0.4.12.dev10525/astropy_helpers/astropy_helpers/openmp_helpers.py +301 -0
  18. astroquery-0.4.12.dev10525/astropy_helpers/astropy_helpers/setup_helpers.py +783 -0
  19. astroquery-0.4.12.dev10525/astropy_helpers/astropy_helpers/sphinx/conf.py +5 -0
  20. astroquery-0.4.12.dev10525/astropy_helpers/astropy_helpers/utils.py +305 -0
  21. astroquery-0.4.12.dev10525/astropy_helpers/astropy_helpers/version.py +18 -0
  22. astroquery-0.4.12.dev10525/astropy_helpers/astropy_helpers/version_helpers.py +364 -0
  23. astroquery-0.4.12.dev10525/astropy_helpers/astropy_helpers.egg-info/PKG-INFO +51 -0
  24. astroquery-0.4.12.dev10525/astropy_helpers/astropy_helpers.egg-info/SOURCES.txt +32 -0
  25. astroquery-0.4.12.dev10525/astropy_helpers/astropy_helpers.egg-info/not-zip-safe +1 -0
  26. astroquery-0.4.12.dev10525/astropy_helpers/astropy_helpers.egg-info/requires.txt +3 -0
  27. astroquery-0.4.12.dev10525/astropy_helpers/astropy_helpers.egg-info/top_level.txt +1 -0
  28. astroquery-0.4.12.dev10525/astropy_helpers/licenses/LICENSE_ASTROSCRAPPY.rst +28 -0
  29. astroquery-0.4.12.dev10525/astroquery/__init__.py +62 -0
  30. astroquery-0.4.12.dev10525/astroquery/alfalfa/tests/setup_package.py +11 -0
  31. astroquery-0.4.12.dev10525/astroquery/alma/setup_package.py +10 -0
  32. astroquery-0.4.12.dev10525/astroquery/alma/tests/setup_package.py +9 -0
  33. astroquery-0.4.12.dev10525/astroquery/astrometry_net/tests/setup_package.py +10 -0
  34. astroquery-0.4.12.dev10525/astroquery/atomic/setup_package.py +7 -0
  35. astroquery-0.4.12.dev10525/astroquery/besancon/tests/setup_package.py +12 -0
  36. astroquery-0.4.12.dev10525/astroquery/cadc/tests/setup_package.py +17 -0
  37. astroquery-0.4.12.dev10525/astroquery/casda/tests/setup_package.py +7 -0
  38. {astroquery-0.4.12.dev459/astroquery/esasky → astroquery-0.4.12.dev10525/astroquery/cosmosim}/tests/__init__.py +0 -0
  39. astroquery-0.4.12.dev10525/astroquery/esa/euclid/__init__.py +137 -0
  40. astroquery-0.4.12.dev10525/astroquery/esa/euclid/core.py +1573 -0
  41. astroquery-0.4.12.dev10525/astroquery/esa/euclid/tests/DummyTapHandler.py +301 -0
  42. astroquery-0.4.12.dev10525/astroquery/esa/euclid/tests/setup_package.py +22 -0
  43. astroquery-0.4.12.dev10525/astroquery/esa/euclid/tests/test_euclid_remote.py +78 -0
  44. astroquery-0.4.12.dev10525/astroquery/esa/euclid/tests/test_euclidtap.py +1443 -0
  45. astroquery-0.4.12.dev10525/astroquery/esa/hubble/__init__.py +40 -0
  46. astroquery-0.4.12.dev10525/astroquery/esa/hubble/core.py +1055 -0
  47. astroquery-0.4.12.dev10525/astroquery/esa/hubble/tests/setup_package.py +23 -0
  48. astroquery-0.4.12.dev10525/astroquery/esa/hubble/tests/test_esa_hubble.py +791 -0
  49. astroquery-0.4.12.dev10525/astroquery/esa/hubble/tests/test_esa_hubble_remote.py +145 -0
  50. astroquery-0.4.12.dev10525/astroquery/esa/integral/core.py +856 -0
  51. astroquery-0.4.12.dev10525/astroquery/esa/integral/tests/setup_package.py +18 -0
  52. astroquery-0.4.12.dev10525/astroquery/esa/integral/tests/test_isla_tap.py +678 -0
  53. astroquery-0.4.12.dev10525/astroquery/esa/iso/tests/setup_package.py +23 -0
  54. astroquery-0.4.12.dev10525/astroquery/esa/jwst/tests/setup_package.py +18 -0
  55. astroquery-0.4.12.dev10525/astroquery/esa/utils/__init__.py +10 -0
  56. astroquery-0.4.12.dev10525/astroquery/esa/utils/tests/setup_package.py +18 -0
  57. astroquery-0.4.12.dev10525/astroquery/esa/utils/tests/test_utils.py +311 -0
  58. astroquery-0.4.12.dev10525/astroquery/esa/utils/utils.py +473 -0
  59. astroquery-0.4.12.dev10525/astroquery/esa/xmm_newton/core.py +795 -0
  60. astroquery-0.4.12.dev10525/astroquery/esa/xmm_newton/tests/setup_package.py +25 -0
  61. astroquery-0.4.12.dev10525/astroquery/esa/xmm_newton/tests/test_xmm_newton.py +578 -0
  62. astroquery-0.4.12.dev10525/astroquery/esa/xmm_newton/tests/test_xmm_newton_remote.py +233 -0
  63. {astroquery-0.4.12.dev459/astroquery/fermi → astroquery-0.4.12.dev10525/astroquery/esasky}/tests/__init__.py +0 -0
  64. astroquery-0.4.12.dev10525/astroquery/esasky/tests/setup_package.py +16 -0
  65. astroquery-0.4.12.dev10525/astroquery/eso/core.py +1056 -0
  66. astroquery-0.4.12.dev10525/astroquery/eso/tests/setup_package.py +13 -0
  67. astroquery-0.4.12.dev10525/astroquery/exceptions.py +121 -0
  68. astroquery-0.4.12.dev10525/astroquery/exoplanet_orbit_database/setup_package.py +12 -0
  69. astroquery-0.4.12.dev10525/astroquery/fermi/setup_package.py +10 -0
  70. astroquery-0.4.12.dev10525/astroquery/gaia/core.py +1192 -0
  71. astroquery-0.4.12.dev10525/astroquery/gaia/tests/setup_package.py +18 -0
  72. astroquery-0.4.12.dev10525/astroquery/gaia/tests/test_gaiatap.py +1599 -0
  73. astroquery-0.4.12.dev10525/astroquery/gama/tests/setup_package.py +11 -0
  74. astroquery-0.4.12.dev10525/astroquery/gemini/tests/setup_package.py +7 -0
  75. astroquery-0.4.12.dev10525/astroquery/heasarc/core.py +962 -0
  76. astroquery-0.4.12.dev10525/astroquery/heasarc/tests/test_heasarc.py +721 -0
  77. astroquery-0.4.12.dev10525/astroquery/heasarc/tests/test_heasarc_remote.py +362 -0
  78. astroquery-0.4.12.dev10525/astroquery/hitran/setup_package.py +13 -0
  79. astroquery-0.4.12.dev10525/astroquery/image_cutouts/first/tests/setup_package.py +9 -0
  80. astroquery-0.4.12.dev10525/astroquery/imcce/tests/setup_package.py +11 -0
  81. astroquery-0.4.12.dev10525/astroquery/ipac/irsa/ibe/tests/setup_package.py +11 -0
  82. astroquery-0.4.12.dev10525/astroquery/ipac/irsa/irsa_dust/tests/setup_package.py +12 -0
  83. astroquery-0.4.12.dev10525/astroquery/ipac/irsa/tests/setup_package.py +13 -0
  84. astroquery-0.4.12.dev10525/astroquery/ipac/ned/core.py +763 -0
  85. astroquery-0.4.12.dev10525/astroquery/ipac/ned/setup_package.py +18 -0
  86. astroquery-0.4.12.dev10525/astroquery/ipac/nexsci/nasa_exoplanet_archive/tests/setup_package.py +9 -0
  87. astroquery-0.4.12.dev10525/astroquery/jplhorizons/tests/setup_package.py +11 -0
  88. astroquery-0.4.12.dev10525/astroquery/jplsbdb/tests/setup_package.py +11 -0
  89. astroquery-0.4.12.dev10525/astroquery/lamda/tests/setup_package.py +10 -0
  90. astroquery-0.4.12.dev10525/astroquery/linelists/cdms/setup_package.py +20 -0
  91. astroquery-0.4.12.dev10525/astroquery/linelists/jplspec/setup_package.py +16 -0
  92. astroquery-0.4.12.dev10525/astroquery/magpis/tests/setup_package.py +10 -0
  93. astroquery-0.4.12.dev10525/astroquery/mast/__init__.py +50 -0
  94. astroquery-0.4.12.dev10525/astroquery/mast/cloud.py +242 -0
  95. astroquery-0.4.12.dev10525/astroquery/mast/collections.py +672 -0
  96. astroquery-0.4.12.dev10525/astroquery/mast/core.py +140 -0
  97. astroquery-0.4.12.dev10525/astroquery/mast/cutouts.py +927 -0
  98. astroquery-0.4.12.dev10525/astroquery/mast/discovery_portal.py +538 -0
  99. astroquery-0.4.12.dev10525/astroquery/mast/missions.py +793 -0
  100. astroquery-0.4.12.dev10525/astroquery/mast/observations.py +1262 -0
  101. astroquery-0.4.12.dev10525/astroquery/mast/services.py +443 -0
  102. astroquery-0.4.12.dev10525/astroquery/mast/tests/setup_package.py +9 -0
  103. astroquery-0.4.12.dev10525/astroquery/mast/tests/test_mast.py +1487 -0
  104. astroquery-0.4.12.dev10525/astroquery/mast/tests/test_mast_remote.py +1658 -0
  105. astroquery-0.4.12.dev10525/astroquery/mast/utils.py +630 -0
  106. astroquery-0.4.12.dev10525/astroquery/mocserver/tests/setup_package.py +11 -0
  107. astroquery-0.4.12.dev10525/astroquery/mpc/setup_package.py +10 -0
  108. astroquery-0.4.12.dev10525/astroquery/nasa_ads/tests/setup_package.py +7 -0
  109. astroquery-0.4.12.dev10525/astroquery/nist/tests/setup_package.py +9 -0
  110. astroquery-0.4.12.dev10525/astroquery/nvas/tests/setup_package.py +11 -0
  111. astroquery-0.4.12.dev10525/astroquery/oac/tests/setup_package.py +11 -0
  112. astroquery-0.4.12.dev10525/astroquery/ogle/core.py +218 -0
  113. astroquery-0.4.12.dev10525/astroquery/ogle/tests/setup_package.py +10 -0
  114. astroquery-0.4.12.dev10525/astroquery/ogle/tests/test_ogle.py +63 -0
  115. astroquery-0.4.12.dev10525/astroquery/ogle/tests/test_ogle_remote.py +32 -0
  116. astroquery-0.4.12.dev10525/astroquery/open_exoplanet_catalogue/tests/setup_package.py +12 -0
  117. astroquery-0.4.12.dev10525/astroquery/query.py +616 -0
  118. astroquery-0.4.12.dev10525/astroquery/sdss/setup_package.py +8 -0
  119. astroquery-0.4.12.dev10525/astroquery/sdss/tests/setup_package.py +11 -0
  120. astroquery-0.4.12.dev10525/astroquery/setup_package.py +5 -0
  121. astroquery-0.4.12.dev10525/astroquery/simbad/core.py +1638 -0
  122. astroquery-0.4.12.dev10525/astroquery/simbad/setup_package.py +15 -0
  123. astroquery-0.4.12.dev10525/astroquery/simbad/tests/test_simbad_remote.py +249 -0
  124. astroquery-0.4.12.dev10525/astroquery/simbad/tests/test_utils.py +110 -0
  125. astroquery-0.4.12.dev10525/astroquery/skyview/setup_package.py +12 -0
  126. astroquery-0.4.12.dev10525/astroquery/solarsystem/neodys/setup_package.py +8 -0
  127. astroquery-0.4.12.dev10525/astroquery/solarsystem/pds/tests/setup_package.py +7 -0
  128. astroquery-0.4.12.dev10525/astroquery/splatalogue/setup_package.py +16 -0
  129. astroquery-0.4.12.dev10525/astroquery/svo_fps/core.py +156 -0
  130. astroquery-0.4.12.dev10525/astroquery/svo_fps/tests/setup_package.py +9 -0
  131. astroquery-0.4.12.dev10525/astroquery/svo_fps/tests/test_svo_fps_remote.py +50 -0
  132. astroquery-0.4.12.dev10525/astroquery/template_module/tests/setup_package.py +15 -0
  133. astroquery-0.4.12.dev10525/astroquery/tests/setup_package.py +6 -0
  134. astroquery-0.4.12.dev10525/astroquery/tests/test_query.py +402 -0
  135. astroquery-0.4.12.dev10525/astroquery/ukidss/tests/setup_package.py +13 -0
  136. astroquery-0.4.12.dev10525/astroquery/utils/tap/conn/tests/DummyResponse.py +105 -0
  137. astroquery-0.4.12.dev10525/astroquery/utils/tap/conn/tests/setup_package.py +21 -0
  138. astroquery-0.4.12.dev10525/astroquery/utils/tap/core.py +1998 -0
  139. astroquery-0.4.12.dev10525/astroquery/utils/tap/model/job.py +473 -0
  140. astroquery-0.4.12.dev10525/astroquery/utils/tap/model/tests/data/result_1.vot +29 -0
  141. astroquery-0.4.12.dev10525/astroquery/utils/tap/model/tests/setup_package.py +25 -0
  142. astroquery-0.4.12.dev10525/astroquery/utils/tap/model/tests/test_job.py +101 -0
  143. astroquery-0.4.12.dev10525/astroquery/utils/tap/tests/setup_package.py +40 -0
  144. astroquery-0.4.12.dev10525/astroquery/utils/tap/tests/test_tap.py +1182 -0
  145. astroquery-0.4.12.dev10525/astroquery/utils/tap/xmlparser/tests/setup_package.py +30 -0
  146. astroquery-0.4.12.dev10525/astroquery/vamdc/tests/setup_package.py +15 -0
  147. astroquery-0.4.12.dev10525/astroquery/version.py +218 -0
  148. astroquery-0.4.12.dev10525/astroquery/vizier/core.py +943 -0
  149. astroquery-0.4.12.dev10525/astroquery/vizier/setup_package.py +19 -0
  150. astroquery-0.4.12.dev10525/astroquery/vo_conesearch/__init__.py +34 -0
  151. astroquery-0.4.12.dev10525/astroquery/vo_conesearch/setup_package.py +9 -0
  152. astroquery-0.4.12.dev10525/astroquery/vo_conesearch/validator/setup_package.py +13 -0
  153. astroquery-0.4.12.dev10525/astroquery/xmatch/setup_package.py +10 -0
  154. astroquery-0.4.12.dev10525/docs/cadc/cadc.rst +642 -0
  155. astroquery-0.4.12.dev10525/docs/conf.py +213 -0
  156. astroquery-0.4.12.dev10525/docs/esa/euclid/euclid.rst +1314 -0
  157. astroquery-0.4.12.dev10525/docs/esa/euclid/images/EUC_MER_BGSUB-MOSAIC-NIR-H_TILE102158889-ED035A_20241024T212936.705156Z_00.00.png +0 -0
  158. astroquery-0.4.12.dev10525/docs/esa/euclid/images/astroquery_cutout_example.png +0 -0
  159. astroquery-0.4.12.dev10525/docs/esa/integral/integral.rst +242 -0
  160. astroquery-0.4.12.dev10525/docs/esa/jwst/jwst.rst +702 -0
  161. astroquery-0.4.12.dev10525/docs/esa/xmm_newton/xmm_newton.rst +216 -0
  162. astroquery-0.4.12.dev10525/docs/gaia/gaia.rst +940 -0
  163. astroquery-0.4.12.dev10525/docs/heasarc/heasarc.rst +429 -0
  164. astroquery-0.4.12.dev10525/docs/index.rst +494 -0
  165. astroquery-0.4.12.dev10525/docs/ipac/irsa/irsa.rst +603 -0
  166. astroquery-0.4.12.dev10525/docs/mast/mast_catalog.rst +332 -0
  167. astroquery-0.4.12.dev10525/docs/mast/mast_cut.rst +474 -0
  168. astroquery-0.4.12.dev10525/docs/mast/mast_missions.rst +334 -0
  169. astroquery-0.4.12.dev10525/docs/mast/mast_obsquery.rst +621 -0
  170. astroquery-0.4.12.dev10525/docs/ogle/ogle.rst +62 -0
  171. astroquery-0.4.12.dev10525/docs/simbad/simbad.rst +878 -0
  172. astroquery-0.4.12.dev10525/docs/svo_fps/svo_fps.rst +195 -0
  173. astroquery-0.4.12.dev10525/docs/testing.rst +135 -0
  174. astroquery-0.4.12.dev10525/docs/vizier/vizier.rst +466 -0
  175. astroquery-0.4.12.dev10525/docs/vo_conesearch/vo_conesearch.rst +239 -0
  176. astroquery-0.4.12.dev10525/pyproject.toml +16 -0
  177. astroquery-0.4.12.dev10525/setup.cfg +179 -0
  178. astroquery-0.4.12.dev10525/setup.py +24 -0
  179. astroquery-0.4.12.dev10525/tox.ini +105 -0
  180. astroquery-0.4.12.dev459/.github/dependabot.yml +0 -18
  181. astroquery-0.4.12.dev459/.github/release.yml +0 -6
  182. astroquery-0.4.12.dev459/.github/workflows/changelog.yml +0 -21
  183. astroquery-0.4.12.dev459/.github/workflows/ci_crontests.yml +0 -49
  184. astroquery-0.4.12.dev459/.github/workflows/ci_devtests.yml +0 -62
  185. astroquery-0.4.12.dev459/.github/workflows/ci_online_crontests.yml +0 -51
  186. astroquery-0.4.12.dev459/.github/workflows/ci_tests.yml +0 -81
  187. astroquery-0.4.12.dev459/.github/workflows/codeql-analysis.yml +0 -59
  188. astroquery-0.4.12.dev459/.gitignore +0 -74
  189. astroquery-0.4.12.dev459/.mailmap +0 -120
  190. astroquery-0.4.12.dev459/.readthedocs.yaml +0 -26
  191. astroquery-0.4.12.dev459/CHANGES.rst +0 -2547
  192. astroquery-0.4.12.dev459/CONTRIBUTING.rst +0 -76
  193. astroquery-0.4.12.dev459/MANIFEST.in +0 -7
  194. astroquery-0.4.12.dev459/PKG-INFO +0 -175
  195. astroquery-0.4.12.dev459/astroquery/__init__.py +0 -63
  196. astroquery-0.4.12.dev459/astroquery/esa/emds/__init__.py +0 -45
  197. astroquery-0.4.12.dev459/astroquery/esa/emds/core.py +0 -296
  198. astroquery-0.4.12.dev459/astroquery/esa/emds/einsteinprobe/__init__.py +0 -33
  199. astroquery-0.4.12.dev459/astroquery/esa/emds/einsteinprobe/core.py +0 -228
  200. astroquery-0.4.12.dev459/astroquery/esa/emds/einsteinprobe/test/test_einsteinprobe_remote.py +0 -206
  201. astroquery-0.4.12.dev459/astroquery/esa/emds/einsteinprobe/test/test_einsteinprobe_tap.py +0 -393
  202. astroquery-0.4.12.dev459/astroquery/esa/emds/tests/test_emds_remote.py +0 -224
  203. astroquery-0.4.12.dev459/astroquery/esa/emds/tests/test_emds_tap.py +0 -367
  204. astroquery-0.4.12.dev459/astroquery/esa/euclid/__init__.py +0 -147
  205. astroquery-0.4.12.dev459/astroquery/esa/euclid/core.py +0 -1823
  206. astroquery-0.4.12.dev459/astroquery/esa/euclid/tests/DummyTapHandler.py +0 -299
  207. astroquery-0.4.12.dev459/astroquery/esa/euclid/tests/test_euclid_remote.py +0 -79
  208. astroquery-0.4.12.dev459/astroquery/esa/euclid/tests/test_euclidtap.py +0 -1790
  209. astroquery-0.4.12.dev459/astroquery/esa/hubble/__init__.py +0 -42
  210. astroquery-0.4.12.dev459/astroquery/esa/hubble/core.py +0 -989
  211. astroquery-0.4.12.dev459/astroquery/esa/hubble/tests/test_esa_hubble.py +0 -791
  212. astroquery-0.4.12.dev459/astroquery/esa/hubble/tests/test_esa_hubble_remote.py +0 -145
  213. astroquery-0.4.12.dev459/astroquery/esa/integral/core.py +0 -708
  214. astroquery-0.4.12.dev459/astroquery/esa/integral/tests/test_isla_tap.py +0 -676
  215. astroquery-0.4.12.dev459/astroquery/esa/plato/__init__.py +0 -39
  216. astroquery-0.4.12.dev459/astroquery/esa/plato/core.py +0 -286
  217. astroquery-0.4.12.dev459/astroquery/esa/plato/tests/__init__.py +0 -10
  218. astroquery-0.4.12.dev459/astroquery/esa/plato/tests/mocks.py +0 -48
  219. astroquery-0.4.12.dev459/astroquery/esa/plato/tests/test_plato_tap.py +0 -382
  220. astroquery-0.4.12.dev459/astroquery/esa/utils/__init__.py +0 -14
  221. astroquery-0.4.12.dev459/astroquery/esa/utils/tests/mocks.py +0 -46
  222. astroquery-0.4.12.dev459/astroquery/esa/utils/tests/test_utils.py +0 -499
  223. astroquery-0.4.12.dev459/astroquery/esa/utils/utils.py +0 -979
  224. astroquery-0.4.12.dev459/astroquery/esa/xmm_newton/core.py +0 -797
  225. astroquery-0.4.12.dev459/astroquery/esa/xmm_newton/tests/test_xmm_newton.py +0 -645
  226. astroquery-0.4.12.dev459/astroquery/esa/xmm_newton/tests/test_xmm_newton_remote.py +0 -233
  227. astroquery-0.4.12.dev459/astroquery/eso/core.py +0 -1056
  228. astroquery-0.4.12.dev459/astroquery/exceptions.py +0 -129
  229. astroquery-0.4.12.dev459/astroquery/gaia/core.py +0 -1224
  230. astroquery-0.4.12.dev459/astroquery/gaia/tests/test_gaiatap.py +0 -1657
  231. astroquery-0.4.12.dev459/astroquery/heasarc/core.py +0 -987
  232. astroquery-0.4.12.dev459/astroquery/heasarc/tests/test_heasarc.py +0 -732
  233. astroquery-0.4.12.dev459/astroquery/heasarc/tests/test_heasarc_remote.py +0 -369
  234. astroquery-0.4.12.dev459/astroquery/ipac/ned/core.py +0 -767
  235. astroquery-0.4.12.dev459/astroquery/mast/__init__.py +0 -54
  236. astroquery-0.4.12.dev459/astroquery/mast/cloud.py +0 -288
  237. astroquery-0.4.12.dev459/astroquery/mast/collections.py +0 -673
  238. astroquery-0.4.12.dev459/astroquery/mast/core.py +0 -142
  239. astroquery-0.4.12.dev459/astroquery/mast/cutouts.py +0 -929
  240. astroquery-0.4.12.dev459/astroquery/mast/discovery_portal.py +0 -538
  241. astroquery-0.4.12.dev459/astroquery/mast/missions.py +0 -971
  242. astroquery-0.4.12.dev459/astroquery/mast/observations.py +0 -1390
  243. astroquery-0.4.12.dev459/astroquery/mast/services.py +0 -473
  244. astroquery-0.4.12.dev459/astroquery/mast/tests/data/README.rst +0 -64
  245. astroquery-0.4.12.dev459/astroquery/mast/tests/test_mast.py +0 -1946
  246. astroquery-0.4.12.dev459/astroquery/mast/tests/test_mast_remote.py +0 -1730
  247. astroquery-0.4.12.dev459/astroquery/mast/utils.py +0 -630
  248. astroquery-0.4.12.dev459/astroquery/noirlab/__init__.py +0 -24
  249. astroquery-0.4.12.dev459/astroquery/noirlab/core.py +0 -347
  250. astroquery-0.4.12.dev459/astroquery/noirlab/tests/expected.py +0 -355
  251. astroquery-0.4.12.dev459/astroquery/noirlab/tests/test_noirlab.py +0 -181
  252. astroquery-0.4.12.dev459/astroquery/noirlab/tests/test_noirlab_remote.py +0 -178
  253. astroquery-0.4.12.dev459/astroquery/ogle/core.py +0 -205
  254. astroquery-0.4.12.dev459/astroquery/ogle/tests/test_ogle.py +0 -87
  255. astroquery-0.4.12.dev459/astroquery/ogle/tests/test_ogle_remote.py +0 -22
  256. astroquery-0.4.12.dev459/astroquery/query.py +0 -629
  257. astroquery-0.4.12.dev459/astroquery/simbad/core.py +0 -1637
  258. astroquery-0.4.12.dev459/astroquery/simbad/tests/test_simbad_remote.py +0 -249
  259. astroquery-0.4.12.dev459/astroquery/simbad/tests/test_utils.py +0 -117
  260. astroquery-0.4.12.dev459/astroquery/svo_fps/core.py +0 -191
  261. astroquery-0.4.12.dev459/astroquery/svo_fps/tests/test_svo_fps_remote.py +0 -60
  262. astroquery-0.4.12.dev459/astroquery/tests/test_query.py +0 -410
  263. astroquery-0.4.12.dev459/astroquery/utils/tap/conn/tests/DummyResponse.py +0 -99
  264. astroquery-0.4.12.dev459/astroquery/utils/tap/core.py +0 -1992
  265. astroquery-0.4.12.dev459/astroquery/utils/tap/model/job.py +0 -483
  266. astroquery-0.4.12.dev459/astroquery/utils/tap/model/tests/data/result_1.csv +0 -2
  267. astroquery-0.4.12.dev459/astroquery/utils/tap/model/tests/data/result_1.ecsv +0 -83
  268. astroquery-0.4.12.dev459/astroquery/utils/tap/model/tests/data/result_1.fits +0 -0
  269. astroquery-0.4.12.dev459/astroquery/utils/tap/model/tests/data/result_1.json +0 -10
  270. astroquery-0.4.12.dev459/astroquery/utils/tap/model/tests/data/result_1.vot +0 -102
  271. astroquery-0.4.12.dev459/astroquery/utils/tap/model/tests/data/result_1.vot.gz +0 -0
  272. astroquery-0.4.12.dev459/astroquery/utils/tap/model/tests/data/result_1.xml +0 -102
  273. astroquery-0.4.12.dev459/astroquery/utils/tap/model/tests/test_job.py +0 -176
  274. astroquery-0.4.12.dev459/astroquery/utils/tap/tests/test_tap.py +0 -1200
  275. astroquery-0.4.12.dev459/astroquery/utils/tap/xmlparser/tests/data/1714556098855O-result.fits +0 -3
  276. astroquery-0.4.12.dev459/astroquery/version.py +0 -24
  277. astroquery-0.4.12.dev459/astroquery/vizier/core.py +0 -946
  278. astroquery-0.4.12.dev459/astroquery/vo_conesearch/__init__.py +0 -43
  279. astroquery-0.4.12.dev459/astroquery.egg-info/PKG-INFO +0 -175
  280. astroquery-0.4.12.dev459/astroquery.egg-info/SOURCES.txt +0 -963
  281. astroquery-0.4.12.dev459/astroquery.egg-info/requires.txt +0 -36
  282. astroquery-0.4.12.dev459/astroquery.egg-info/top_level.txt +0 -1
  283. astroquery-0.4.12.dev459/conftest.py +0 -76
  284. astroquery-0.4.12.dev459/docs/cadc/cadc.rst +0 -642
  285. astroquery-0.4.12.dev459/docs/conf.py +0 -181
  286. astroquery-0.4.12.dev459/docs/esa/emds/einsteinprobe/einsteinprobe.rst +0 -386
  287. astroquery-0.4.12.dev459/docs/esa/emds/emds.rst +0 -429
  288. astroquery-0.4.12.dev459/docs/esa/euclid/euclid.rst +0 -606
  289. astroquery-0.4.12.dev459/docs/esa/euclid/images/EUC_MER_BGSUB-MOSAIC-VIS_TILE102158889-F95D3B_20241025T024806.508980Z_00.00.png +0 -0
  290. astroquery-0.4.12.dev459/docs/esa/euclid/images/cutout_example.png +0 -0
  291. astroquery-0.4.12.dev459/docs/esa/euclid/images/spectra_example.png +0 -0
  292. astroquery-0.4.12.dev459/docs/esa/integral/integral.rst +0 -252
  293. astroquery-0.4.12.dev459/docs/esa/jwst/jwst.rst +0 -702
  294. astroquery-0.4.12.dev459/docs/esa/plato/plato.rst +0 -280
  295. astroquery-0.4.12.dev459/docs/esa/plato/plato_plot_1.png +0 -0
  296. astroquery-0.4.12.dev459/docs/esa/plato/plato_plot_2.png +0 -0
  297. astroquery-0.4.12.dev459/docs/esa/utils/utils.rst +0 -33
  298. astroquery-0.4.12.dev459/docs/esa/xmm_newton/xmm_newton.rst +0 -205
  299. astroquery-0.4.12.dev459/docs/gaia/gaia.rst +0 -940
  300. astroquery-0.4.12.dev459/docs/heasarc/heasarc.rst +0 -440
  301. astroquery-0.4.12.dev459/docs/index.rst +0 -511
  302. astroquery-0.4.12.dev459/docs/ipac/irsa/irsa.rst +0 -616
  303. astroquery-0.4.12.dev459/docs/mast/mast_catalog.rst +0 -332
  304. astroquery-0.4.12.dev459/docs/mast/mast_cut.rst +0 -474
  305. astroquery-0.4.12.dev459/docs/mast/mast_missions.rst +0 -379
  306. astroquery-0.4.12.dev459/docs/mast/mast_obsquery.rst +0 -631
  307. astroquery-0.4.12.dev459/docs/noirlab/noirlab.rst +0 -195
  308. astroquery-0.4.12.dev459/docs/ogle/ogle.rst +0 -61
  309. astroquery-0.4.12.dev459/docs/simbad/simbad.rst +0 -903
  310. astroquery-0.4.12.dev459/docs/svo_fps/svo_fps.rst +0 -211
  311. astroquery-0.4.12.dev459/docs/testing.rst +0 -119
  312. astroquery-0.4.12.dev459/docs/vizier/vizier.rst +0 -468
  313. astroquery-0.4.12.dev459/docs/vo_conesearch/vo_conesearch.rst +0 -247
  314. astroquery-0.4.12.dev459/pyproject.toml +0 -206
  315. astroquery-0.4.12.dev459/setup.cfg +0 -4
  316. astroquery-0.4.12.dev459/tox.ini +0 -101
  317. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/CITATION +0 -0
  318. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/LICENSE.rst +0 -0
  319. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/README.rst +0 -0
  320. {astroquery-0.4.12.dev459/astroquery/alfalfa/tests → astroquery-0.4.12.dev10525/astropy_helpers/astropy_helpers/commands}/__init__.py +0 -0
  321. {astroquery-0.4.12.dev459/astroquery/alma/tests → astroquery-0.4.12.dev10525/astropy_helpers/astropy_helpers/sphinx}/__init__.py +0 -0
  322. {astroquery-0.4.12.dev459/astroquery.egg-info → astroquery-0.4.12.dev10525/astropy_helpers/astropy_helpers.egg-info}/dependency_links.txt +0 -0
  323. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/CITATION +0 -0
  324. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/_astropy_init.py +0 -0
  325. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/alfalfa/__init__.py +0 -0
  326. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/alfalfa/core.py +0 -0
  327. {astroquery-0.4.12.dev459/astroquery/astrometry_net → astroquery-0.4.12.dev10525/astroquery/alfalfa}/tests/__init__.py +0 -0
  328. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/alfalfa/tests/data/alfalfa_cat_small.txt +0 -0
  329. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/alfalfa/tests/data/alfalfa_sp.fits +0 -0
  330. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/alfalfa/tests/test_alfalfa.py +0 -0
  331. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/alma/__init__.py +0 -0
  332. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/alma/core.py +0 -0
  333. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/alma/data/cycle0_delivery_asdm_mapping.txt +0 -0
  334. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/alma/tapsql.py +0 -0
  335. {astroquery-0.4.12.dev459/astroquery/atomic → astroquery-0.4.12.dev10525/astroquery/alma}/tests/__init__.py +0 -0
  336. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/alma/tests/data/alma-datalink-recurse-aux.xml +0 -0
  337. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/alma/tests/data/alma-datalink-recurse-this.xml +0 -0
  338. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/alma/tests/data/alma-datalink.xml +0 -0
  339. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/alma/tests/data/alma-empty.txt +0 -0
  340. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/alma/tests/data/alma-onerow.txt +0 -0
  341. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/alma/tests/data/alma-shapes.xml +0 -0
  342. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/alma/tests/test_alma.py +0 -0
  343. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/alma/tests/test_alma_auth.py +0 -0
  344. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/alma/tests/test_alma_remote.py +0 -0
  345. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/alma/tests/test_alma_utils.py +0 -0
  346. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/alma/utils.py +0 -0
  347. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/astrometry_net/__init__.py +0 -0
  348. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/astrometry_net/core.py +0 -0
  349. {astroquery-0.4.12.dev459/astroquery/besancon → astroquery-0.4.12.dev10525/astroquery/astrometry_net}/tests/__init__.py +0 -0
  350. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/astrometry_net/tests/data/test-source-list.fit +0 -0
  351. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/astrometry_net/tests/data/test-wcs-sol.fit +0 -0
  352. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/astrometry_net/tests/data/thumbnail-image.fit.gz +0 -0
  353. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/astrometry_net/tests/data/wcs-sol-from-source-list-index-5200.fit +0 -0
  354. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/astrometry_net/tests/data/wcs-sol-from-thumbnail-image-index-5200.fit +0 -0
  355. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/astrometry_net/tests/test_astrometry_net.py +0 -0
  356. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/astrometry_net/tests/test_astrometry_net_remote.py +0 -0
  357. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/atomic/__init__.py +0 -0
  358. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/atomic/core.py +0 -0
  359. {astroquery-0.4.12.dev459/astroquery/cadc → astroquery-0.4.12.dev10525/astroquery/atomic}/tests/__init__.py +0 -0
  360. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/atomic/tests/data/default_params_result.html +0 -0
  361. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/atomic/tests/data/empty_results.html +0 -0
  362. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/atomic/tests/test_atomic.py +0 -0
  363. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/atomic/tests/test_atomic_remote.py +0 -0
  364. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/atomic/utils.py +0 -0
  365. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/besancon/__init__.py +0 -0
  366. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/besancon/core.py +0 -0
  367. {astroquery-0.4.12.dev459/astroquery/cds → astroquery-0.4.12.dev10525/astroquery/besancon}/tests/__init__.py +0 -0
  368. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/besancon/tests/data/1376235131.430670.resu +0 -0
  369. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/besancon/tests/data/besancon_test.txt +0 -0
  370. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/besancon/tests/data/besancon_test2.txt +0 -0
  371. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/besancon/tests/data/default_params.txt +0 -0
  372. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/besancon/tests/data/query_return.iframe.html +0 -0
  373. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/besancon/tests/test_besancon.py +0 -0
  374. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/cadc/__init__.py +0 -0
  375. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/cadc/core.py +0 -0
  376. {astroquery-0.4.12.dev459/astroquery/cosmosim → astroquery-0.4.12.dev10525/astroquery/cadc}/tests/__init__.py +0 -0
  377. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/cadc/tests/data/query_images.fits +0 -0
  378. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/cadc/tests/data/tap_caps.xml +0 -0
  379. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/cadc/tests/test_cadctap.py +0 -0
  380. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/cadc/tests/test_cadctap_remote.py +0 -0
  381. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/casda/__init__.py +0 -0
  382. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/casda/core.py +0 -0
  383. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/casda/tests/__init__.py +0 -0
  384. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/casda/tests/data/availability.xml +0 -0
  385. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/casda/tests/data/box.xml +0 -0
  386. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/casda/tests/data/completed_job.xml +0 -0
  387. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/casda/tests/data/cone.xml +0 -0
  388. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/casda/tests/data/cutout_333.9092_-45.8418_0.5000.xml +0 -0
  389. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/casda/tests/data/datalink.xml +0 -0
  390. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/casda/tests/data/datalink_noaccess.xml +0 -0
  391. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/casda/tests/data/partial_unreleased.xml +0 -0
  392. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/casda/tests/data/run_job.xml +0 -0
  393. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/casda/tests/data/suspended_job.xml +0 -0
  394. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/casda/tests/test_casda.py +0 -0
  395. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/casda/tests/test_casda_remote.py +0 -0
  396. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/cds/__init__.py +0 -0
  397. {astroquery-0.4.12.dev459/astroquery/esa → astroquery-0.4.12.dev10525/astroquery/cds/tests}/__init__.py +0 -0
  398. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/cosmosim/__init__.py +0 -0
  399. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/cosmosim/core.py +0 -0
  400. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/cosmosim/tests/test_cosmosim.py +0 -0
  401. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/dace/__init__.py +0 -0
  402. {astroquery-0.4.12.dev459/astroquery/eso/tests → astroquery-0.4.12.dev10525/astroquery/esa}/__init__.py +0 -0
  403. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/euclid/tests/__init__.py +0 -0
  404. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/euclid/tests/data/1714556098855O-result.vot +0 -0
  405. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/euclid/tests/data/job_1.vot +0 -0
  406. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/euclid/tests/data/jobs.xml +0 -0
  407. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/euclid/tests/data/test_get_product_list.vot +0 -0
  408. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/hsa/__init__.py +0 -0
  409. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/hsa/core.py +0 -0
  410. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/hsa/tests/__init__.py +0 -0
  411. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/hsa/tests/dummy_handler.py +0 -0
  412. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/hsa/tests/dummy_tap_handler.py +0 -0
  413. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/hsa/tests/test_hsa.py +0 -0
  414. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/hsa/tests/test_hsa_remote.py +0 -0
  415. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/hubble/tests/__init__.py +0 -0
  416. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/hubble/tests/data/J6FL25S4Q.vot.test +0 -0
  417. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/hubble/tests/data/X0MC5101T.vot.test +0 -0
  418. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/hubble/tests/data/cone_search.vot +0 -0
  419. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/hubble/tests/data/cone_search_m31_5.vot +0 -0
  420. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/hubble/tests/data/cone_search_m31_5.vot.test +0 -0
  421. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/hubble/tests/data/m31.vot.test +0 -0
  422. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/hubble/tests/dummy_tap_handler.py +0 -0
  423. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/integral/__init__.py +0 -0
  424. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/integral/tests/__init__.py +0 -0
  425. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/integral/tests/data/tar_file.tar +0 -0
  426. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/integral/tests/data/tar_gz_file.gz +0 -0
  427. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/integral/tests/data/zip_file.zip +0 -0
  428. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/integral/tests/mocks.py +0 -0
  429. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/integral/tests/test_isla_remote.py +0 -0
  430. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/iso/__init__.py +0 -0
  431. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/iso/core.py +0 -0
  432. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/iso/tests/__init__.py +0 -0
  433. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/iso/tests/dummy_handler.py +0 -0
  434. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/iso/tests/dummy_tap_handler.py +0 -0
  435. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/iso/tests/test_iso.py +0 -0
  436. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/jwst/__init__.py +0 -0
  437. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/jwst/core.py +0 -0
  438. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/jwst/data_access.py +0 -0
  439. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/jwst/tests/DummyTapHandler.py +0 -0
  440. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/jwst/tests/__init__.py +0 -0
  441. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/jwst/tests/data/job_1.vot +0 -0
  442. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/jwst/tests/data/simbad_M1.vot +0 -0
  443. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/jwst/tests/data/simbad_TEST.vot +0 -0
  444. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/jwst/tests/data/single_product_retrieval.tar +0 -0
  445. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/jwst/tests/data/single_product_retrieval_1.fits +0 -0
  446. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/jwst/tests/data/single_product_retrieval_2.fits.gz +0 -0
  447. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/jwst/tests/data/single_product_retrieval_3.fits.zip +0 -0
  448. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/jwst/tests/data/test_query_by_target_name_simbad_ned_error.vot +0 -0
  449. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/jwst/tests/data/test_query_by_target_name_vizier_error.vot +0 -0
  450. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/jwst/tests/data/three_products_retrieval.tar +0 -0
  451. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/jwst/tests/test_jwstdata.py +0 -0
  452. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/jwst/tests/test_jwsttap.py +0 -0
  453. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/utils/tests/__init__.py +0 -0
  454. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/utils/tests/data/tar_file.tar +0 -0
  455. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/utils/tests/data/tar_gz_file.tar.gz +0 -0
  456. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/utils/tests/data/test.fits +0 -0
  457. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/utils/tests/data/zip_file.zip +0 -0
  458. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/xmm_newton/__init__.py +0 -0
  459. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/xmm_newton/tests/__init__.py +0 -0
  460. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/xmm_newton/tests/data/dummy_config.ini +0 -0
  461. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/xmm_newton/tests/dummy_handler.py +0 -0
  462. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esa/xmm_newton/tests/dummy_tap_handler.py +0 -0
  463. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esasky/__init__.py +0 -0
  464. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esasky/core.py +0 -0
  465. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/esasky/tests/test_esasky_remote.py +0 -0
  466. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/eso/__init__.py +0 -0
  467. {astroquery-0.4.12.dev459/astroquery/gama → astroquery-0.4.12.dev10525/astroquery/eso}/tests/__init__.py +0 -0
  468. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/eso/tests/data/FORS2.2021-01-02T00_59_12.533_raw2raw.xml +0 -0
  469. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/eso/tests/data/FORS2.2021-01-02T00_59_12.533_raw2raw_multipart.xml +0 -0
  470. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/eso/tests/data/oidc_token.json +0 -0
  471. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/eso/tests/data/query_apex_ql_5.csv +0 -0
  472. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/eso/tests/data/query_coll_vvv_sgra.csv +0 -0
  473. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/eso/tests/data/query_inst_sinfoni_sgra.csv +0 -0
  474. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/eso/tests/data/query_list_instruments.csv +0 -0
  475. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/eso/tests/data/query_list_surveys.csv +0 -0
  476. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/eso/tests/data/query_main_sgra.csv +0 -0
  477. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/eso/tests/data/testfile.fits.Z +0 -0
  478. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/eso/tests/test_eso.py +0 -0
  479. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/eso/tests/test_eso_remote.py +0 -0
  480. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/eso/utils.py +0 -0
  481. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/exoplanet_orbit_database/__init__.py +0 -0
  482. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/exoplanet_orbit_database/data/exoplanet_orbit_database_units.json +0 -0
  483. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/exoplanet_orbit_database/exoplanet_orbit_database.py +0 -0
  484. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/exoplanet_orbit_database/tests/__init__.py +0 -0
  485. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/exoplanet_orbit_database/tests/data/exoplanet_orbit_database.csv +0 -0
  486. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/exoplanet_orbit_database/tests/test_exoplanet_orbit_database.py +0 -0
  487. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/fermi/__init__.py +0 -0
  488. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/fermi/core.py +0 -0
  489. {astroquery-0.4.12.dev459/astroquery/gemini → astroquery-0.4.12.dev10525/astroquery/fermi}/tests/__init__.py +0 -0
  490. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/fermi/tests/data/query_result_m31.html +0 -0
  491. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/fermi/tests/data/result_page_m31.html +0 -0
  492. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/fermi/tests/test_fermi.py +0 -0
  493. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/fermi/tests/test_fermi_remote.py +0 -0
  494. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/gaia/__init__.py +0 -0
  495. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/gaia/tests/__init__.py +0 -0
  496. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/gaia/tests/data/1710099405832VAL-result.vot +0 -0
  497. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/gaia/tests/data/1712337806100O-result.ecsv +0 -0
  498. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/gaia/tests/data/cone_search.json +0 -0
  499. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/gaia/tests/data/cone_search_async.json +0 -0
  500. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/gaia/tests/data/gaia_dr3_source_id_5937083312263887616_dl_products_csv.zip +0 -0
  501. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/gaia/tests/data/gaia_dr3_source_id_5937083312263887616_dl_products_ecsv.zip +0 -0
  502. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/gaia/tests/data/gaia_dr3_source_id_5937083312263887616_dl_products_fits.zip +0 -0
  503. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/gaia/tests/data/gaia_dr3_source_id_5937083312263887616_dl_products_vot.zip +0 -0
  504. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/gaia/tests/data/job_1.vot +0 -0
  505. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/gaia/tests/data/job_2.vot.gz +0 -0
  506. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/gaia/tests/data/launch_job.json +0 -0
  507. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/gaia/tests/data/launch_job_async.json +0 -0
  508. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/gaia/tests/test_gaia_remote.py +0 -0
  509. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/gama/__init__.py +0 -0
  510. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/gama/core.py +0 -0
  511. {astroquery-0.4.12.dev459/astroquery/heasarc → astroquery-0.4.12.dev10525/astroquery/gama}/tests/__init__.py +0 -0
  512. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/gama/tests/data/GAMA_HzVs28.fits +0 -0
  513. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/gama/tests/data/query_result.html +0 -0
  514. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/gama/tests/test_gama.py +0 -0
  515. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/gama/tests/test_gama_remote.py +0 -0
  516. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/gemini/__init__.py +0 -0
  517. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/gemini/core.py +0 -0
  518. {astroquery-0.4.12.dev459/astroquery/hips2fits → astroquery-0.4.12.dev10525/astroquery/gemini}/tests/__init__.py +0 -0
  519. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/gemini/tests/data/m101.json +0 -0
  520. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/gemini/tests/test_gemini.py +0 -0
  521. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/gemini/tests/test_remote.py +0 -0
  522. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/gemini/urlhelper.py +0 -0
  523. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/heasarc/__init__.py +0 -0
  524. {astroquery-0.4.12.dev459/astroquery/hitran → astroquery-0.4.12.dev10525/astroquery/heasarc}/tests/__init__.py +0 -0
  525. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/hips2fits/__init__.py +0 -0
  526. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/hips2fits/core.py +0 -0
  527. {astroquery-0.4.12.dev459/astroquery/image_cutouts → astroquery-0.4.12.dev10525/astroquery/hips2fits/tests}/__init__.py +0 -0
  528. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/hips2fits/tests/test_hips2fits.py +0 -0
  529. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/hips2fits/tests/test_hips2fits_remote.py +0 -0
  530. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/hitran/__init__.py +0 -0
  531. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/hitran/core.py +0 -0
  532. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/hitran/data/readme.txt +0 -0
  533. {astroquery-0.4.12.dev459/astroquery/image_cutouts/first → astroquery-0.4.12.dev10525/astroquery/hitran}/tests/__init__.py +0 -0
  534. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/hitran/tests/data/H2O.data +0 -0
  535. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/hitran/tests/test_hitran.py +0 -0
  536. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/hitran/tests/test_hitran_remote.py +0 -0
  537. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/hitran/utils.py +0 -0
  538. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ibe/__init__.py +0 -0
  539. {astroquery-0.4.12.dev459/astroquery/imcce/tests → astroquery-0.4.12.dev10525/astroquery/image_cutouts}/__init__.py +0 -0
  540. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/image_cutouts/first/__init__.py +0 -0
  541. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/image_cutouts/first/core.py +0 -0
  542. {astroquery-0.4.12.dev459/astroquery/ipac → astroquery-0.4.12.dev10525/astroquery/image_cutouts/first/tests}/__init__.py +0 -0
  543. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/image_cutouts/first/tests/data/image.fits +0 -0
  544. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/image_cutouts/first/tests/test_first.py +0 -0
  545. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/image_cutouts/first/tests/test_first_remote.py +0 -0
  546. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/imcce/__init__.py +0 -0
  547. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/imcce/core.py +0 -0
  548. {astroquery-0.4.12.dev459/astroquery/ipac/irsa/ibe → astroquery-0.4.12.dev10525/astroquery/imcce}/tests/__init__.py +0 -0
  549. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/imcce/tests/data/3552_coordtype1.dat +0 -0
  550. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/imcce/tests/data/3552_coordtype2.dat +0 -0
  551. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/imcce/tests/data/3552_coordtype3.dat +0 -0
  552. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/imcce/tests/data/3552_coordtype4.dat +0 -0
  553. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/imcce/tests/data/3552_coordtype5.dat +0 -0
  554. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/imcce/tests/data/3552_coordtype6.dat +0 -0
  555. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/imcce/tests/data/skybot_query.vot +0 -0
  556. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/imcce/tests/test_miriade.py +0 -0
  557. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/imcce/tests/test_miriade_remote.py +0 -0
  558. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/imcce/tests/test_skybot.py +0 -0
  559. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/imcce/tests/test_skybot_remote.py +0 -0
  560. {astroquery-0.4.12.dev459/astroquery/ipac/irsa/irsa_dust/tests → astroquery-0.4.12.dev10525/astroquery/ipac}/__init__.py +0 -0
  561. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/irsa/__init__.py +0 -0
  562. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/irsa/core.py +0 -0
  563. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/irsa/ibe/__init__.py +0 -0
  564. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/irsa/ibe/core.py +0 -0
  565. {astroquery-0.4.12.dev459/astroquery/ipac/irsa → astroquery-0.4.12.dev10525/astroquery/ipac/irsa/ibe}/tests/__init__.py +0 -0
  566. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/irsa/ibe/tests/data/columns.txt +0 -0
  567. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/irsa/ibe/tests/data/datasets.html +0 -0
  568. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/irsa/ibe/tests/data/field_id.txt +0 -0
  569. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/irsa/ibe/tests/data/missions.html +0 -0
  570. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/irsa/ibe/tests/data/pos.txt +0 -0
  571. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/irsa/ibe/tests/data/tables.html +0 -0
  572. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/irsa/ibe/tests/test_ibe.py +0 -0
  573. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/irsa/ibe/tests/test_ibe_remote.py +0 -0
  574. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/irsa/irsa_dust/__init__.py +0 -0
  575. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/irsa/irsa_dust/core.py +0 -0
  576. {astroquery-0.4.12.dev459/astroquery/ipac/ned → astroquery-0.4.12.dev10525/astroquery/ipac/irsa/irsa_dust}/tests/__init__.py +0 -0
  577. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/irsa/irsa_dust/tests/data/dust-error.xml +0 -0
  578. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/irsa/irsa_dust/tests/data/dust_ext_detail.tbl +0 -0
  579. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/irsa/irsa_dust/tests/data/dustm31.xml +0 -0
  580. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/irsa/irsa_dust/tests/data/test.fits +0 -0
  581. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/irsa/irsa_dust/tests/test_irsa_dust.py +0 -0
  582. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/irsa/irsa_dust/tests/test_irsa_dust_remote.py +0 -0
  583. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/irsa/irsa_dust/utils.py +0 -0
  584. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/irsa/most.py +0 -0
  585. {astroquery-0.4.12.dev459/astroquery/ipac/nexsci → astroquery-0.4.12.dev10525/astroquery/ipac/irsa/tests}/__init__.py +0 -0
  586. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/irsa/tests/data/Box.xml +0 -0
  587. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/irsa/tests/data/Cone.xml +0 -0
  588. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/irsa/tests/data/MOST_application.html +0 -0
  589. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/irsa/tests/data/MOST_full_with_tarballs.html +0 -0
  590. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/irsa/tests/data/MOST_regular.html +0 -0
  591. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/irsa/tests/data/Polygon.xml +0 -0
  592. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/irsa/tests/data/most_full_metadata.tbl +0 -0
  593. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/irsa/tests/data/most_full_results.tbl +0 -0
  594. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/irsa/tests/data/most_gator.tbl +0 -0
  595. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/irsa/tests/data/most_imgframes_matched_final_table.tbl +0 -0
  596. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/irsa/tests/data/most_regular_metadata.tbl +0 -0
  597. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/irsa/tests/data/most_regular_results.tbl +0 -0
  598. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/irsa/tests/data/most_votable.xml +0 -0
  599. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/irsa/tests/test_irsa.py +0 -0
  600. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/irsa/tests/test_irsa_remote.py +0 -0
  601. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/irsa/tests/test_most.py +0 -0
  602. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/irsa/tests/test_most_remote.py +0 -0
  603. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/ned/__init__.py +0 -0
  604. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/ned/data/keywords_dict.json +0 -0
  605. {astroquery-0.4.12.dev459/astroquery/jplhorizons → astroquery-0.4.12.dev10525/astroquery/ipac/ned}/tests/__init__.py +0 -0
  606. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/ned/tests/data/error.xml +0 -0
  607. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/ned/tests/data/image_extract.html +0 -0
  608. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/ned/tests/data/query_diameters.xml +0 -0
  609. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/ned/tests/data/query_iau_format.xml +0 -0
  610. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/ned/tests/data/query_images.fits +0 -0
  611. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/ned/tests/data/query_near_name.xml +0 -0
  612. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/ned/tests/data/query_near_position.xml +0 -0
  613. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/ned/tests/data/query_notes.xml +0 -0
  614. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/ned/tests/data/query_object.xml +0 -0
  615. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/ned/tests/data/query_photometry.xml +0 -0
  616. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/ned/tests/data/query_positions.xml +0 -0
  617. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/ned/tests/data/query_redshifts.xml +0 -0
  618. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/ned/tests/data/query_refcode.xml +0 -0
  619. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/ned/tests/data/query_references.xml +0 -0
  620. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/ned/tests/test_ned.py +0 -0
  621. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/ned/tests/test_ned_remote.py +0 -0
  622. {astroquery-0.4.12.dev459/astroquery/jplsbdb/tests → astroquery-0.4.12.dev10525/astroquery/ipac/nexsci}/__init__.py +0 -0
  623. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/nexsci/nasa_exoplanet_archive/__init__.py +0 -0
  624. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/nexsci/nasa_exoplanet_archive/core.py +0 -0
  625. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/nexsci/nasa_exoplanet_archive/tests/__init__.py +0 -0
  626. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/nexsci/nasa_exoplanet_archive/tests/data/bpic_aliaslookup.json +0 -0
  627. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/nexsci/nasa_exoplanet_archive/tests/data/bpicb_aliaslookup.json +0 -0
  628. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/nexsci/nasa_exoplanet_archive/tests/data/cumulative_expect_0.txt +0 -0
  629. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/nexsci/nasa_exoplanet_archive/tests/data/k2candidates_expect_0.txt +0 -0
  630. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/nexsci/nasa_exoplanet_archive/tests/data/k2targets_expect_0.txt +0 -0
  631. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/nexsci/nasa_exoplanet_archive/tests/data/kelt_expect_0.txt +0 -0
  632. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/nexsci/nasa_exoplanet_archive/tests/data/kelttimeseries_expect_0.txt +0 -0
  633. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/nexsci/nasa_exoplanet_archive/tests/data/keplerstellar_expect_0.txt +0 -0
  634. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/nexsci/nasa_exoplanet_archive/tests/data/keplertimeseries_expect_0.txt +0 -0
  635. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/nexsci/nasa_exoplanet_archive/tests/data/koi_expect_0.txt +0 -0
  636. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/nexsci/nasa_exoplanet_archive/tests/data/mission_exocat_expect_0.txt +0 -0
  637. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/nexsci/nasa_exoplanet_archive/tests/data/missionstars_expect_0.txt +0 -0
  638. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/nexsci/nasa_exoplanet_archive/tests/data/q1_q12_koi_expect_0.txt +0 -0
  639. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/nexsci/nasa_exoplanet_archive/tests/data/q1_q12_stellar_expect_0.txt +0 -0
  640. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/nexsci/nasa_exoplanet_archive/tests/data/q1_q12_tce_expect_0.txt +0 -0
  641. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/nexsci/nasa_exoplanet_archive/tests/data/q1_q16_koi_expect_0.txt +0 -0
  642. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/nexsci/nasa_exoplanet_archive/tests/data/q1_q16_stellar_expect_0.txt +0 -0
  643. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/nexsci/nasa_exoplanet_archive/tests/data/q1_q16_tce_expect_0.txt +0 -0
  644. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/nexsci/nasa_exoplanet_archive/tests/data/q1_q17_dr24_koi_expect_0.txt +0 -0
  645. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/nexsci/nasa_exoplanet_archive/tests/data/q1_q17_dr24_stellar_expect_0.txt +0 -0
  646. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/nexsci/nasa_exoplanet_archive/tests/data/q1_q17_dr24_tce_expect_0.txt +0 -0
  647. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/nexsci/nasa_exoplanet_archive/tests/data/q1_q17_dr25_koi_expect_0.txt +0 -0
  648. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/nexsci/nasa_exoplanet_archive/tests/data/q1_q17_dr25_stellar_expect_0.txt +0 -0
  649. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/nexsci/nasa_exoplanet_archive/tests/data/q1_q17_dr25_sup_koi_expect_0.txt +0 -0
  650. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/nexsci/nasa_exoplanet_archive/tests/data/q1_q17_dr25_supp_stellar_expect_0.txt +0 -0
  651. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/nexsci/nasa_exoplanet_archive/tests/data/q1_q17_dr25_tce_expect_0.txt +0 -0
  652. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/nexsci/nasa_exoplanet_archive/tests/data/q1_q6_koi_expect_0.txt +0 -0
  653. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/nexsci/nasa_exoplanet_archive/tests/data/q1_q8_koi_expect_0.txt +0 -0
  654. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/nexsci/nasa_exoplanet_archive/tests/data/responses.json +0 -0
  655. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/nexsci/nasa_exoplanet_archive/tests/data/superwasptimeseries_expect_0.txt +0 -0
  656. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/nexsci/nasa_exoplanet_archive/tests/data/tce_expect_0.txt +0 -0
  657. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/nexsci/nasa_exoplanet_archive/tests/data/toi_expect_0.txt +0 -0
  658. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/nexsci/nasa_exoplanet_archive/tests/test_nasa_exoplanet_archive.py +0 -0
  659. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ipac/nexsci/nasa_exoplanet_archive/tests/test_nasa_exoplanet_archive_remote.py +0 -0
  660. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/irsa/__init__.py +0 -0
  661. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/irsa_dust/__init__.py +0 -0
  662. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/jplhorizons/__init__.py +0 -0
  663. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/jplhorizons/core.py +0 -0
  664. {astroquery-0.4.12.dev459/astroquery/lamda → astroquery-0.4.12.dev10525/astroquery/jplhorizons}/tests/__init__.py +0 -0
  665. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/jplhorizons/tests/data/README +0 -0
  666. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/jplhorizons/tests/data/ceres_elements_range.txt +0 -0
  667. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/jplhorizons/tests/data/ceres_elements_single.txt +0 -0
  668. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/jplhorizons/tests/data/ceres_ephemerides_range.txt +0 -0
  669. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/jplhorizons/tests/data/ceres_ephemerides_single.txt +0 -0
  670. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/jplhorizons/tests/data/ceres_vectors_range.txt +0 -0
  671. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/jplhorizons/tests/data/ceres_vectors_single.txt +0 -0
  672. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/jplhorizons/tests/data/no_H.txt +0 -0
  673. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/jplhorizons/tests/data/tlist_error.txt +0 -0
  674. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/jplhorizons/tests/test_jplhorizons.py +0 -0
  675. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/jplhorizons/tests/test_jplhorizons_remote.py +0 -0
  676. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/jplsbdb/__init__.py +0 -0
  677. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/jplsbdb/core.py +0 -0
  678. {astroquery-0.4.12.dev459/astroquery/linelists/cdms → astroquery-0.4.12.dev10525/astroquery/jplsbdb}/tests/__init__.py +0 -0
  679. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/jplsbdb/tests/data/67P.dat +0 -0
  680. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/jplsbdb/tests/data/apophis.dat +0 -0
  681. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/jplsbdb/tests/data/ceres.dat +0 -0
  682. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/jplsbdb/tests/data/ceres_missing_value.dat +0 -0
  683. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/jplsbdb/tests/data/phaethon.dat +0 -0
  684. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/jplsbdb/tests/test_jplsbdb.py +0 -0
  685. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/jplsbdb/tests/test_jplsbdb_remote.py +0 -0
  686. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/jplspec/__init__.py +0 -0
  687. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/lamda/__init__.py +0 -0
  688. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/lamda/core.py +0 -0
  689. {astroquery-0.4.12.dev459/astroquery/linelists/jplspec → astroquery-0.4.12.dev10525/astroquery/lamda}/tests/__init__.py +0 -0
  690. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/lamda/tests/data/co.txt +0 -0
  691. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/lamda/tests/test_lamda.py +0 -0
  692. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/lamda/tests/test_lamda_remote.py +0 -0
  693. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/lamda/utils.py +0 -0
  694. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/linelists/__init__.py +0 -0
  695. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/linelists/cdms/__init__.py +0 -0
  696. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/linelists/cdms/core.py +0 -0
  697. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/linelists/cdms/data/catdir.cat +0 -0
  698. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/linelists/cdms/data/partfunc.cat +0 -0
  699. {astroquery-0.4.12.dev459/astroquery/magpis → astroquery-0.4.12.dev10525/astroquery/linelists/cdms}/tests/__init__.py +0 -0
  700. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/linelists/cdms/tests/data/028503 CO, v=0.data +0 -0
  701. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/linelists/cdms/tests/data/099501 HC7N, v=0.data +0 -0
  702. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/linelists/cdms/tests/data/117501 HC7S.data +0 -0
  703. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/linelists/cdms/tests/data/c058501.cat +0 -0
  704. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/linelists/cdms/tests/data/post_response.html +0 -0
  705. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/linelists/cdms/tests/test_cdms.py +0 -0
  706. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/linelists/cdms/tests/test_cdms_remote.py +0 -0
  707. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/linelists/core.py +0 -0
  708. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/linelists/jplspec/__init__.py +0 -0
  709. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/linelists/jplspec/core.py +0 -0
  710. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/linelists/jplspec/data/catdir.cat +0 -0
  711. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/linelists/jplspec/lookup_table.py +0 -0
  712. {astroquery-0.4.12.dev459/astroquery/mast → astroquery-0.4.12.dev10525/astroquery/linelists/jplspec}/tests/__init__.py +0 -0
  713. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/linelists/jplspec/tests/data/CO.data +0 -0
  714. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/linelists/jplspec/tests/data/CO_6.data +0 -0
  715. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/linelists/jplspec/tests/data/H2O_sample.cat +0 -0
  716. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/linelists/jplspec/tests/data/multi.data +0 -0
  717. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/linelists/jplspec/tests/test_jplspec.py +0 -0
  718. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/linelists/jplspec/tests/test_jplspec_remote.py +0 -0
  719. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/linelists/tests/__init__.py +0 -0
  720. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/linelists/tests/test_core.py +0 -0
  721. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/logger.py +0 -0
  722. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/magpis/__init__.py +0 -0
  723. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/magpis/core.py +0 -0
  724. {astroquery-0.4.12.dev459/astroquery/mocserver → astroquery-0.4.12.dev10525/astroquery/magpis}/tests/__init__.py +0 -0
  725. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/magpis/tests/data/image.fits +0 -0
  726. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/magpis/tests/test_magpis.py +0 -0
  727. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/magpis/tests/test_magpis_remote.py +0 -0
  728. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/mast/auth.py +0 -0
  729. {astroquery-0.4.12.dev459/astroquery/mpc → astroquery-0.4.12.dev10525/astroquery/mast}/tests/__init__.py +0 -0
  730. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/mast/tests/data/advSearch.json +0 -0
  731. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/mast/tests/data/advSearchPos.json +0 -0
  732. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/mast/tests/data/astrocut_107.27_-70.0_5x5.zip +0 -0
  733. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/mast/tests/data/astrocut_189.49206_62.20615_100x100px.zip +0 -0
  734. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/mast/tests/data/astrocut_189.49206_62.20615_100x100px_f.zip +0 -0
  735. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/mast/tests/data/bundleResponse.json +0 -0
  736. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/mast/tests/data/caom.json +0 -0
  737. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/mast/tests/data/columnsconfig.json +0 -0
  738. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/mast/tests/data/countsResp.json +0 -0
  739. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/mast/tests/data/dd.json +0 -0
  740. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/mast/tests/data/ddcolumns.json +0 -0
  741. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/mast/tests/data/ddcolumns_filtered.json +0 -0
  742. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/mast/tests/data/hsc.json +0 -0
  743. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/mast/tests/data/mast_relative_path.json +0 -0
  744. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/mast/tests/data/matchid.json +0 -0
  745. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/mast/tests/data/mission_columns.json +0 -0
  746. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/mast/tests/data/mission_products.json +0 -0
  747. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/mast/tests/data/mission_results.json +0 -0
  748. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/mast/tests/data/missions.extjs +0 -0
  749. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/mast/tests/data/panstarrs.json +0 -0
  750. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/mast/tests/data/panstarrs_columns.json +0 -0
  751. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/mast/tests/data/products.json +0 -0
  752. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/mast/tests/data/resolver.json +0 -0
  753. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/mast/tests/data/spectra.json +0 -0
  754. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/mast/tests/data/tess_sector.json +0 -0
  755. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/mast/tests/data/tic.json +0 -0
  756. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/mast/tests/data/ticcolumns.json +0 -0
  757. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/mast/tests/data/ticcolumns_filtered.json +0 -0
  758. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/mast/tests/data/zcut_survey.json +0 -0
  759. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/mocserver/__init__.py +0 -0
  760. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/mocserver/core.py +0 -0
  761. {astroquery-0.4.12.dev459/astroquery/nasa_ads → astroquery-0.4.12.dev10525/astroquery/mocserver}/tests/__init__.py +0 -0
  762. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/mocserver/tests/data/hips_frames.vot +0 -0
  763. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/mocserver/tests/data/list_fields.json +0 -0
  764. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/mocserver/tests/data/moc.fits +0 -0
  765. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/mocserver/tests/test_deprecation.py +0 -0
  766. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/mocserver/tests/test_mocserver.py +0 -0
  767. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/mocserver/tests/test_mocserver_remote.py +0 -0
  768. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/mpc/__init__.py +0 -0
  769. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/mpc/core.py +0 -0
  770. {astroquery-0.4.12.dev459/astroquery/nist → astroquery-0.4.12.dev10525/astroquery/mpc}/tests/__init__.py +0 -0
  771. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/mpc/tests/data/2008JG_ephemeris_500-a-t.html +0 -0
  772. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/mpc/tests/data/2024AA_ephemeris_500-a-t.html +0 -0
  773. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/mpc/tests/data/2024AA_ephemeris_G37-a-t.html +0 -0
  774. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/mpc/tests/data/2P_ephemeris_500-G-t.html +0 -0
  775. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/mpc/tests/data/2P_ephemeris_500-a-c.html +0 -0
  776. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/mpc/tests/data/2P_ephemeris_500-a-s.html +0 -0
  777. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/mpc/tests/data/2P_ephemeris_500-a-t.html +0 -0
  778. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/mpc/tests/data/2P_ephemeris_500-s-t.html +0 -0
  779. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/mpc/tests/data/2P_ephemeris_G37-a-t.html +0 -0
  780. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/mpc/tests/data/340P_ephemeris_G37-a-t.html +0 -0
  781. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/mpc/tests/data/ObsCodes.html +0 -0
  782. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/mpc/tests/data/comet_object_C2012S1.json +0 -0
  783. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/mpc/tests/data/mpc_obs.dat +0 -0
  784. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/mpc/tests/data/testfail_ephemeris_500-a-t.html +0 -0
  785. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/mpc/tests/test_mpc.py +0 -0
  786. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/mpc/tests/test_mpc_remote.py +0 -0
  787. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/nasa_ads/__init__.py +0 -0
  788. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/nasa_ads/core.py +0 -0
  789. {astroquery-0.4.12.dev459/astroquery/noirlab → astroquery-0.4.12.dev10525/astroquery/nasa_ads}/tests/__init__.py +0 -0
  790. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/nasa_ads/tests/data/test_text.txt +0 -0
  791. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/nasa_ads/tests/test_nasaads.py +0 -0
  792. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/nasa_ads/utils.py +0 -0
  793. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/nasa_exoplanet_archive/__init__.py +0 -0
  794. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ned/__init__.py +0 -0
  795. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/nist/__init__.py +0 -0
  796. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/nist/core.py +0 -0
  797. {astroquery-0.4.12.dev459/astroquery/nvas → astroquery-0.4.12.dev10525/astroquery/nist}/tests/__init__.py +0 -0
  798. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/nist/tests/data/nist_out.html +0 -0
  799. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/nist/tests/test_nist.py +0 -0
  800. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/nist/tests/test_nist_remote.py +0 -0
  801. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/nvas/__init__.py +0 -0
  802. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/nvas/core.py +0 -0
  803. {astroquery-0.4.12.dev459/astroquery/oac → astroquery-0.4.12.dev10525/astroquery/nvas}/tests/__init__.py +0 -0
  804. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/nvas/tests/data/image.imfits +0 -0
  805. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/nvas/tests/data/image_results.html +0 -0
  806. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/nvas/tests/test_nvas.py +0 -0
  807. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/nvas/tests/test_nvas_remote.py +0 -0
  808. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/oac/__init__.py +0 -0
  809. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/oac/core.py +0 -0
  810. {astroquery-0.4.12.dev459/astroquery/ogle → astroquery-0.4.12.dev10525/astroquery/oac}/tests/__init__.py +0 -0
  811. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/oac/tests/data/photometry_csv.txt +0 -0
  812. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/oac/tests/data/photometry_json.txt +0 -0
  813. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/oac/tests/data/single_spectrum_csv.txt +0 -0
  814. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/oac/tests/data/spectra_json.txt +0 -0
  815. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/oac/tests/test_oac.py +0 -0
  816. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/oac/tests/test_oac_remote.py +0 -0
  817. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ogle/__init__.py +0 -0
  818. {astroquery-0.4.12.dev459/astroquery/open_exoplanet_catalogue → astroquery-0.4.12.dev10525/astroquery/ogle}/tests/__init__.py +0 -0
  819. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ogle/tests/data/gal_0_3.txt +0 -0
  820. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/open_exoplanet_catalogue/__init__.py +0 -0
  821. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/open_exoplanet_catalogue/oec_query.py +0 -0
  822. {astroquery-0.4.12.dev459/astroquery/sdss → astroquery-0.4.12.dev10525/astroquery/open_exoplanet_catalogue}/tests/__init__.py +0 -0
  823. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/open_exoplanet_catalogue/tests/data/systems.xml.gz +0 -0
  824. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/open_exoplanet_catalogue/tests/test_open_exoplanet_catalogue_local.py +0 -0
  825. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/open_exoplanet_catalogue/tests/test_open_exoplanet_catalogue_remote.py +0 -0
  826. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/open_exoplanet_catalogue/utils.py +0 -0
  827. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/sdss/__init__.py +0 -0
  828. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/sdss/core.py +0 -0
  829. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/sdss/data/PhotoObjAll_dr12.json +0 -0
  830. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/sdss/data/SpecObjAll_dr12.json +0 -0
  831. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/sdss/field_names.py +0 -0
  832. {astroquery-0.4.12.dev459/astroquery/simbad → astroquery-0.4.12.dev10525/astroquery/sdss}/tests/__init__.py +0 -0
  833. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/sdss/tests/data/emptyfile.fits +0 -0
  834. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/sdss/tests/data/xid_im.txt +0 -0
  835. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/sdss/tests/data/xid_sp.txt +0 -0
  836. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/sdss/tests/test_sdss.py +0 -0
  837. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/sdss/tests/test_sdss_remote.py +0 -0
  838. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/simbad/__init__.py +0 -0
  839. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/simbad/criteria_lextab.py +0 -0
  840. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/simbad/criteria_parsetab.py +0 -0
  841. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/simbad/data/query_criteria_fields.json +0 -0
  842. {astroquery-0.4.12.dev459/astroquery/skyview → astroquery-0.4.12.dev10525/astroquery/simbad}/tests/__init__.py +0 -0
  843. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/simbad/tests/data/simbad_basic_columns.xml +0 -0
  844. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/simbad/tests/data/simbad_linked_to_basic.xml +0 -0
  845. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/simbad/tests/data/simbad_output_options.xml +0 -0
  846. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/simbad/tests/test_simbad.py +0 -0
  847. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/simbad/utils.py +0 -0
  848. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/skyview/__init__.py +0 -0
  849. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/skyview/core.py +0 -0
  850. {astroquery-0.4.12.dev459/astroquery/solarsystem/neodys → astroquery-0.4.12.dev10525/astroquery/skyview}/tests/__init__.py +0 -0
  851. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/skyview/tests/data/query_page.html +0 -0
  852. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/skyview/tests/data/results.html +0 -0
  853. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/skyview/tests/data/survey_dict.json +0 -0
  854. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/skyview/tests/test_skyview.py +0 -0
  855. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/skyview/tests/test_skyview_remote.py +0 -0
  856. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/solarsystem/__init__.py +0 -0
  857. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/solarsystem/imcce/__init__.py +0 -0
  858. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/solarsystem/imcce/miriade/__init__.py +0 -0
  859. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/solarsystem/imcce/skybot/__init__.py +0 -0
  860. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/solarsystem/jpl/__init__.py +0 -0
  861. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/solarsystem/jpl/horizons/__init__.py +0 -0
  862. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/solarsystem/jpl/sbdb/__init__.py +0 -0
  863. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/solarsystem/mpc/__init__.py +0 -0
  864. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/solarsystem/neodys/__init__.py +0 -0
  865. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/solarsystem/neodys/core.py +0 -0
  866. {astroquery-0.4.12.dev459/astroquery/solarsystem/pds → astroquery-0.4.12.dev10525/astroquery/solarsystem/neodys}/tests/__init__.py +0 -0
  867. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/solarsystem/neodys/tests/data/2018vp1_eq0.txt +0 -0
  868. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/solarsystem/neodys/tests/test_neodys.py +0 -0
  869. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/solarsystem/neodys/tests/test_neodys_remote.py +0 -0
  870. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/solarsystem/pds/__init__.py +0 -0
  871. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/solarsystem/pds/core.py +0 -0
  872. {astroquery-0.4.12.dev459/astroquery/splatalogue → astroquery-0.4.12.dev10525/astroquery/solarsystem/pds}/tests/__init__.py +0 -0
  873. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/solarsystem/pds/tests/data/neptune_ephemeris.html +0 -0
  874. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/solarsystem/pds/tests/data/pluto_ephemeris.html +0 -0
  875. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/solarsystem/pds/tests/data/saturn_ephemeris.html +0 -0
  876. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/solarsystem/pds/tests/data/uranus_ephemeris.html +0 -0
  877. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/solarsystem/pds/tests/test_pds.py +0 -0
  878. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/solarsystem/pds/tests/test_pds_remote.py +0 -0
  879. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/splatalogue/__init__.py +0 -0
  880. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/splatalogue/build_species_table.py +0 -0
  881. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/splatalogue/core.py +0 -0
  882. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/splatalogue/data/splat-species.json +0 -0
  883. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/splatalogue/load_species_table.py +0 -0
  884. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/splatalogue/templates.py +0 -0
  885. {astroquery-0.4.12.dev459/astroquery/svo_fps → astroquery-0.4.12.dev10525/astroquery/splatalogue}/tests/__init__.py +0 -0
  886. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/splatalogue/tests/conftest.py +0 -0
  887. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/splatalogue/tests/data/CO.json +0 -0
  888. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/splatalogue/tests/test_splatalogue.py +0 -0
  889. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/splatalogue/tests/test_utils.py +0 -0
  890. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/splatalogue/utils.py +0 -0
  891. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/svo_fps/__init__.py +0 -0
  892. {astroquery-0.4.12.dev459/astroquery/template_module → astroquery-0.4.12.dev10525/astroquery/svo_fps}/tests/__init__.py +0 -0
  893. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/svo_fps/tests/data/svo_fps_Facility=Keck_Instrument=NIRC2.xml +0 -0
  894. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/svo_fps/tests/data/svo_fps_ID=2MASS.2MASS.H.xml +0 -0
  895. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/svo_fps/tests/data/svo_fps_WavelengthEff_min=12000_WavelengthEff_max=12100.xml +0 -0
  896. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/svo_fps/tests/test_svo_fps.py +0 -0
  897. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/template_module/__init__.py +0 -0
  898. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/template_module/core.py +0 -0
  899. {astroquery-0.4.12.dev459/astroquery → astroquery-0.4.12.dev10525/astroquery/template_module}/tests/__init__.py +0 -0
  900. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/template_module/tests/data/dummy.dat +0 -0
  901. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/template_module/tests/test_module.py +0 -0
  902. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/template_module/tests/test_module_remote.py +0 -0
  903. {astroquery-0.4.12.dev459/astroquery/ukidss → astroquery-0.4.12.dev10525/astroquery}/tests/__init__.py +0 -0
  904. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/tests/test_cache.py +0 -0
  905. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/tests/test_internet.py +0 -0
  906. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/tests/test_resume.py +0 -0
  907. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ukidss/__init__.py +0 -0
  908. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ukidss/core.py +0 -0
  909. {astroquery-0.4.12.dev459/astroquery/utils → astroquery-0.4.12.dev10525/astroquery/ukidss}/tests/__init__.py +0 -0
  910. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ukidss/tests/data/error.html +0 -0
  911. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ukidss/tests/data/image.fits +0 -0
  912. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ukidss/tests/data/image_results.html +0 -0
  913. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ukidss/tests/data/vo_results.html +0 -0
  914. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ukidss/tests/data/votable.xml +0 -0
  915. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ukidss/tests/test_ukidss.py +0 -0
  916. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/ukidss/tests/test_ukidss_remote.py +0 -0
  917. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/__init__.py +0 -0
  918. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/class_or_instance.py +0 -0
  919. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/cleanup_downloads.py +0 -0
  920. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/commons.py +0 -0
  921. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/docstr_chompers.py +0 -0
  922. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/mocks.py +0 -0
  923. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/process_asyncs.py +0 -0
  924. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/progressbar.py +0 -0
  925. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/schema.py +0 -0
  926. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/system_tools.py +0 -0
  927. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/tap/__init__.py +0 -0
  928. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/tap/conn/__init__.py +0 -0
  929. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/tap/conn/tapconn.py +0 -0
  930. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/tap/conn/tests/DummyConn.py +0 -0
  931. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/tap/conn/tests/DummyConnHandler.py +0 -0
  932. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/tap/conn/tests/__init__.py +0 -0
  933. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/tap/conn/tests/test_conn.py +0 -0
  934. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/tap/gui/__init__.py +0 -0
  935. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/tap/gui/login.py +0 -0
  936. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/tap/model/__init__.py +0 -0
  937. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/tap/model/filter.py +0 -0
  938. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/tap/model/group.py +0 -0
  939. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/tap/model/modelutils.py +0 -0
  940. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/tap/model/shared_item.py +0 -0
  941. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/tap/model/shared_to_item.py +0 -0
  942. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/tap/model/tapcolumn.py +0 -0
  943. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/tap/model/taptable.py +0 -0
  944. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/tap/model/tests/__init__.py +0 -0
  945. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/tap/model/user.py +0 -0
  946. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/tap/taputils.py +0 -0
  947. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/tap/tests/__init__.py +0 -0
  948. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/tap/tests/data/job_1.vot +0 -0
  949. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/tap/tests/data/jobs_list.xml +0 -0
  950. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/tap/tests/data/test_table1.xml +0 -0
  951. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/tap/tests/data/test_table_rename.xml +0 -0
  952. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/tap/tests/data/test_table_update.xml +0 -0
  953. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/tap/tests/data/test_tables.xml +0 -0
  954. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/tap/tests/data/test_upload_file/1744351221317O-result.csv +0 -0
  955. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/tap/tests/data/test_upload_file/1744351221317O-result.ecsv +0 -0
  956. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/tap/tests/data/test_upload_file/1744351221317O-result.fits +0 -0
  957. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/tap/tests/data/test_upload_file/1744351221317O-result.json +0 -0
  958. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/tap/tests/data/test_upload_file/1744351221317O-result.vot +0 -0
  959. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/tap/tests/data/test_upload_file/1744351221317O-result_plain.vot +0 -0
  960. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/tap/xmlparser/__init__.py +0 -0
  961. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/tap/xmlparser/groupSaxParser.py +0 -0
  962. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/tap/xmlparser/jobListSaxParser.py +0 -0
  963. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/tap/xmlparser/jobSaxParser.py +0 -0
  964. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/tap/xmlparser/sharedItemsSaxParser.py +0 -0
  965. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/tap/xmlparser/tableSaxParser.py +0 -0
  966. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/tap/xmlparser/tests/__init__.py +0 -0
  967. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/tap/xmlparser/tests/data/1714556098855O-result.csv +0 -0
  968. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/tap/xmlparser/tests/data/1714556098855O-result.ecsv +0 -0
  969. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/tap/xmlparser/tests/data/1714556098855O-result.vot +0 -0
  970. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/tap/xmlparser/tests/data/test.json +0 -0
  971. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/tap/xmlparser/tests/data/test_job_results.xml +0 -0
  972. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/tap/xmlparser/tests/data/test_jobs_async.xml +0 -0
  973. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/tap/xmlparser/tests/data/test_jobs_list.xml +0 -0
  974. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/tap/xmlparser/tests/data/test_tables.xml +0 -0
  975. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/tap/xmlparser/tests/data/test_tables_gaia.xml +0 -0
  976. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/tap/xmlparser/tests/test_xmlparser.py +0 -0
  977. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/tap/xmlparser/utils.py +0 -0
  978. {astroquery-0.4.12.dev459/astroquery/vamdc → astroquery-0.4.12.dev10525/astroquery/utils}/tests/__init__.py +0 -0
  979. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/tests/test_cache_remote.py +0 -0
  980. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/tests/test_timer.py +0 -0
  981. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/tests/test_url_helpers.py +0 -0
  982. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/tests/test_utils.py +0 -0
  983. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/timer.py +0 -0
  984. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/utils/url_helpers.py +0 -0
  985. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/vamdc/__init__.py +0 -0
  986. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/vamdc/core.py +0 -0
  987. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/vamdc/load_species_table.py +0 -0
  988. {astroquery-0.4.12.dev459/astroquery/vizier → astroquery-0.4.12.dev10525/astroquery/vamdc}/tests/__init__.py +0 -0
  989. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/vamdc/tests/test_vamdc_remote.py +0 -0
  990. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/vizier/__init__.py +0 -0
  991. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/vizier/data/inverse_dict.json +0 -0
  992. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/vizier/data/keywords_dict.json +0 -0
  993. {astroquery-0.4.12.dev459/astroquery/vo_conesearch → astroquery-0.4.12.dev10525/astroquery/vizier}/tests/__init__.py +0 -0
  994. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/vizier/tests/conftest.py +0 -0
  995. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/vizier/tests/data/afgl2591_iram.xml +0 -0
  996. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/vizier/tests/data/find_kangapj70683.xml +0 -0
  997. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/vizier/tests/data/kang2010.xml +0 -0
  998. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/vizier/tests/data/viz.xml +0 -0
  999. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/vizier/tests/test_vizier.py +0 -0
  1000. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/vizier/tests/test_vizier_remote.py +0 -0
  1001. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/vo_conesearch/conesearch.py +0 -0
  1002. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/vo_conesearch/core.py +0 -0
  1003. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/vo_conesearch/exceptions.py +0 -0
  1004. {astroquery-0.4.12.dev459/astroquery/vo_conesearch/validator → astroquery-0.4.12.dev10525/astroquery/vo_conesearch}/tests/__init__.py +0 -0
  1005. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/vo_conesearch/tests/data/basic.json +0 -0
  1006. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/vo_conesearch/tests/data/conesearch_error1.xml +0 -0
  1007. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/vo_conesearch/tests/data/conesearch_error2.xml +0 -0
  1008. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/vo_conesearch/tests/data/conesearch_error3.xml +0 -0
  1009. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/vo_conesearch/tests/data/conesearch_error4.xml +0 -0
  1010. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/vo_conesearch/tests/test_conesearch.py +0 -0
  1011. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/vo_conesearch/tests/test_vos_catalog.py +0 -0
  1012. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/vo_conesearch/validator/__init__.py +0 -0
  1013. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/vo_conesearch/validator/data/conesearch_urls.txt +0 -0
  1014. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/vo_conesearch/validator/exceptions.py +0 -0
  1015. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/vo_conesearch/validator/inspect.py +0 -0
  1016. {astroquery-0.4.12.dev459/astroquery/vsa → astroquery-0.4.12.dev10525/astroquery/vo_conesearch/validator}/tests/__init__.py +0 -0
  1017. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/vo_conesearch/validator/tests/data/conesearch_error.json +0 -0
  1018. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/vo_conesearch/validator/tests/data/conesearch_exception.json +0 -0
  1019. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/vo_conesearch/validator/tests/data/conesearch_good.json +0 -0
  1020. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/vo_conesearch/validator/tests/data/conesearch_warn.json +0 -0
  1021. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/vo_conesearch/validator/tests/data/listcats1.out +0 -0
  1022. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/vo_conesearch/validator/tests/data/listcats2.out +0 -0
  1023. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/vo_conesearch/validator/tests/data/printcat.out +0 -0
  1024. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/vo_conesearch/validator/tests/data/tally.out +0 -0
  1025. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/vo_conesearch/validator/tests/data/vao_conesearch_sites_121107_subset.xml +0 -0
  1026. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/vo_conesearch/validator/tests/test_inpect.py +0 -0
  1027. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/vo_conesearch/validator/tests/test_validate.py +0 -0
  1028. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/vo_conesearch/validator/tstquery.py +0 -0
  1029. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/vo_conesearch/validator/validate.py +0 -0
  1030. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/vo_conesearch/vo_async.py +0 -0
  1031. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/vo_conesearch/vos_catalog.py +0 -0
  1032. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/vsa/__init__.py +0 -0
  1033. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/vsa/core.py +0 -0
  1034. {astroquery-0.4.12.dev459/astroquery/xmatch → astroquery-0.4.12.dev10525/astroquery/vsa}/tests/__init__.py +0 -0
  1035. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/vsa/tests/test_vista_remote.py +0 -0
  1036. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/wfau/__init__.py +0 -0
  1037. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/wfau/core.py +0 -0
  1038. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/xmatch/__init__.py +0 -0
  1039. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/xmatch/core.py +0 -0
  1040. /astroquery-0.4.12.dev459/.gitmodules → /astroquery-0.4.12.dev10525/astroquery/xmatch/tests/__init__.py +0 -0
  1041. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/xmatch/tests/data/posList.csv +0 -0
  1042. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/xmatch/tests/data/posList_duplicates.csv +0 -0
  1043. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/xmatch/tests/data/query_res.csv +0 -0
  1044. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/xmatch/tests/data/tables.csv +0 -0
  1045. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/xmatch/tests/test_xmatch.py +0 -0
  1046. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/astroquery/xmatch/tests/test_xmatch_remote.py +0 -0
  1047. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/Makefile +0 -0
  1048. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/_static/timer_prediction_pow10.png +0 -0
  1049. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/_templates/autosummary/base.rst +0 -0
  1050. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/_templates/autosummary/class.rst +0 -0
  1051. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/_templates/autosummary/module.rst +0 -0
  1052. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/alfalfa/alfalfa.rst +0 -0
  1053. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/alma/alma.rst +0 -0
  1054. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/alma/footprint.png +0 -0
  1055. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/api.rst +0 -0
  1056. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/astrometry_net/astrometry_net.rst +0 -0
  1057. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/atomic/atomic.rst +0 -0
  1058. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/besancon/besancon.rst +0 -0
  1059. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/casda/casda.rst +0 -0
  1060. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/changelog.rst +0 -0
  1061. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/configuration.rst +0 -0
  1062. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/conftest.py +0 -0
  1063. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/cosmosim/cosmosim.rst +0 -0
  1064. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/esa/euclid/table_values.csv +0 -0
  1065. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/esa/hsa/hsa.rst +0 -0
  1066. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/esa/hubble/hubble.rst +0 -0
  1067. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/esa/iso/images/camdynamicDisplay.png +0 -0
  1068. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/esa/iso/images/campostcard.png +0 -0
  1069. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/esa/iso/images/spectradynamicDisplay.png +0 -0
  1070. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/esa/iso/iso.rst +0 -0
  1071. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/esasky/esasky.rst +0 -0
  1072. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/eso/eso.rst +0 -0
  1073. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/exoplanet_orbit_database/exoplanet_orbit_database.rst +0 -0
  1074. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/fermi/fermi.rst +0 -0
  1075. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/gama/gama.rst +0 -0
  1076. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/gemini/gemini.rst +0 -0
  1077. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/hips2fits/hips2fits.rst +0 -0
  1078. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/hips2fits/query_no_wcs.png +0 -0
  1079. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/hips2fits/query_wcs.png +0 -0
  1080. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/hitran/hitran.rst +0 -0
  1081. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/image_cutouts/first/first.rst +0 -0
  1082. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/image_cutouts/image_cutouts.rst +0 -0
  1083. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/imcce/imcce.rst +0 -0
  1084. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/ipac/irsa/ibe/ibe.rst +0 -0
  1085. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/ipac/irsa/irsa_dust/irsa_dust.rst +0 -0
  1086. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/ipac/irsa/most.rst +0 -0
  1087. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/ipac/ned/ned.rst +0 -0
  1088. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/ipac/nexsci/nasa_exoplanet_archive.rst +0 -0
  1089. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/jplhorizons/jplhorizons.rst +0 -0
  1090. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/jplsbdb/jplsbdb.rst +0 -0
  1091. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/lamda/lamda.rst +0 -0
  1092. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/license.rst +0 -0
  1093. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/linelists/cdms/cdms.rst +0 -0
  1094. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/linelists/jplspec/images/docplot_curvefit.png +0 -0
  1095. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/linelists/jplspec/images/docplot_jplspec.png +0 -0
  1096. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/linelists/jplspec/jplspec.rst +0 -0
  1097. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/magpis/magpis.rst +0 -0
  1098. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/make.bat +0 -0
  1099. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/mast/mast.rst +0 -0
  1100. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/mast/mast_mastquery.rst +0 -0
  1101. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/mocserver/HST_union.png +0 -0
  1102. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/mocserver/mocserver.rst +0 -0
  1103. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/mpc/mpc.rst +0 -0
  1104. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/nasa_ads/nasa_ads.rst +0 -0
  1105. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/nist/nist.rst +0 -0
  1106. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/nvas/nvas.rst +0 -0
  1107. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/oac/oac.rst +0 -0
  1108. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/open_exoplanet_catalogue/open_exoplanet_catalogue.rst +0 -0
  1109. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/query.rst +0 -0
  1110. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/release_notice_v0.2.rst +0 -0
  1111. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/sdss/sdss.rst +0 -0
  1112. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/simbad/query_tap.rst +0 -0
  1113. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/simbad/simbad-er.gv +0 -0
  1114. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/simbad/simbad_evolution.rst +0 -0
  1115. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/skyview/skyview.rst +0 -0
  1116. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/solarsystem/imcce/imcce.rst +0 -0
  1117. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/solarsystem/jpl/jpl.rst +0 -0
  1118. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/solarsystem/mpc/mpc.rst +0 -0
  1119. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/solarsystem/neodys/neodys.rst +0 -0
  1120. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/solarsystem/pds/pds.rst +0 -0
  1121. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/solarsystem/solarsystem.rst +0 -0
  1122. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/splatalogue/splatalogue.rst +0 -0
  1123. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/svo_fps/images/filter_curve.png +0 -0
  1124. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/template.rst +0 -0
  1125. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/ukidss/ukidss.rst +0 -0
  1126. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/utils/tap.rst +0 -0
  1127. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/utils.rst +0 -0
  1128. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/vamdc/vamdc.rst +0 -0
  1129. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/vo_conesearch/client.rst +0 -0
  1130. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/vo_conesearch/images/astroquery_vo_flowchart.png +0 -0
  1131. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/vo_conesearch/images/client_predict_search_n.png +0 -0
  1132. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/vo_conesearch/images/client_predict_search_t.png +0 -0
  1133. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/vo_conesearch/images/validator_html_1.png +0 -0
  1134. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/vo_conesearch/images/validator_html_2.png +0 -0
  1135. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/vo_conesearch/images/validator_html_3.png +0 -0
  1136. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/vo_conesearch/images/validator_html_4.png +0 -0
  1137. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/vo_conesearch/validator.rst +0 -0
  1138. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/vsa/vsa.rst +0 -0
  1139. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/wfau/wfau.rst +0 -0
  1140. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/docs/xmatch/xmatch.rst +0 -0
  1141. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/licenses/README.rst +0 -0
  1142. {astroquery-0.4.12.dev459 → astroquery-0.4.12.dev10525}/licenses/SCHEMA.rst +0 -0
@@ -0,0 +1,2442 @@
1
+ 0.4.12 (unreleased)
2
+ ===================
3
+
4
+ New Tools and Services
5
+ ----------------------
6
+
7
+
8
+
9
+ API changes
10
+ -----------
11
+
12
+ esa.euclid
13
+ ^^^^^^^^^^
14
+
15
+ - Method ``get_datalinks`` has a new argument, ``extra_options``, to customize the results to be got
16
+ from the server. Specifically, passing ``'METADATA'`` to this argument will retrieve the extra fields
17
+ ``datalabs_path``, ``file_name`` and ``hdu_index``. [#3438]
18
+
19
+ vizier
20
+ ^^^^^^
21
+ - Methods ``get_catalog``, ``get_catalog_async`` and ``query_*`` now always return UCD1+ instead of UCD1. [#3458]
22
+
23
+
24
+ Service fixes and enhancements
25
+ ------------------------------
26
+
27
+ heasarc
28
+ ^^^^^^^
29
+ - Add ``query_constraints`` to allow querying of different catalog columns. [#3403]
30
+ - Add support for uploading tables when using TAP directly through ``query_tap``. [#3403]
31
+ - Add automatic guessing for the data host in ``download_data``. [#3403]
32
+
33
+ gaia
34
+ ^^^^
35
+
36
+ - New datalink DR4 retrieval type RESIDUAL_IMAGE. [#3489]
37
+
38
+ esa.hubble
39
+ ^^^^^^^^^^
40
+
41
+ - Update ``get_datalabs_path`` method so an alternative path is checked if the
42
+ file is not in Datalabs yet [#3437]
43
+
44
+ mast
45
+ ^^^^
46
+
47
+ - Raise an error if non-string values are passed to ``utils.resolve_object``. [#3435]
48
+
49
+ - Filtering by file extension or by a string column is now case-insensitive in ``MastMissions.filter_products``
50
+ and ``Observations.filter_products``. [#3427]
51
+
52
+ - Switch to use HTTP continuation for partial downloads. [#3448]
53
+
54
+ - Expand the supported data types for filter values in ``Mast.mast_query``. Previously, users had to input
55
+ filter values enclosed in lists, even when specifying a single value or dictionary. [#3422]
56
+
57
+ - Raise informative error if ``MastMissions`` query radius is too large. [#3447]
58
+
59
+ - Add ``batch_size`` parameter to ``MastMissions.get_product_list``, ``Observations.get_product_list``,
60
+ and ``utils.resolve_object`` to allow controlling the number of items sent in each batch request to the server.
61
+ This can help avoid timeouts or connection errors for large requests. [#3454]
62
+
63
+ - Separate requests for moving target cutouts in ``Tesscut`` to one per sector. [#3467]
64
+
65
+ - Improved robustness of PanSTARRS column metadata parsing. This prevents metadata-related query errors. [#3485]
66
+
67
+ jplspec
68
+ ^^^^^^^
69
+
70
+ - Refactored to use linelists.core. Added new ``get_molecule`` method [#3456]
71
+ - Moved to linelists/. astroquery.jplspec is now deprecated in favor of astroquery.linelists.jplspec [#3455]
72
+
73
+
74
+ linelists.jplspec
75
+ ^^^^^^^^^^^^^^^^^
76
+
77
+ - New location for jplspec. astroquery.jplspec is now deprecated in favor of astroquery.linelists.jplspec [#3455]
78
+
79
+ mpc
80
+ ^^^
81
+
82
+ - Fix bug in queries for interstellar objects with ``MPC.get_observations`` and enable queries for "dead" comets [#3474]
83
+
84
+ linelists
85
+ ^^^^^^^^^
86
+
87
+ - General tools for both CDMS/JPL moved to linelists.core [#3456]
88
+ - Added jplspec, moved from its previous location (astroquery.jplspec to astroquery.linelists.jplspec) [#3455]
89
+
90
+ xmatch
91
+ ^^^^^^
92
+
93
+ - change url of xmatch to use the new CDS domain name [#3465]
94
+
95
+
96
+ Infrastructure, Utility and Other Changes and Additions
97
+ -------------------------------------------------------
98
+
99
+ utils.tap
100
+ ^^^^^^^^^
101
+
102
+ - ``TapPlus.delete_user_table`` includes the schema name to be compatible with TAP+ version >= 10.x. [#3439]
103
+
104
+
105
+
106
+ 0.4.11 (2025-09-19)
107
+ ===================
108
+
109
+ API changes
110
+ -----------
111
+
112
+ esa.hubble
113
+ ^^^^^^^^^^
114
+
115
+ - Removal of the deprecated ``query_hst_tap`` method, use ``query_tap`` instead.
116
+ [#3367]
117
+
118
+ eso
119
+ ^^^
120
+
121
+ - Deprecated ``open_form`` and ``cache`` in query functions [#3339]
122
+
123
+ gaia
124
+ ^^^^
125
+
126
+ - Deprecated ``band`` from ``load_data`` as it has no effect on upstream
127
+ response any more. [#3278]
128
+
129
+ mast
130
+ ^^^^
131
+
132
+ - Deprecated the ``product`` parameter in the ``Tesscut.get_sectors``,
133
+ ``Tesscut.get_cutouts``, and ``Tesscut.download_cutouts`` methods.
134
+ Support for TESS Image Calibration (TICA) high-level science products has
135
+ been removed; only Science Processing Operations Center (SPOC) products
136
+ are supported. [#3391]
137
+
138
+
139
+ Service fixes and enhancements
140
+ ------------------------------
141
+
142
+ alma
143
+ ^^^^
144
+
145
+ - Bug fix in ``footprint_to_reg`` that did not allow regions to be plotted.
146
+ [#3285]
147
+
148
+ esa.euclid
149
+ ^^^^^^^^^^
150
+
151
+ - New method, ``get_scientific_product_list``, to retrieve scientific LE3
152
+ products. [#3313]
153
+
154
+ - New cross-match method [#3386]
155
+
156
+ esa.hubble
157
+ ^^^^^^^^^^
158
+
159
+ - Internal refactor of the module to use to PyVO. [#3367]
160
+
161
+ eso
162
+ ^^^
163
+
164
+ - Switch querying interface from WDB to TAP in querying functions. [#3339]
165
+ - Allow plain ADQL queries via ``query_tap`` (with authentication as well). [#3339]
166
+ - Cone search using ``cone_ra`, ``cone_dec`, ``cone_radius`` arguments. [#3339]
167
+ - Retrieve record count before querying the archive, via ``count_only`` argument. [#3339]
168
+ - Ask query functions to print the underlying ADQL queries without issuing them. [#3339]
169
+
170
+ gaia
171
+ ^^^^
172
+
173
+ - New method cross_match_basic that simplifies the positional x-match method.
174
+ [#3320]
175
+
176
+ - New datalink retrieve types EPOCH_PHOTOMETRY_CROWDED_FIELD,
177
+ EPOCH_ASTROMETRY_BRIGHT, XP_MEAN_SPECTRUM_GRAVLENS, EPOCH_FLAGS_NSS,
178
+ EPOCH_PARAMETERS_RVS_SINGLE, EPOCH_PARAMETERS_RVS_DOUBLE,
179
+ EPOCH_FLAGS_VARI, and MEAN_SPECTRUM_RVS. [#3371, #3342]
180
+
181
+ - Rename datalink retrieval types EPOCH_SPECTRUM_RVS, EPOCH_SPECTRUM_XP_SSO,
182
+ EPOCH_SPECTRUM_XP_CROWDING, MEAN_SPECTRUM_XP, EPOCH_SPECTRUM_XP and
183
+ MEAN_SPECTRUM_XP_GRAVLENS. [#3382]
184
+
185
+ heasarc
186
+ ^^^^^^^
187
+
188
+ - Add support for astropy.table.Row in ``download_data`` and ``locate_data``.
189
+ [#3270]
190
+
191
+ - ``locate_data`` returns empty rows with an error in the error_message column
192
+ if there are no data associated with that row rather than filtering it
193
+ out. [#3275]
194
+
195
+ - ``locate_data`` changed to use POST request instead of GET to accomodate
196
+ large requests. [#3356]
197
+
198
+ - Preserve size of mask when all values are False in ``locate_data``. [#3411]
199
+
200
+ image_cutouts.first
201
+ ^^^^^^^^^^^^^^^^^^^
202
+
203
+ - Changed FIRST URL. [#3413]
204
+
205
+ imcce
206
+ ^^^^^
207
+
208
+ - Fix parsing SkyBot results that include objects with special characters in
209
+ their names. [#3307]
210
+
211
+ - Changing RuntimeError to NoResultsWarning when an empty result is
212
+ returned. [#3307]
213
+
214
+ - Changed SkyBot URLs. [#3306]
215
+
216
+ ipac.irsa
217
+ ^^^^^^^^^
218
+
219
+ - Fix ``list_catalogs`` to not include image metadata tables, only
220
+ catalogs. The ``include_metadata_tables`` keyword argument allows opting
221
+ in to return all TAP tables, including non-spatial and metadata ones,
222
+ too. [#3334]
223
+
224
+ - The "filter" kwarg of ``list_catalogs`` is now looking for string matches
225
+ either in catalog names and short descriptions. [#3415]
226
+
227
+ linelists.cdms
228
+ ^^^^^^^^^^^^^^
229
+
230
+ - Add a keyword to control writing of new species cache files.
231
+ This is needed to prevent tests from overwriting those files. [#3297]
232
+ - Add more complete support for CDMS quantum number and other value parsing. [#3302]
233
+
234
+ mast
235
+ ^^^^
236
+
237
+ - Add ``resolver`` parameter to query methods to specify the resolver to
238
+ use when resolving object names to coordinates. [#3292]
239
+
240
+ - Add ``resolve_all`` parameter to ``resolve_object`` to resolve
241
+ object names and return coordinates for all available resolvers. [#3292]
242
+
243
+ - Fix bug in ``utils.remove_duplicate_products`` that does not retain the
244
+ order of the products in an input table. [#3314]
245
+
246
+ - Add ``return_uri_map`` parameter to ``Observations.get_cloud_uris`` to return
247
+ a mapping of the input data product URIs to the returned cloud URIs. [#3314]
248
+
249
+ - Add ``verbose`` parameter to ``Observations.get_cloud_uris`` to control
250
+ whether warnings are logged when a product cannot be found in the cloud.
251
+ [#3314]
252
+
253
+ - Improved ``MastMissions`` queries to accept lists for query critieria
254
+ values, in addition to comma-delimited strings. [#3319]
255
+
256
+ - Enhanced ``filter_products`` methods in ``MastMissions`` and ``Observations``
257
+ to support advanced filtering expressions for numeric columns and with
258
+ negative values. [#3365, #3393]
259
+
260
+ - Fix bug where duplicate columns from server responses cause an error when
261
+ converting to an ``~astropy.table.Table``. [#3400]
262
+
263
+ - Support for resolving multiple object names at once with ``resolve_object``,
264
+ including automatic batching into groups of up to 30 names per request to
265
+ the name translation service. [#3398]
266
+
267
+ simbad
268
+ ^^^^^^
269
+
270
+ - Add ``async_job`` option in all query methods. It provides slower to start,
271
+ but more robust queries for which the timeout can be increased. [#3305]
272
+
273
+ skyview
274
+ ^^^^^^^
275
+
276
+ - Add ``get_query_payload`` kwarg to ``Skyview.get_images()`` and
277
+ ``Skyview.get_images_list()`` to return the query payload. [#3318]
278
+
279
+ - Changed SkyView URL to https. [#3346]
280
+
281
+ utils.tap
282
+ ^^^^^^^^^
283
+
284
+ - The method ``upload_table`` accepts file formats accepted by astropy's
285
+ ``Table.read()``. [#3295]
286
+
287
+
288
+ Infrastructure, Utility and Other Changes and Additions
289
+ -------------------------------------------------------
290
+
291
+ query.py
292
+ ^^^^^^^^
293
+
294
+ - ``BaseQuery._download_file`` now returns the local file path in all cases.
295
+ Some corner cases where downloads were not properly continued have been
296
+ fixed. [#3232]
297
+
298
+ utils
299
+ ^^^^^
300
+
301
+ - Raising cleaner errors earlier when server returns with error. [#3284]
302
+
303
+ - ``return_frame`` parameter in ``utils.commons.parse_coordinates`` returns
304
+ coordinates in the specified frame. [#3164]
305
+
306
+
307
+ 0.4.10 (2025-03-18)
308
+ ===================
309
+
310
+ New Tools and Services
311
+ ----------------------
312
+
313
+ esa.euclid
314
+ ^^^^^^^^^^
315
+
316
+ - New module to access the ESA Euclid Archive. [#3216]
317
+
318
+
319
+ API changes
320
+ -----------
321
+
322
+ ipac.irsa
323
+ ^^^^^^^^^
324
+
325
+ - ``query_sia`` now returns the results as an astropy Table. [#3252, #3263]
326
+
327
+ - Deprecate ``print_catalogs`` in favour of ``list_catalogs``. [#3266]
328
+
329
+ simbad
330
+ ^^^^^^
331
+
332
+ - The detailed hierarchy is now returned by default in ``query_hierarchy``
333
+ (it was hidden in the previous versions). [#3195]
334
+
335
+
336
+ Service fixes and enhancements
337
+ ------------------------------
338
+
339
+ gaia
340
+ ^^^^
341
+
342
+ - Update DR4 retrieval_type names and include the new one
343
+ EPOCH_ASTROMETRY_BRIGHT. [#3207, #3238]
344
+
345
+ ipac.irsa
346
+ ^^^^^^^^^
347
+
348
+ - Method to run Simple Spectral Access (SSA) VO queries, ``query_ssa``,
349
+ is added. [#3076]
350
+
351
+ - Adding the "servicetype" kwarg to ``list_collections`` to be able to list SIA
352
+ and SSA collections separately. [#3200]
353
+
354
+ - Adding "filter" kwarg to ``list_collections`` and ``list_catalogs`` to filter
355
+ for collections/catalogs with names containing the filter string. [#3264]
356
+
357
+ - Adding support for asynchronous queries using the new ``async_job``
358
+ keyword argument. [#3201]
359
+
360
+ - Making the ``'spatial'`` keyword in ``query_region`` case insensitive. [#3224]
361
+
362
+ - Adding new ``list_columns`` method to list available columns for a given
363
+ catalog. [#3265]
364
+
365
+ ipac.nexsci.nasa_exoplanet_archive
366
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
367
+
368
+ - Fixed InvalidTableError for DI_STARS_EXEP and TD tables. [#3189]
369
+
370
+ mast
371
+ ^^^^
372
+
373
+ - Bugfix where users are unnecessarily warned about a query limit while
374
+ fetching products in ``MastMissions.get_product_list``. [#3193]
375
+
376
+ - Bugfix where ``Observations.get_cloud_uri`` and
377
+ ``Observations.get_cloud_uris`` fail if the MAST relative path is not
378
+ found. [#3193]
379
+
380
+ - Corrected parameter checking in ``MastMissions`` to ensure case-sensitive
381
+ comparisons. [#3260]
382
+
383
+ - Add batching to ``MastMissions.get_product_list`` to avoid server errors
384
+ and allow for a larger number of input datasets. [#3230]
385
+
386
+ - Handle a MAST URI string as input for ``Observations.get_cloud_uri`` and
387
+ a list of MAST URIs as input for ``Observations.get_cloud_uris``. [#3193]
388
+
389
+ simbad
390
+ ^^^^^^
391
+
392
+ - Fixing joining measurement with basic votable-fields and masking values
393
+ instead of not returning lines in the result if a measurement fields are
394
+ empty for an object. [#3199]
395
+
396
+ - Performance improvements to prevent timeouts to ``query_region`` when
397
+ there are more than 300 coordinates. [#3235]
398
+
399
+ - Removed ``'pm'`` from the votable_fields list. [#3259]
400
+
401
+ xmatch
402
+ ^^^^^^
403
+
404
+ - Fixing the API to be more flexible, it is now possible to ommit the
405
+ ``'vizier:'`` sting before the catalog name when crossmatching with a
406
+ vizier table. [#3194]
407
+
408
+
409
+ Infrastructure, Utility and Other Changes and Additions
410
+ -------------------------------------------------------
411
+
412
+ - Removed usage of the astropy TestRunner, therefore the unadvertised
413
+ ``astroquery.test()`` functionality. [#3215]
414
+
415
+
416
+
417
+ 0.4.9 (2025-01-24)
418
+ ==================
419
+
420
+ New Tools and Services
421
+ ----------------------
422
+
423
+ esa.integral
424
+ ^^^^^^^^^^^^
425
+
426
+ - New module to access the ESA Integral Science Legacy Archive. [#3154]
427
+
428
+
429
+ Service fixes and enhancements
430
+ ------------------------------
431
+
432
+ heasarc
433
+ ^^^^^^^
434
+
435
+ - Fix Heasarc.download_data for Sciserver. [#3183]
436
+
437
+ ipac.nexsci.nasa_exoplanet_archive
438
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
439
+
440
+ - Add missing unit strings to unit mapper. ``micron``, ``microns``,
441
+ and ``uas``. [#3188]
442
+
443
+ jplspec
444
+ ^^^^^^^
445
+
446
+ - Minor improvement to lookuptable behavior. [#3173, #2901]
447
+
448
+ linelists.cdms
449
+ ^^^^^^^^^^^^^^
450
+
451
+ - Add whole catalog retrieval, improve error messaging for unparseable lines,
452
+ improve metadata catalog, and improve lookuptable behavior. [#3173, #2901]
453
+
454
+ mast
455
+ ^^^^
456
+
457
+ - Retrieve data products from the Missions-MAST API with
458
+ ``MastMissions.get_product_list``. Retrieve unique data
459
+ products only with ``MastMissions.get_unique_product_list``. [#3155]
460
+
461
+ - Filter data products retrieved from the Missions-MAST API with
462
+ ``MastMissions.filter_products``. [#3155]
463
+
464
+ - Download data products from the Missions-MAST API with
465
+ ``MastMissions.download_products``.
466
+ Download a single data product using ``MastMissions.download_file``. [#3155]
467
+
468
+ - Get the keyword corresponding to the dataset ID for a specific mission
469
+ with ``MastMissions.get_dataset_kwd``. [#3155]
470
+
471
+ mocserver
472
+ ^^^^^^^^^
473
+
474
+ - Switch to https instead of http for the default url (allows pyodide to use the
475
+ module). [#3139]
476
+
477
+ - Add ``TimeMOC`` and ``STMOC`` as possible entries in
478
+ ``MOCServer.query_region`` to allow temporal and space-time searches. [#3139]
479
+
480
+ - ``return_moc`` now allows to ask for a Time-MOC or a Space-Time MOC rather
481
+ than only Space-MOCs. [#3139]
482
+
483
+ - Fix query by MOC that would write a file ``moc.fits`` where the method
484
+ was executed in overwriting mode (potentially deleting data if there was
485
+ a conflicting file). [#3139]
486
+
487
+ - Returned tables now have a default list of fields instead of the
488
+ > 130 columns returned previously. The full list of fields can be
489
+ displayed with the new method ``MOCServer.list_fields``. [#3139]
490
+
491
+ - Add ``casesensitive`` parameter in the queries (previously, this was hardcoded
492
+ to ``True``) [#3139]
493
+
494
+ - Add ``coordinate_system`` parameter to the queries to allow to filter on
495
+ the different bodies or frames. The list of available space systems can
496
+ be printed with the new method ``MOCServer.list_coordinates_systems``. [#3139]
497
+
498
+ - Add ``query_hips`` method, which is convenient to filter only
499
+ Hierarchical progressive surveys. [#3139]
500
+
501
+ - Add new parameter ``criteria`` in ``query_region`` and ``query_hips`` with
502
+ the same use as ``meta_data`` in the deprecated method ``find_datasets``.
503
+ [#3139]
504
+
505
+ - Deprecated ``find_datasets`` in favour of ``query_region``. [#3139]
506
+
507
+ simbad
508
+ ^^^^^^
509
+
510
+ - Fixed adding a list of fluxes with the deprecated notation
511
+ ``Simbad.add_votable_fields("flux(U)", "flux(J)")``. [#3186]
512
+
513
+ - Support more of the 0.4.7 votable fields. Raise more significant error messages
514
+ for the discontinued ones. [#3186]
515
+
516
+ - Fix the deprecated votable fields ``otype(V)`` and ``otype(S)``. [#3186]
517
+
518
+ - Fixed non existing flux filters as votable fields would fail silently. [#3186]
519
+
520
+
521
+ 0.4.8 (2025-01-16)
522
+ ==================
523
+
524
+ Service fixes and enhancements
525
+ ------------------------------
526
+
527
+ astrometry_net
528
+ ^^^^^^^^^^^^^^
529
+
530
+ - Removed photutils from Astroquery astrometry.net. [#3067]
531
+
532
+ - Reduced the number of API calls when polling for job status. [#3079]
533
+
534
+ alma
535
+ ^^^^
536
+
537
+ - Added method to return quantities instead of values and regions footprint
538
+ in alma. [#2855]
539
+
540
+ - Added support for frequency_resolution in KHz. [#3035]
541
+
542
+ - Added support for temporary upload tables in query_tap. [#3118]
543
+
544
+ - Changed the way galactic ranges are used in queries. [#3105]
545
+
546
+ casda
547
+ ^^^^^
548
+
549
+ - Support jobs which are in the SUSPENDED state (used when copying data). [#3134]
550
+
551
+ dace
552
+ ^^^^
553
+
554
+ - Module has been removed as it was incompatible with server changes. A
555
+ standalone library called dace-query is available to access DACE
556
+ data. [#3162]
557
+
558
+ esa.hubble
559
+ ^^^^^^^^^^
560
+
561
+ - Include warning in get_datalabs_path method for ehst when the data volume
562
+ is not mounted in DataLabs. [#3059]
563
+
564
+ - Fixed an inconsistency, ``get_member_observations`` now return a list for
565
+ both simple and composite observations. [#3157]
566
+
567
+ - New method ``get_datalabs_path`` to return the complete path of a file in
568
+ datalabs by combining the datalabs volume path with the path of the file
569
+ in the table ehst.artifact [#2998]
570
+
571
+ esa.jwst
572
+ ^^^^^^^^
573
+
574
+ - get_obs_products method now supports product_type parameter as string or list.
575
+ [#2995]
576
+
577
+ - Added download_files_from_program method to get all products by program id.
578
+ [#3073]
579
+
580
+ esasky
581
+ ^^^^^^
582
+
583
+ - Added support for eROSITA downloads. [#3111]
584
+
585
+ gaia
586
+ ^^^^
587
+
588
+ - Included table size in the class TapTableMeta returned by the functions
589
+ ``load_tables`` and ``load_table``, in the class Tap. [#2970]
590
+
591
+ - For the functions that return files in FITS/ECSV format, the files are now
592
+ provided as uncompressed files. [#2983]
593
+
594
+ - New parameter USE_NAMES_OVER_IDS that gives preference to ``name`` over ID
595
+ attributes of columns as the names of columns in the ``astropy.table.Table``
596
+ instance. By default, value True is set, that gives name preference. [#2967]
597
+
598
+ - Change the signature of the method ``load_data``: the parameter
599
+ ``output_file`` that defined the file where the results were
600
+ saved, is replaced by boolean parameter ``dump_to_file``, that in case it
601
+ is true, a compressed directory named "datalink_output.zip" with
602
+ all the DataLink files is made. So the users cannot specified the output
603
+ file anymore. [#3014]
604
+
605
+ - New retrieval types for datalink (Gaia DR4 release). [#3110]
606
+
607
+ - The output file name built by the method ``load_data``, includes
608
+ microsecond resolution. This is based on the previous. [#3130]
609
+
610
+ gama
611
+ ^^^^
612
+
613
+ - Changed URL to https and thus making the module functional again. [#3056]
614
+
615
+ heasarc
616
+ ^^^^^^^
617
+
618
+ - Refactor heasarc to use the VO backend. [#2997]
619
+
620
+
621
+ ipac.irsa
622
+ ^^^^^^^^^
623
+
624
+ - Added more robust handling of errors returned in Most.query_object() responses.
625
+ [#3140]
626
+
627
+ - Removal of the deprecated module ``ipac.irsa.sha``. Use ``ipac.irsa`` to
628
+ access Spitzer data. [#3163]
629
+
630
+ ipac.nexsci.nasa_explanet_archive
631
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
632
+
633
+ - Fix unit inconsistency in ``pl_trandur`` from day(s) to hour(s). [#3137]
634
+
635
+ jplhorizons
636
+ ^^^^^^^^^^^
637
+
638
+ - Add missing column definitions, especially for ``refraction=True`` and
639
+ ``extra_precision=True``. [#2986]
640
+
641
+ mast
642
+ ^^^^
643
+
644
+ - Fixed bug in which the ``local_path`` parameter for the
645
+ ``mast.observations.download_file`` method does not accept a directory. [#3016]
646
+
647
+ - Added ``verbose`` parameter to modulate output in
648
+ ``mast.observations.download_products`` method. [#3031]
649
+
650
+ - Fixed bug in ``Catalogs.query_criteria()`` to use ``page`` and
651
+ ``pagesize`` parameters correctly. [#3065]
652
+
653
+ - Modified ``mast.Observations.get_cloud_uris`` to also accept query
654
+ criteria and data product filters. [#3064]
655
+
656
+ - Increased the speed of ``mast.Observations.get_cloud_uris`` by obtaining
657
+ multiple URIs from MAST at once. [#3064]
658
+
659
+ - Raise an error rather than a warning when nonexistent query criteria are
660
+ used in ``Observations.query_criteria``, ``Catalogs.query_criteria``,
661
+ ``Catalogs.query_region``, ``Catalogs.query_object``, and
662
+ ``MastMissions`` query methods, [#3084, #3126]
663
+
664
+ - Added support for case-insensitive criteria keyword arguments in
665
+ ``mast.Observations.query_criteria`` and ``mast.Catalogs.query_criteria``.
666
+ [#3087]
667
+
668
+ - Added function ``mast.Observations.get_unique_product_list`` to return the
669
+ unique data products associated with given observations. [#3096]
670
+
671
+ - Deprecated ``enable_cloud_dataset`` and ``disable_cloud_dataset`` in
672
+ classes where they are non-operational. [#3113]
673
+
674
+ - Handle HLSP data products in ``Observations.get_cloud_uris``. [#3126]
675
+
676
+ mpc
677
+ ^^^
678
+
679
+ - Rename ``MPC.get_mpc_object_endpoint`` to ``MPC._get_mpc_object_endpoint`` to
680
+ indicate that it is a private method. [#3089]
681
+
682
+ - Parse star catalog information when querying observations database. [#2957]
683
+
684
+ - Parse ephemeris with sky motion with three digit precision. [#3026]
685
+
686
+ - Raise EmptyResponseError when empty ephemeris response is returned [#3026]
687
+
688
+ - Deprecated ``get_raw_response`` parameter from ``MPC.get_observations``. The
689
+ raw response may be retrieved from the _async() method. [#3089]
690
+
691
+ - Removed ``get_raw_response`` parameter from ``MPC.get_ephemeris`` and
692
+ ``MPC.get_observatory_codes`` without deprecation as the parameters were
693
+ ignored and had no effect. [#3089]
694
+
695
+ - Fixed bug in ``MPC.get_ephemeris`` that caused the ``cache`` keyword parameter
696
+ to be ignored. [#3089]
697
+
698
+ - Removed ``comettype`` parameter from ``MPC.get_observations`` without
699
+ deprecation: it was undocumented, ignored, and had no effect. [#3089]
700
+
701
+ - When ``MPC.get_ephemeris`` raises an ``InvalidQueryError`` message, instead of
702
+ returning the original HTML formatted text, strip the HTML tags and return a
703
+ plain text message. [#3171]
704
+
705
+ nvas
706
+ ^^^^
707
+
708
+ - Fixed base URL to reflect upstream changes. [#3160]
709
+
710
+ linelists.cdms
711
+ ^^^^^^^^^^^^^^
712
+
713
+ - Fixed result parsing incompatibility with astropy 6.1 on Windows systems.
714
+ [#3008]
715
+
716
+ ogle
717
+ ^^^^
718
+
719
+ - Changed URL to https and thus making the module functional again. [#3048]
720
+
721
+ sdss
722
+ ^^^^
723
+
724
+ - Support new SDSS-V DR18 access URLs. [#3017]
725
+
726
+ - Fixed download caching. [#3123]
727
+
728
+ simbad
729
+ ^^^^^^
730
+
731
+ - The ``ROW_LIMIT`` value to have the maximum number of rows is now -1.
732
+ Use ``ROW_LIMIT = 0`` to retrieve the output's meta-data. [#2954]
733
+
734
+ - ``ROW_LIMIT`` can now be set at instantiation
735
+ (e.g.: ``simbad = Simbad(ROW_LIMIT=10))``). [#2954]
736
+
737
+ - ``list_votable_fields`` now return an astropy Table with added fields
738
+ information instead of a list of strings. [#2954]
739
+
740
+ - ``list_votable_fields`` is now queried directly from SIMBAD instead of reading
741
+ a file in astroquery. This prevents it from being outdated. [#2954]
742
+
743
+ - ``get_votable_fields`` now prints the table name and column name instead of
744
+ just the column name. [#2954]
745
+
746
+ - The ``verbose`` and ``cache`` kwargs have been deprecated from all methods
747
+ as they have no effect with with the new query interface. [#2954]
748
+
749
+ - ``get_adql`` is deprecated and replaced by ``get_query_payload`` in
750
+ ``list_columns`` and ``list_table``.
751
+ The payload output contains the ADQL under the ``QUERY`` key. [#2954]
752
+
753
+ - All query methods except ``query_tap`` and ``query_criteria`` now accept a
754
+ ``criteria`` argument to restrict the results with custom criteria. [#2954]
755
+
756
+ - ``query_objects`` outputs now have an additional column ``user_specified_id``
757
+ containing the objects' name as specified by the user.
758
+ The ``votable_field`` option ``typed_id`` is removed. [#2954]
759
+
760
+ - The ``equinox`` and ``epoch`` kwargs are deprecated in ``query_region``,
761
+ use astropy.coordinates.SkyCoord directly instead. [#2954]
762
+
763
+ - ``query_bibcode`` has a new option ``abstract`` that allows to also
764
+ retrieve the article's abstract. [#2954]
765
+
766
+ - ``query_bibcode`` output is now in an astropy Table with distinct columns
767
+ instead of a single one in which all the information was a string. [#2954]
768
+
769
+ - ``query_criteria`` is now deprecated and should be replaced by either custom
770
+ TAP queries or by the ``criteria`` argument added in the other query methods.
771
+ A helper method was added ``astroquery.simbad.utils.CriteriaTranslator`` to
772
+ translate between the sim-script syntax and the TAP/ADQL syntax. [#2954]
773
+
774
+ - Fixed ``query_objects`` that would not work in combination with the
775
+ additional field ``ident``. [#3149]
776
+
777
+ - Added ``query_hierarchy``: a new method that allows to get the parents,
778
+ children, or siblings of an object. [#3175]
779
+
780
+ - Added ``NoResultsWarning`` when a query returns an empty table. [#3068]
781
+
782
+ skyview
783
+ ^^^^^^^
784
+
785
+ - Overlay arguments ``lut``, ``grid``, and ``gridlabel`` are removed, as they
786
+ only apply to output types not returned by Astroquery. [#2979]
787
+
788
+ splatalogue
789
+ ^^^^^^^^^^^
790
+
791
+ - Fix incompatibilities with the major changes made to the Splatalogue's
792
+ upstream server in March 2024. [#2960]
793
+
794
+ vizier
795
+ ^^^^^^
796
+
797
+ - Changed the type of raised error when the catalog is not found in
798
+ ``Vizier.get_catalog_metadata`` from ``IndexError`` to
799
+ ``EmptyResponseError``. [#2980]
800
+
801
+ - Fixed search by UCD -- they were ignored. [#3147]
802
+
803
+ - Fixed column names -- some characters were replaced by ``_`` instead of keeping
804
+ the original name. [#3153]
805
+
806
+ vsa
807
+ ^^^
808
+
809
+ - Updated base URL to fix 404 responses. [#3033]
810
+
811
+ xmatch
812
+ ^^^^^^
813
+
814
+ - Fixed xmatch query for two local tables. The second table was written over
815
+ the first one, resulting in a confusing "missing cat1" error. [#3116]
816
+
817
+ - Made the error message clearer about VizieR tables not available for
818
+ crossmatching. [#3168]
819
+
820
+ Infrastructure, Utility and Other Changes and Additions
821
+ -------------------------------------------------------
822
+
823
+ - Versions of astropy <5.0 and numpy <1.20 are no longer supported. [#2966]
824
+
825
+ - Versions of Python <3.9 are no longer supported. [#2966]
826
+
827
+ - Versions of PyVO <1.5 are no longer supported. [#3002]
828
+
829
+ utils.tap
830
+ ^^^^^^^^^
831
+
832
+ - ``TapPlus.upload_table`` should not allow table names to contain a
833
+ dot. ``ValueError`` is now raised for such cases. [#2971]
834
+
835
+ - Fix method read_http_response to retrieve json files. This fixes the
836
+ previous PR #2947. [#2990]
837
+
838
+ - Fixed method ``search_async_jobs`` in the class TapPlus. [#2967]
839
+
840
+
841
+ 0.4.7 (2024-03-08)
842
+ ==================
843
+
844
+ New Tools and Services
845
+ ----------------------
846
+
847
+ esa.hsa
848
+ ^^^^^^^
849
+
850
+ - New module to access the ESA Herschel mission. [#2122]
851
+
852
+ ipac.irsa
853
+ ^^^^^^^^^
854
+
855
+ - New class, ``Most``, to access the Moving Object Search Tool (MOST) is
856
+ added. [#2660]
857
+
858
+ mocserver
859
+ ^^^^^^^^^
860
+
861
+ - ``mocserver`` is the new name of the ``cds`` module allowing access to the
862
+ CDS MOC server [#2766]
863
+
864
+ solarsystem.neodys
865
+ ^^^^^^^^^^^^^^^^^^
866
+
867
+ - New module to access the NEODyS web interface. [#2618]
868
+
869
+ solarsystem.pds
870
+ ^^^^^^^^^^^^^^^
871
+
872
+ - New module to access the Planetary Data System's Ring Node System. [#2358]
873
+
874
+
875
+ Service fixes and enhancements
876
+ ------------------------------
877
+
878
+ alfalfa
879
+ ^^^^^^^
880
+
881
+ - Removal of the non-functional ``get_spectrym`` method as that service has
882
+ disappeared. [#2578]
883
+
884
+ alma
885
+ ^^^^
886
+
887
+ - Fixed a regression to handle arrays of string input for the ``query``
888
+ methods. [#2457]
889
+
890
+ - Throws an error when an unsupported ``kwargs`` (or argument) is passed in
891
+ to a function. [#2475]
892
+
893
+ - New DataLink API handling. [#2493]
894
+
895
+ - Fixed bug in which blank URLs were being sent to the downloader. [#2490]
896
+
897
+ - Removed deprecated broken functions from ``alma.utils``. [#2331]
898
+
899
+ - Fixed a bug in slicing of ALMA regions. [#2810]
900
+
901
+ - Added support for ALMA OIDC (OpenID Connect) auth service, Keycloak. [#2712]
902
+
903
+ - Fixed bug to use the timeout set in the configuration. [#2535]
904
+
905
+ astrometry_net
906
+ ^^^^^^^^^^^^^^
907
+
908
+ - Added a ``verbose=`` keyword argument to ``AstrometryNet`` to control
909
+ whether or not to show any information during solving. [#2484]
910
+
911
+ - Fixed a bug which caused ``solve_timeout`` to not be respected when an image
912
+ was solved by constructing a source list internally before sending data to
913
+ astrometry.net. [#2484]
914
+
915
+ - Avoid duplicated warnings about API key and raise an error only when API key
916
+ is needed but not set. [#2483]
917
+
918
+ - Added ``return_submission_id`` keyword argument to
919
+ ``monitor_submission()``. [#2685]
920
+
921
+ - Fixed off-by-one error in the reference pixel of the WCS solution when the
922
+ solution is found using sources detected by photutils. After this fix the
923
+ solution from astrometry.net will be the same when the input is an image
924
+ regardless of whether the image is uploaded or sources are detected
925
+ locally. [#2752]
926
+
927
+ atomic
928
+ ^^^^^^
929
+
930
+ - Fixed infitine caching loop. [#2339]
931
+
932
+ - Change URL and improve error handling. [#2769]
933
+
934
+ cadc
935
+ ^^^^
936
+
937
+ - Deprecated keywords and ``run_query`` method have been removed. [#2389]
938
+
939
+ - Added the ability to pass longer that filename Path objects as
940
+ ``output_file``. [#2541]
941
+
942
+ casda
943
+ ^^^^^
944
+
945
+ - Add the ability to produce 2D and 3D cutouts from ASKAP images and cubes.
946
+ [#2366]
947
+
948
+ - Use the standard ``login`` method for authenticating, which supports the
949
+ system keyring. [#2386]
950
+
951
+ cds
952
+ ^^^
953
+
954
+ - The ``cds`` module has been renamed ``mocserver`` and issues a deprecation
955
+ warning when imported. [#2766]
956
+
957
+ esa.hubble
958
+ ^^^^^^^^^^
959
+
960
+ - Refactored ``query_criteria`` to make the query a lot faster. [#2524]
961
+
962
+ - Method ``query_hst_tap`` has been renamed ``query_tap``. [#2597]
963
+
964
+ - Product types in ``download_product`` have been modified to:
965
+ 'PRODUCT', 'SCIENCE_PRODUCT', or 'POSTCARD'. [#2597]
966
+
967
+ - Added ``proposal`` keyword argument to several methods now allows to
968
+ filter by Proposal ID. [#2797]
969
+
970
+ - Update to TAP url to query data and download files, aligned with the new
971
+ eHST Science Archive. [#2567, #2597]
972
+
973
+ - Status and maintenance messages from eHST TAP when the module is
974
+ instantiated. Use ``get_status_messages`` to retrieve them. [#2597]
975
+
976
+ - New methods to download single files ``download_file`` and download FITS
977
+ associated to an observation ``download_fits_files``. [#2797]
978
+
979
+ - New function to retrieve all the files associated to an observation
980
+ ``get_associated_files``. [#2797]
981
+
982
+ - New methods to retrieve metadata (``get_observations_from_program``) and
983
+ files (``download_files_from_program``) associated to a proposal. [#2910]
984
+
985
+ esa.jwst
986
+ ^^^^^^^^
987
+
988
+ - Fixes in ``login`` and ``set_token`` methods. [#2807]
989
+
990
+ esa.xmm_newton
991
+ ^^^^^^^^^^^^^^
992
+ - New version of RMF matrices (v21). [#2910, #2932]
993
+
994
+ eso
995
+ ^^^
996
+
997
+ - Authenticate with ESO using APIs and tokens instead of HTML forms. [#2681]
998
+
999
+ - Discontinue usage of old Request Handler for dataset retrieval in favor of
1000
+ new dataportal API. [#2681]
1001
+
1002
+ - Local reimplementation of astroquery's ``_download_file`` to fix some issues
1003
+ and avoid sending a HEAD request just to get the original filename. [#1580]
1004
+
1005
+ - Restore support for .Z files. [#1818]
1006
+
1007
+ exoplanet_orbit_database
1008
+ ^^^^^^^^^^^^^^^^^^^^^^^^
1009
+
1010
+ - The module has been deprecated due to the retirement of its upstream
1011
+ website. The database hasn't been updated since 2018, users are encouraged
1012
+ to use the ``ipac.nexsci.nasa_exoplanet_archive`` module instead. [#2792]
1013
+
1014
+ gaia
1015
+ ^^^^
1016
+
1017
+ - TAP notifications service is now available for Gaia. [#2376]
1018
+
1019
+ - Datalink can be used with the new parameter ``linking_parameter``.
1020
+ It provides an additional meaning to the source identifiers:
1021
+ 'source_id', 'transit_id', and 'image_id'. [#2859, #2936]
1022
+
1023
+ - Added support for output formats:
1024
+ votable, votable_gzip (which is now the default), and ecsv. [#2907]
1025
+
1026
+ - For the functions ``cone_search``, ``cone_search_async``, ``launch_job``,
1027
+ and ``launch_job_async`` the data can be retrieved for the json
1028
+ ``output_format``. [#2927, #2947]
1029
+
1030
+ - Method ``load_data`` now has the parameter ``valid_data`` to control the
1031
+ epoch photometry service to return all data associated to a given source.
1032
+ [#2376]
1033
+
1034
+ - Default Gaia catalog updated to DR3. [#2596]
1035
+
1036
+ heasarc
1037
+ ^^^^^^^
1038
+
1039
+ - Fix issue in which blank tables raised exceptions. [#2624]
1040
+
1041
+ ipac.irsa
1042
+ ^^^^^^^^^
1043
+
1044
+ - The IRSA module's backend has been refactored to favour VO services and to
1045
+ run the queries through TAP rather than Gator.
1046
+ New method ``query_tap`` is added to enable ADQL queries, async-named
1047
+ methods have been removed. The ``selcols`` kwarg has been renamed to
1048
+ ``columns``, and the ``cache`` and ``verbose`` kwargs have been
1049
+ deprecated as they have no effect. [#2823]
1050
+
1051
+ - Method to run SIAv2 VO queries, ``query_sia``, is added. [#2837]
1052
+
1053
+ - Method to list available collections for SIA queries,
1054
+ ``list_collections``, is added. [#2952]
1055
+
1056
+ - Deprecation of the module ``ipac.irsa.sha`` due to upstream API changes
1057
+ and in favour of recommending using ``ipac.irsa`` instead. [#2924]
1058
+
1059
+ ipac.nexsci.nasa_exoplanet_archive
1060
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1061
+
1062
+ - Removed deprecated methods ``query_planet`` and ``query_star``. [#2431]
1063
+
1064
+ - Stability improvements to ``query_aliases`` to address bug that made
1065
+ method retrieve no aliases for multiple star systems. [#2506]
1066
+
1067
+ jplhorizons
1068
+ ^^^^^^^^^^^
1069
+
1070
+ - Deprecate ``get_raw_response`` parameter in query methods.
1071
+ The raw response may be retrieved from the _async() methods. [#2418]
1072
+
1073
+ - Adding ``optional_setting`` parameter to the ephemerides methods to allow
1074
+ passing additional settings. [#1802]
1075
+
1076
+ - Topocentric coordinates can now be specified for both center and target in
1077
+ observer and vector queries. [#2625]
1078
+
1079
+ - Updated returned table columns to match Horizons's updates. [#2794]
1080
+
1081
+ - Assign units to ``"hour_angle"``, ``"solartime"``, and ``"siderealtime"``
1082
+ columns. [#2794]
1083
+
1084
+ - Allow using units in locations specified as coordinates. [#2746]
1085
+
1086
+ jplsbdb
1087
+ ^^^^^^^
1088
+
1089
+ - Fix a bug for jplsdbd query when the returned physical quantity contains
1090
+ a unit with exponential. [#2377]
1091
+
1092
+ jplspec
1093
+ ^^^^^^^
1094
+
1095
+ - Fix a bug in lookup-table generation when using ``parse_name_locally``
1096
+ option. [#2945]
1097
+
1098
+ linelists.cdms
1099
+ ^^^^^^^^^^^^^^
1100
+
1101
+ - Fix issues with the line name parser and the line data parser; the original
1102
+ implementation was incomplete and upstream was not fully
1103
+ documented. [#2385, #2411]
1104
+
1105
+ - Added new line list reader and enabled reading line list from remote
1106
+ server.[#2760]
1107
+
1108
+ - Updated local version of line list to include some change in column names.
1109
+ [#2760]
1110
+
1111
+ mast
1112
+ ^^^^
1113
+
1114
+ - Cull duplicate downloads for the same dataURI in
1115
+ ``Observations.download_products()`` and duplicate URIs in
1116
+ ``Observations.get_cloud_uris``. [#2497]
1117
+
1118
+ - Fixed ``Observations.get_product_list`` to handle input lists of
1119
+ obsids. [#2504]
1120
+
1121
+ - Add a ``flat`` option to ``Observation.download_products()`` to turn off the
1122
+ automatic creation and organizing of products into subdirectories. [#2511]
1123
+
1124
+ - Expanding ``Cutouts`` functionality to support making Hubble Advanced
1125
+ Product (HAP) cutouts via HAPCut. [#2613]
1126
+
1127
+ - Expanding ``Cutouts`` functionality to support TICA HLSPs now available
1128
+ through ``TesscutClass``. [#2668]
1129
+
1130
+ - Resolved issue making PANSTARRS catalog queries when columns and sorting
1131
+ is specified. [#2727]
1132
+
1133
+ - Bug fix in ``Observations.query_criteria()`` to use ``page`` and
1134
+ ``pagesize`` parameters [#2915]
1135
+
1136
+ - Added ``mast_query`` to ``MastClass`` to handle the creation of parameter
1137
+ dictionaries for MAST Service queries. [#2785]
1138
+
1139
+ - PanSTARRS data is now available to download anonymously from the public
1140
+ STScI S3 buckets. [#2893]
1141
+
1142
+ - Changed warning to error for authentication failure. [#1874]
1143
+
1144
+ nist
1145
+ ^^^^
1146
+
1147
+ - Vectorized ``linename`` option to query multiple spectral lines with one call
1148
+ of ``Nist.query``. [#2678]
1149
+
1150
+ - Fix wavelength keywords, which were changed upstream. [#2918]
1151
+
1152
+ - Fetch statistical weight (g) from the database. [#2955]
1153
+
1154
+ oac
1155
+ ^^^
1156
+
1157
+ - Fix bug in parsing events that contain html tags (e.g. in their alias
1158
+ field). [#2423]
1159
+
1160
+ sdss
1161
+ ^^^^
1162
+
1163
+ - ``query_region()`` can perform cone search or a rectangular
1164
+ search around the specified coordinates. [#2477, #2663]
1165
+
1166
+ - The default data release has been changed to DR17. [#2478]
1167
+
1168
+ - Switching to https to avoid issues originating in relying on server side
1169
+ redirects. [#2654]
1170
+
1171
+ - Fix bug to have object IDs as unsigned integers, on Windows, too.
1172
+ [#2800, #2806, #2880]
1173
+
1174
+ simbad
1175
+ ^^^^^^
1176
+
1177
+ - new ``query_tap`` method to access SIMBAD. This comes with additional
1178
+ methods to explore SIMBAD's tables and their links:
1179
+ ``list_tables``, ``list_columns``, and ``list_linked_tables``. [#2856]
1180
+
1181
+ - It is now possible to specify multiple coordinates together with a single
1182
+ radius as a string in ``query_region()`` and ``query_region_async()``.
1183
+ [#2494]
1184
+
1185
+ - ``ROW_LIMIT`` is now respected when running region queries; previously, it
1186
+ was ignored for region queries but respected for all others. A new warning,
1187
+ ``BlankResponseWarning``, is introduced for use when one or more query terms
1188
+ result in a blank or missing row; previously, only a generic warning was
1189
+ issued. [#2637]
1190
+
1191
+ skyview
1192
+ ^^^^^^^
1193
+
1194
+ - Fix bug for ``radius`` parameter to not behave as diameter. [#2601]
1195
+
1196
+ - Fix bug in ``height`` and ``width`` input validation. [#2757]
1197
+
1198
+ svo_fps
1199
+ ^^^^^^^
1200
+
1201
+ - The wavelength limits in ``get_filter_index`` can now be specified using any
1202
+ length unit, not just angstroms. [#2444]
1203
+
1204
+ - Queries with invalid parameter names now raise an ``InvalidQueryError``.
1205
+ [#2446]
1206
+
1207
+ - The default wavelength range used by ``get_filter_index`` was far too
1208
+ large. The user must now always specify both upper and lower limits. [#2509]
1209
+
1210
+ vizier
1211
+ ^^^^^^
1212
+
1213
+ - Fix parsing vizier generated tsv returns. [#2611]
1214
+
1215
+ - New method ``get_catalog_metadata`` allows to retrieve information about
1216
+ VizieR catalogs such as origin_article, description, or last modified
1217
+ date. [#2878]
1218
+
1219
+ xmatch
1220
+ ^^^^^^
1221
+
1222
+ - The reason for query errors, as parsed from the returned VOTable is now
1223
+ exposed as part of the traceback. [#2608]
1224
+
1225
+ - Minor internal change to use VOTable as the response format that include
1226
+ units, too. [#1375]
1227
+
1228
+
1229
+ Infrastructure, Utility and Other Changes and Additions
1230
+ -------------------------------------------------------
1231
+
1232
+ - Optional keyword arguments are now keyword only.
1233
+ [#1802, #2339, #2477, #2532, #2597, #2601, #2609, #2610, #2655, #2656, #2661, #2671, #2690, #2703]
1234
+
1235
+ - New function, ``utils.cleanup_downloads.cleanup_saved_downloads``, is
1236
+ added to help the testcleanup narrative in narrative documentations. [#2384]
1237
+
1238
+ - Adding new ``BaseVOQuery`` baseclass for modules using VO tools. [#2836]
1239
+
1240
+ - Adding more system and package information to User-Agent. [#2762, #2836]
1241
+
1242
+ - Refactoring caching. [#1634]
1243
+
1244
+ - Removal of the non-functional ``nrao`` module as it was completely
1245
+ incompatible with the refactored upstream API. [#2546]
1246
+
1247
+ - Removal of the non-functional ``noirlab`` module because the current module
1248
+ is incompatible with the new upstream API. [#2579]
1249
+
1250
+ - Removed deprecated function ``utils.commons.send_request()``. [#2583]
1251
+
1252
+ - Removed deprecated function ``utils.download_list_of_fitsfiles()``. [#2594]
1253
+
1254
+ - Versions of astropy <4.2.1 and numpy <1.18 are no longer supported. [#2602]
1255
+
1256
+ utils.tap
1257
+ ^^^^^^^^^
1258
+
1259
+ - Add support for ``MAXREC`` parameter. [#1584]
1260
+
1261
+ - Data downloads are now executed in streaming mode. [#2910]
1262
+
1263
+
1264
+ 0.4.6 (2022-03-22)
1265
+ ==================
1266
+
1267
+ Service fixes and enhancements
1268
+ ------------------------------
1269
+
1270
+ alma
1271
+ ^^^^
1272
+
1273
+ - Added ``verify_only`` option to check if data downloaded with correct file
1274
+ size. [#2263]
1275
+
1276
+ - Deprecated keywords and ``stage_data`` method has been removed. [#2309]
1277
+
1278
+ - Deprecate broken functions from ``alma.utils``. [#2332]
1279
+
1280
+ - Optional keyword arguments are now keyword only. [#2309]
1281
+
1282
+ casda
1283
+ ^^^^^
1284
+
1285
+ - Simplify file names produced by ``download_files`` to avoid filename too
1286
+ long errors. [#2308]
1287
+
1288
+ esa.hubble
1289
+ ^^^^^^^^^^
1290
+
1291
+ - Changed ``query_target`` method to use TAP instead of AIO. [#2268]
1292
+
1293
+
1294
+ - Added new method ``get_hap_hst_link`` and ``get_member_observations`` to
1295
+ get related observations. [#2268]
1296
+
1297
+ esa.xmm_newton
1298
+ ^^^^^^^^^^^^^^
1299
+
1300
+ - Add option to download proprietary data. [#2251]
1301
+
1302
+ gaia
1303
+ ^^^^
1304
+
1305
+ - The ``query_object()`` and ``query_object_async()`` methods of
1306
+ ``astroquery.gaia.Gaia`` no longer ignore their ``columns`` argument when
1307
+ ``radius`` is specified. [#2249]
1308
+
1309
+ - Enhanced methods ``launch_job`` and ``launch_job_async`` to avoid issues with
1310
+ the name provided by the user for the output file when the results are
1311
+ returned by the TAP in compressed format. [#2077]
1312
+
1313
+ ipac.nexsci.nasa_exoplanet_archive
1314
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1315
+
1316
+ - Fixes to alias query, and regularize keyword removed from deprecated
1317
+ ``query_star`` method. [#2264]
1318
+
1319
+ mast
1320
+ ^^^^
1321
+
1322
+ - Adding moving target functionality to ``Tesscut`` [#2121]
1323
+
1324
+ - Adding ``MastMissions`` class to provide mission-specific metadata query
1325
+ functionalities. [#2095]
1326
+
1327
+ - GALEX data is now available to download anonymously from the public
1328
+ STScI S3 buckets. [#2261]
1329
+
1330
+ - Adding the All-Sky PLATO Input Catalog ('plato') as a catalog option for
1331
+ methods of ``Catalogs``. [#2279]
1332
+
1333
+ - Optional keyword arguments are now keyword only. [#2317]
1334
+
1335
+ sdss
1336
+ ^^^^
1337
+
1338
+ - Fix ``query_crossid`` for spectral data and DR17. [#2258, #2304]
1339
+
1340
+ - Fix ``query_crossid`` to be able to query larger list of coordinates. [#2305]
1341
+
1342
+ - Fix ``query_crossid`` for very old data releases (< DR10). [#2318]
1343
+
1344
+
1345
+ Infrastructure, Utility and Other Changes and Additions
1346
+ -------------------------------------------------------
1347
+
1348
+ - Remove obsolete testing tools. [#2287]
1349
+
1350
+ - Callback hooks are deleted before caching. Potentially all cached queries
1351
+ prior to this PR will be rendered invalid. [#2295]
1352
+
1353
+ utils.tap
1354
+ ^^^^^^^^^
1355
+
1356
+ - The modules that make use of the ``astroquery.utils.tap.model.job.Job`` class
1357
+ (e.g. Gaia) no longer print messages about where the results of async queries
1358
+ were written if the ``verbose`` setting is ``False``. [#2299]
1359
+
1360
+ - New method, ``rename_table``, which allows the user to rename table and
1361
+ column names. [#2077]
1362
+
1363
+
1364
+
1365
+ 0.4.5 (2021-12-24)
1366
+ ==================
1367
+
1368
+ New Tools and Services
1369
+ ----------------------
1370
+
1371
+ esa.jwst
1372
+ ^^^^^^^^^^
1373
+
1374
+ - New module to provide access to eJWST Science Archive metadata and datasets. [#2140, #2238]
1375
+
1376
+
1377
+ Service fixes and enhancements
1378
+ ------------------------------
1379
+
1380
+ eso
1381
+ ^^^
1382
+
1383
+ - Add option to retrieve_data from an earlier archive query. [#1614]
1384
+
1385
+ jplhorizons
1386
+ ^^^^^^^^^^^
1387
+
1388
+ - Fix result parsing issues by disabling caching of failed queries. [#2253]
1389
+
1390
+ sdss
1391
+ ^^^^
1392
+
1393
+ - Fix URL for individual spectrum file download in recent data releases. [#2214]
1394
+
1395
+ Infrastructure, Utility and Other Changes and Additions
1396
+ -------------------------------------------------------
1397
+
1398
+ - Adding ``--alma-site`` pytest option for testing to have a control over
1399
+ which specific site to test. [#2224]
1400
+
1401
+ - The function ``astroquery.utils.download_list_of_fitsfiles()`` has been
1402
+ deprecated. [#2247]
1403
+
1404
+ utils.tap
1405
+ ^^^^^^^^^
1406
+
1407
+ - Changing the default verbosity of TapPlus to False. [#2228]
1408
+
1409
+
1410
+ 0.4.4 (2021-11-17)
1411
+ ==================
1412
+
1413
+ New Tools and Services
1414
+ ----------------------
1415
+
1416
+ esa.esasky
1417
+ ^^^^^^^^^^
1418
+
1419
+ - Added Solar System Object functionality. [#2106]
1420
+
1421
+ ipac
1422
+ ^^^^
1423
+
1424
+ - New namespace for IPAC services. [#2131]
1425
+
1426
+ linelists.cdms
1427
+ ^^^^^^^^^^^^^^
1428
+ - Molecular line catalog query tool provides an interface to the
1429
+ Cologne Database for Molecular Spectroscopy. [#2143]
1430
+
1431
+
1432
+ Service fixes and enhancements
1433
+ ------------------------------
1434
+
1435
+ casda
1436
+ ^^^^^^
1437
+
1438
+ - Add ability to stage and download non image data which have been found
1439
+ through the CASDA obscore table. [#2158]
1440
+
1441
+ gaia
1442
+ ^^^^
1443
+
1444
+ - The bug which caused changing the ``MAIN_GAIA_TABLE`` option to have no
1445
+ effect has been fixed. [#2153]
1446
+
1447
+ ipac.ned
1448
+ ^^^^^^^^
1449
+
1450
+ - Keyword 'file_format' is added to ``get_image_list`` to enable obtaining
1451
+ links to non-fits file formats, too. [#2217]
1452
+
1453
+ jplhorizons
1454
+ ^^^^^^^^^^^
1455
+
1456
+ - Updated to use v1.0 of the new JPL Horizons API released 2021-09-15.
1457
+ Included in this update, the default reference system is changed from
1458
+ J2000 to ICRF, following API documentation. [#2154]
1459
+
1460
+ - Query ``id_type`` behavior has changed:
1461
+ * ``'majorbody'`` and ``'id'`` have been removed and the equivalent
1462
+ functionality replaced with ``None``. ``None`` implements the Horizons
1463
+ default, which is to search for major bodies first, then fall back to a
1464
+ small body search when no matches are found. Horizons does not have a
1465
+ major body only search. [#2161]
1466
+ * The default value was ``'smallbody'`` but it is now ``None``, which
1467
+ follows Horizons's default behavior. [#2161]
1468
+
1469
+ - Fix changes in column names that resulted KeyErrors. [#2202]
1470
+
1471
+ jplspec
1472
+ ^^^^^^^
1473
+
1474
+ - JPLSpec now raises an EmptyResponseError if the returned result is empty.
1475
+ The API for JPLspec's ``lookup_table.find`` function returns a dictionary
1476
+ instead of values (for compatibility w/CDMS). [#2144]
1477
+
1478
+ simbad
1479
+ ^^^^^^
1480
+
1481
+ - Fix result parsing issues by disabling caching of failed queries. [#2187]
1482
+
1483
+ - Fix parsing of non-ascii bibcode responses. [#2200]
1484
+
1485
+ splatalogue
1486
+ ^^^^^^^^^^^
1487
+
1488
+ - Splatalogue table merging can now handle unmasked columns. [#2136]
1489
+
1490
+ vizier
1491
+ ^^^^^^
1492
+
1493
+ - It is now possible to specify 'galatic' centers in region queries to
1494
+ have box queries oriented along the galactic axes. [#2152]
1495
+
1496
+
1497
+ Infrastructure, Utility and Other Changes and Additions
1498
+ -------------------------------------------------------
1499
+
1500
+ - Versions of astropy <4 and numpy <1.16 are no longer supported. [#2163]
1501
+
1502
+ ipac
1503
+ ^^^^
1504
+
1505
+ - As part of the namespace restructure, now modules for the IPAC archives are
1506
+ avalable as: ``ipac.irsa``, ``ipac.ned``, and ``ipac.nexsci``.
1507
+ Additional services have also been moved to their parent organisations'
1508
+ namespace. Acces from the top namespace have been deprecated for the
1509
+ following modules: ``ibe``, ``irsa``, ``irsa_dust``,
1510
+ ``nasa_exoplanet_archive``, ``ned``, ``sha``. [#2131]
1511
+
1512
+
1513
+ 0.4.3 (2021-07-07)
1514
+ ==================
1515
+
1516
+ New Tools and Services
1517
+ ----------------------
1518
+
1519
+ esa.esasky
1520
+ ^^^^^^^^^^
1521
+
1522
+ - Download by observation id or source name. [#2078]
1523
+
1524
+ - Added custom ADQL and TAP+ functionality. [#2078]
1525
+
1526
+ - Enabled download of INTEGRAL data products. [#2105]
1527
+
1528
+ esa.hubble
1529
+ ^^^^^^^^^^
1530
+
1531
+ - Module added to perform a cone search based on a set of criteria. [#1855]
1532
+
1533
+ esa.xmm_newton
1534
+ ^^^^^^^^^^^^^^
1535
+
1536
+ - Adding the extraction epic light curves and spectra. [#2017]
1537
+
1538
+ heasarc
1539
+ ^^^^^^^
1540
+
1541
+ - Add alternative instance of HEASARC Server, maintained by
1542
+ INTEGRAL Science Data Center. [#1988]
1543
+
1544
+ nasa_exoplanet_archive
1545
+ ^^^^^^^^^^^^^^^^^^^^^^
1546
+
1547
+ - Making module compatible with the NASA Exoplanet Archive 2.0 using TAP.
1548
+ release. Support for querying old tables (exoplanets, compositepars, and
1549
+ exomultpars) has been dropped. [#2067]
1550
+
1551
+
1552
+ Service fixes and enhancements
1553
+ ------------------------------
1554
+
1555
+ atomic
1556
+ ^^^^^^
1557
+
1558
+ - Change URL to https. [#2088]
1559
+
1560
+ esa.xmm_newton
1561
+ ^^^^^^^^^^^^^^
1562
+
1563
+ - Fixed the generation of files with wrong extension. [#2017]
1564
+
1565
+ - Use astroquery downloader tool to get progressbar, caching, and prevent
1566
+ memory leaks. [#2087]
1567
+
1568
+ gaia
1569
+ ^^^^
1570
+
1571
+ - Changed default of Gaia TAP Plus interface to instantiate silently. [#2085]
1572
+
1573
+ heasarc
1574
+ ^^^^^^^
1575
+
1576
+ - Added posibility to query limited time range. [#1988]
1577
+
1578
+ ibe
1579
+ ^^^
1580
+
1581
+ - Doubling default timeout to 120 seconds. [#2108]
1582
+
1583
+ - Change URL to https. [#2108]
1584
+
1585
+ irsa
1586
+ ^^^^
1587
+
1588
+ - Adding ``cache`` kwarg to the class methods to be able to control the use
1589
+ of local cache. [#2092]
1590
+
1591
+ - Making optional kwargs keyword only. [#2092]
1592
+
1593
+ sha
1594
+ ^^^
1595
+
1596
+ - Change URL to https. [#2108]
1597
+
1598
+ - A ``NoResultsWarning`` is now returned when there is return of any empty
1599
+ table. [#1837]
1600
+
1601
+
1602
+ Infrastructure, Utility and Other Changes and Additions
1603
+ -------------------------------------------------------
1604
+
1605
+ - Fixed progressbar download to report the correct downloaded amount. [#2091]
1606
+
1607
+ - Dropping Python 3.6 support. [#2102]
1608
+
1609
+
1610
+ 0.4.2 (2021-05-14)
1611
+ ==================
1612
+
1613
+ New Tools and Services
1614
+ ----------------------
1615
+
1616
+ cds.hips2fits
1617
+ ^^^^^^^^^^^^^
1618
+
1619
+ - New module HIPS2fits to provide access to fits/jpg/png image cutouts from a
1620
+ HiPS + a WCS. [#1734]
1621
+
1622
+ esa.iso
1623
+ ^^^^^^^
1624
+
1625
+ - New module to access ESA ISO mission. [#1914]
1626
+
1627
+ esa.xmm_newton
1628
+ ^^^^^^^^^^^^^^
1629
+
1630
+ - New method ``get_epic_images`` is added to extract EPIC images from
1631
+ tarballs. [#1759]
1632
+
1633
+ - New method ``get_epic_metadata`` is added to download EPIC sources
1634
+ metadata. [#1814]
1635
+
1636
+ mast
1637
+ ^^^^
1638
+
1639
+ - Added Zcut functionality to astroquery [#1911]
1640
+
1641
+ svo_fps
1642
+ ^^^^^^^
1643
+
1644
+ - New module to access the Spanish Virtual Observatory Filter Profile List. [#1498]
1645
+
1646
+
1647
+ Service fixes and enhancements
1648
+ ------------------------------
1649
+
1650
+ alma
1651
+ ^^^^
1652
+
1653
+ - The archive query interface has been deprecated in favour of
1654
+ VirtualObservatory (VO) services such as TAP, ObsCore etc. The alma
1655
+ library has been updated accordingly. [#1689]
1656
+
1657
+ - ALMA queries using string representations will now convert to appropriate
1658
+ coordinates before being sent to the server; previously they were treated as
1659
+ whatever unit they were presented in. [#1867]
1660
+
1661
+ - Download mechanism uses the ALMA Datalink service that allows exploring and
1662
+ downloading entire tarball package files or just part of their
1663
+ content. [#1820]
1664
+
1665
+ - Fixed bug in ``get_data_info`` to ensure relevant fields are strings. [#2022]
1666
+
1667
+ esa.esasky
1668
+ ^^^^^^^^^^
1669
+
1670
+ - All ESASky spectra now accessible. [#1909]
1671
+
1672
+ - Updated ESASky module for version 3.5 of ESASky backend. [#1858]
1673
+
1674
+ - Added row limit parameter for map queries. [#1858]
1675
+
1676
+ esa.hubble
1677
+ ^^^^^^^^^^
1678
+
1679
+ - Module added to query eHST TAP based on a set of specific criteria and
1680
+ asynchronous jobs are now supported. [#1723]
1681
+
1682
+ gaia
1683
+ ^^^^
1684
+ - Fixed RA/dec table edit capability. [#1784]
1685
+
1686
+ - Changed file names handling when downloading data. [#1784]
1687
+
1688
+ - Improved code to handle bit data type. [#1784]
1689
+
1690
+ - Prepared code to handle new datalink products. [#1784]
1691
+
1692
+ gemini
1693
+ ^^^^^^
1694
+
1695
+ - ``login()`` method to support authenticated sessions to the GOA. [#1780]
1696
+
1697
+ - ``get_file()`` to support downloading files. [#1780]
1698
+
1699
+ - fix syntax error in ``query_criteria()`` [#1823]
1700
+
1701
+ - If QA and/or engineering parameters are explicitly passed, remove the
1702
+ defaults of ``notengineering`` and/or ``NotFail``. [#2000]
1703
+
1704
+ - Smarter defaulting of radius to None unless coordinates are specified, in
1705
+ which case defaults to 0.3 degrees. [#1998]
1706
+
1707
+ heasarc
1708
+ ^^^^^^^
1709
+
1710
+ - A ``NoResultsWarning`` is now returned when there is no matching rows were
1711
+ found in query. [#1829]
1712
+
1713
+ irsa
1714
+ ^^^^
1715
+
1716
+ - Used more specific exceptions in IRSA. [#1854]
1717
+
1718
+ jplsbdb
1719
+ ^^^^^^^
1720
+
1721
+ - Returns astropy quantities, rather than scaled units. [#2011]
1722
+
1723
+ lcogt
1724
+ ^^^^^
1725
+
1726
+ - Module has been removed after having been defunct due to upstream API
1727
+ refactoring a few years ago. [#2071]
1728
+
1729
+ mast
1730
+ ^^^^
1731
+
1732
+ - Added ``Observations.download_file`` method to download a single file from
1733
+ MAST given an input data URI. [#1825]
1734
+
1735
+ - Added case for passing a row to ``Observations.download_file``. [#1881]
1736
+
1737
+ - Removed deprecated methods: ``Observations.get_hst_s3_uris()``,
1738
+ ``Observations.get_hst_s3_uri()``, ``Core.get_token()``,
1739
+ ``Core.enable_s3_hst_dataset()``, ``Core.disable_s3_hst_dataset()``; and
1740
+ parameters: ``obstype`` and ``silent``. [#1884]
1741
+
1742
+ - Fixed error causing empty products passed to ``Observations.get_product_list()``
1743
+ to yeild a non-empty result. [#1921]
1744
+
1745
+ - Changed AWS cloud access from RequesterPays to anonymous acces. [#1980]
1746
+
1747
+ - Fixed error with download of Spitzer data. [#1994]
1748
+
1749
+ sdss
1750
+ ^^^^
1751
+
1752
+ - Fix validation of field names. [#1790]
1753
+
1754
+ splatalogue
1755
+ ^^^^^^^^^^^
1756
+
1757
+ - The Splatalogue ID querying is now properly cached in the astropy cache
1758
+ directory. The scraping function has also been updated to reflect
1759
+ the Splatalogue webpage. [#1772]
1760
+
1761
+ - The splatalogue URL has changed to https://splatalogue.online, as the old site
1762
+ stopped functioning in September 2020 [#1817]
1763
+
1764
+ ukidss
1765
+ ^^^^^^
1766
+
1767
+ - Updated to ``UKIDSSDR11PLUS`` as the default data release. [#1767]
1768
+
1769
+ vamdc
1770
+ ^^^^^
1771
+
1772
+ - Deprecate module due to upstream library dependence and compability
1773
+ issues. [#2070]
1774
+
1775
+ vizier
1776
+ ^^^^^^
1777
+
1778
+ - Refactor module to support list of coordinates as well as several fixes to
1779
+ follow changes in upstream API. [#2012]
1780
+
1781
+
1782
+ Infrastructure, Utility and Other Changes and Additions
1783
+ -------------------------------------------------------
1784
+
1785
+ - HTTP requests and responses can now be logged when the astropy
1786
+ logger is set to level "DEBUG" and "TRACE" respectively. [#1992]
1787
+
1788
+ - Astroquery and all its modules now uses a logger similar to Astropy's. [#1992]
1789
+
1790
+
1791
+ 0.4.1 (2020-06-19)
1792
+ ==================
1793
+
1794
+ New Tools and Services
1795
+ ----------------------
1796
+
1797
+ esa.xmm_newton
1798
+ ^^^^^^^^^^^^^^
1799
+
1800
+ - A new ESA archive service for XMM-Newton access. [#1557]
1801
+
1802
+ image_cutouts.first
1803
+ ^^^^^^^^^^^^^^^^^^^
1804
+
1805
+ - Module added to access FIRST survey radio images. [#1733]
1806
+
1807
+ noirlab
1808
+ ^^^^^^^
1809
+
1810
+ - Module added to access the NOIRLab (formally NOAO) archive. [#1638]
1811
+
1812
+
1813
+ Service fixes and enhancements
1814
+ ------------------------------
1815
+
1816
+ alma
1817
+ ^^^^
1818
+
1819
+ - A new API was deployed in late February / early March 2020, requiring a
1820
+ refactor. The user-facing API should remain mostly the same, but some
1821
+ service interruption may have occurred. Note that the ``stage_data`` column
1822
+ ``uid`` has been renamed ``mous_uid``, which is a technical correction, and
1823
+ several columns have been added. [#1644, #1665, #1683]
1824
+
1825
+ - The contents of tarfiles can be shown with the ``expand_tarfiles`` keyword
1826
+ to ``stage_data``. [#1683]
1827
+
1828
+ - Bugfix: when accessing private data, auth credentials were not being passed
1829
+ to the HEAD request used to acquire header data. [#1698]
1830
+
1831
+ casda
1832
+ ^^^^^
1833
+
1834
+ - Add ability to stage and download ASKAP data. [#1706]
1835
+
1836
+ cadc
1837
+ ^^^^
1838
+
1839
+ - Fixed authentication and enabled listing of async jobs. [#1712]
1840
+
1841
+ eso
1842
+ ^^^
1843
+
1844
+ - New ``unzip`` parameter to control uncompressing the retrieved data. [#1642]
1845
+
1846
+ gaia
1847
+ ^^^^
1848
+ - Allow for setting row limits in query submissions through class
1849
+ attribute. [#1641]
1850
+
1851
+ gemini
1852
+ ^^^^^^
1853
+
1854
+ - Allow for additional search terms to be sent to query_criteria and passed to
1855
+ the raw web query against the Gemini Archive. [#1659]
1856
+
1857
+ jplhorizons
1858
+ ^^^^^^^^^^^
1859
+
1860
+ - Fix for changes in HORIZONS return results after their 2020 Feb 12
1861
+ update. [#1650]
1862
+
1863
+ nasa_exoplanet_archive
1864
+ ^^^^^^^^^^^^^^^^^^^^^^
1865
+
1866
+ - Update the NASA Exoplanet Archive interface to support all tables available
1867
+ through the API. The standard astroquery interface is now implemented via the
1868
+ ``query_*[_async]`` methods. [#1700]
1869
+
1870
+ nrao
1871
+ ^^^^
1872
+
1873
+ - Fixed passing ``project_code`` to the query [#1720]
1874
+
1875
+ vizier
1876
+ ^^^^^^
1877
+
1878
+ - It is now possible to specify constraints to ``query_region()``
1879
+ with the ``column_filters`` keyword. [#1702]
1880
+
1881
+
1882
+ Infrastructure, Utility and Other Changes and Additions
1883
+ -------------------------------------------------------
1884
+
1885
+ - Versions of astropy <3.1 are no longer supported. [#1649]
1886
+
1887
+ - Fixed a bug that would prevent the TOP statement from being properly added
1888
+ to a TAP query containing valid '\n'. The bug was revealed by changes to
1889
+ the gaia module, introduced in version 0.4. [#1680]
1890
+
1891
+ - Added new ``json`` keyword to BaseQuery requests. [#1657]
1892
+
1893
+
1894
+ 0.4 (2020-01-24)
1895
+ ================
1896
+
1897
+ New Tools and Services
1898
+ ----------------------
1899
+
1900
+ casda
1901
+ ^^^^^
1902
+
1903
+ - Module added to access data from the CSIRO ASKAP Science Data Archive. [#1505]
1904
+
1905
+ dace
1906
+ ^^^^
1907
+
1908
+ - Added DACE Service. See DACE website for details. [#1370]
1909
+
1910
+ gemini
1911
+ ^^^^^^
1912
+
1913
+ - Module added to access the Gemini archive. [#1596]
1914
+
1915
+
1916
+ Service fixes and enhancements
1917
+ ------------------------------
1918
+
1919
+ gaia
1920
+ ^^^^
1921
+ - Add optional 'columns' parameter to select specific columns. [#1548]
1922
+
1923
+ imcce
1924
+ ^^^^^
1925
+
1926
+ - Fix Skybot return for unumbered asteroids. [#1598]
1927
+
1928
+ jplhorizons
1929
+ ^^^^^^^^^^^
1930
+
1931
+ - Fix for changes in HORIZONS return results after their 2020 Jan 21 update. [#1620]
1932
+
1933
+ mast
1934
+ ^^^^
1935
+
1936
+ - Add Kepler to missions with cloud support,
1937
+ Update ``get_cloud_uri`` so that if a file is not found it produces a warning
1938
+ and returns None rather than throwing an exception. [#1561]
1939
+
1940
+ nasa_exoplanet_archive
1941
+ ^^^^^^^^^^^^^^^^^^^^^^
1942
+ - Redefined the query API so as to prevent downloading of the whole database.
1943
+ Added two functions ``query_planet`` (to query for a specific exoplanet), and
1944
+ ``query_star`` (to query for all exoplanets under a specific stellar system) [#1606]
1945
+
1946
+
1947
+
1948
+ splatalogue
1949
+ ^^^^^^^^^^^
1950
+
1951
+ - Added new 'only_astronomically_observed' option. [#1600]
1952
+
1953
+ vo_conesearch
1954
+ ^^^^^^^^^^^^^
1955
+
1956
+ - ``query_region()`` now accepts ``service_url`` keyword and uses
1957
+ ``conf.pedantic`` and ``conf.timeout`` directly. As a result, ``URL``,
1958
+ ``PEDANTIC``, and ``TIMEOUT`` class attributes are no longer needed, so
1959
+ they are removed from ``ConeSearchClass`` and ``ConeSearch``. [#1528]
1960
+
1961
+ - The classic API ``conesearch()`` no longer takes ``timeout`` and ``pedantic``
1962
+ keywords. It uses ``conf.pedantic`` and ``conf.timeout`` directly. [#1528]
1963
+
1964
+ - Null result now emits warning instead of exception. [#1528]
1965
+
1966
+ - Result is now returned as ``astropy.table.Table`` by default. [#1528]
1967
+
1968
+
1969
+ Infrastructure, Utility and Other Changes and Additions
1970
+ -------------------------------------------------------
1971
+
1972
+ utils
1973
+ ^^^^^
1974
+
1975
+ - Added timer functions. [#1508]
1976
+
1977
+
1978
+ 0.3.10 (2019-09-19)
1979
+ ===================
1980
+
1981
+ New Tools and Services
1982
+ ----------------------
1983
+
1984
+ astrometry_net
1985
+ ^^^^^^^^^^^^^^
1986
+
1987
+ - Module added to interface to astrometry.net plate-solving service. [#1163]
1988
+
1989
+ cadc
1990
+ ^^^^
1991
+
1992
+ - Module added to access data at the Canadian Astronomy Data Centre. [#1354, #1486]
1993
+
1994
+ esa
1995
+ ^^^
1996
+
1997
+ - Module added ``hubble`` for accessing the ESA Hubble Archive. [#1373, #1534]
1998
+
1999
+ gaia
2000
+ ^^^^
2001
+
2002
+ - Added tables sharing, tables edition, upload from pytable and job results,
2003
+ cross match, data access and datalink access. [#1266]
2004
+
2005
+ imcce
2006
+ ^^^^^
2007
+
2008
+ - Service ``miriade`` added, querying asteroid and comets ephemerides. [#1353]
2009
+
2010
+ - Service ``skybot`` added, identifying Solar System objects in a given
2011
+ field at a given epoch. [#1353]
2012
+
2013
+ mast
2014
+ ^^^^
2015
+
2016
+ - Addition of observation metadata query. [#1473]
2017
+
2018
+ - Addition of catalogs.MAST PanSTARRS catalog queries. [#1473]
2019
+
2020
+ mpc
2021
+ ^^^
2022
+
2023
+ - Functionality added to query observations database. [#1350]
2024
+
2025
+
2026
+ Service fixes and enhancements
2027
+ ------------------------------
2028
+
2029
+ alma
2030
+ ^^^^
2031
+
2032
+ - Fix some broken VOtable returns and a broken login URL. [#1369]
2033
+
2034
+ - ``get_project_metadata()`` is added to query project metadata. [#1147]
2035
+
2036
+ - Add access to the ``member_ous_id`` attribute. [#1316]
2037
+
2038
+ cds
2039
+ ^^^
2040
+
2041
+ - Apply MOCPy v0.5.* API changes. [#1343]
2042
+
2043
+ eso
2044
+ ^^^
2045
+
2046
+ - Try to re-authenticate when logged out from the ESO server. [#1315]
2047
+
2048
+ heasarc
2049
+ ^^^^^^^
2050
+
2051
+ - Fixing error handling to filter out only the query errors. [#1338]
2052
+
2053
+ jplhorizons
2054
+ ^^^^^^^^^^^
2055
+
2056
+ - Add ``refplane`` keyword to ``vectors_async`` to return data for different
2057
+ available reference planes. [#1335]
2058
+
2059
+ - Vector queries provide different aberrations, ephemerides queries provide
2060
+ extra precision option. [#1478]
2061
+
2062
+ - Fix crash when precision to the second on epoch is requested. [#1488]
2063
+
2064
+ - Fix for missing H, G values. [#1333]
2065
+
2066
+ jplsbdb
2067
+ ^^^^^^^
2068
+
2069
+ - Fix for missing values. [#1333]
2070
+
2071
+ mast
2072
+ ^^^^
2073
+
2074
+ - Update query_criteria keyword obstype->intentType. [#1366]
2075
+
2076
+ - Remove deprecated authorization code, fix unit tests, general code cleanup,
2077
+ documentation additions. [#1409]
2078
+
2079
+ - TIC catalog search update. [#1483]
2080
+
2081
+ - Add search by object name to Tesscut, make resolver_object public, minor bugfixes. [#1499]
2082
+
2083
+ - Add option to query TESS Candidate Target List (CTL) Catalog. [#1503]
2084
+
2085
+ - Add verbose keyword for option to silence logger info and warning about S3
2086
+ in enable_cloud_dataset(). [#1536]
2087
+
2088
+ nasa_ads
2089
+ ^^^^^^^^
2090
+
2091
+ - Fix an error in one of the default keys, citations->citation. [#1337]
2092
+
2093
+ nist
2094
+ ^^^^
2095
+
2096
+ - Fixed an upstream issue where js was included in returned data. [#1359]
2097
+
2098
+ - Unescape raw HTML codes in returned data back into Unicode equivalents to
2099
+ stop them silently breaking Table parsing. [#1431]
2100
+
2101
+ nrao
2102
+ ^^^^
2103
+
2104
+ - Fix parameter validation allowing for hybrid telescope configuration. [#1283]
2105
+
2106
+ sdss
2107
+ ^^^^
2108
+
2109
+ - Update to SDSS-IV URLs and general clean-up. [#1308]
2110
+
2111
+ vizier
2112
+ ^^^^^^
2113
+
2114
+ - Support using the output values of ``find_catalog`` in ``get_catalog``. [#603]
2115
+
2116
+ - Fix to ensure to fall back on the default catalog when it's not provided as
2117
+ part of the query method. [#1328]
2118
+
2119
+ - Fix swapped width and length parameters. [#1406]
2120
+
2121
+ xmatch
2122
+ ^^^^^^
2123
+
2124
+ - Add parameter ``area`` to restrict sky region considered. [#1476]
2125
+
2126
+
2127
+ Infrastructure, Utility and Other Changes and Additions
2128
+ -------------------------------------------------------
2129
+
2130
+ - HTTP user-agent now has the string ``_testrun`` in the version number of astroquery,
2131
+ for queries triggered by testing. [#1307]
2132
+
2133
+ - Adding deprecation decorators to ``utils`` from astropy to be used while we
2134
+ support astropy <v3.1.2. [#1435]
2135
+
2136
+ - Added tables sharing, tables edition, upload from pytable and job results,
2137
+ data access and datalink access to ``utils.tap``. [#1266]
2138
+
2139
+ - Added a new ``astroquery.__citation__`` and ``astroquery.__bibtex__``
2140
+ attributes which give a citation for astroquery in bibtex format. [#1391]
2141
+
2142
+
2143
+
2144
+ 0.3.9 (2018-12-06)
2145
+ ==================
2146
+
2147
+ - New tool: MPC module can now request comet and asteroid ephemerides from the
2148
+ Minor Planet Ephemeris Service, and return a table of observatory codes and
2149
+ coordinates. [#1177]
2150
+ - New tool ``CDS``: module to query the MOCServer, a CDS tool providing MOCs
2151
+ and meta data of various data-sets. [#1111]
2152
+ - New tool ``JPLSDB``: New module for querying JPL's Small Body Database
2153
+ Browser [#1214]
2154
+
2155
+ - ATOMIC: fix several bugs for using Quantities for the range parameters.
2156
+ [#1187]
2157
+ - CADC: added the get_collections method. [#1482]
2158
+ - ESASKY: get_maps() accepts dict or list of (name, Table) pairs as input
2159
+ table list. [#1167]
2160
+ - ESO: Catch exception on login when keyring fails to get a valid storage.
2161
+ [#1198]
2162
+ - ESO: Add option to retrieve calibrations associated to data. [#1184]
2163
+ - FERMI: Switch to HTTPS [#1241]
2164
+ - IRSA: Added ``selcols`` keyword. [#1296]
2165
+ - JPLHorizons: Fix for missing total absolute magnitude or phase coefficient
2166
+ for comets [#1151]
2167
+ - JPLHorizons: Fix queries for major solar system bodies when sub-observer or
2168
+ sub-solar positions are requested. [#1268]
2169
+ - JPLHorizons: Fix bug with airmass column. [#1284]
2170
+ - JPLSpec: New query service for JPL Molecular Spectral Catalog. [#1170]
2171
+ - JPLHorizons: JPL server protocol and epoch range bug fixes, user-defined
2172
+ location and additional ephemerides information added [#1207]
2173
+ - HITRAN: use class-based API [#1028]
2174
+ - MAST: Enable converting list of products into S3 uris [#1126]
2175
+ - MAST: Adding Tesscut interface for accessing TESS cutouts. [#1264]
2176
+ - MAST: Add functionality for switching to auth.mast when it goes live [#1256]
2177
+ - MAST: Support downloading data from multiple missions from the cloud [#1275]
2178
+ - MAST: Updating HSC and Gaia catalog calls (bugfix) [#1203]
2179
+ - MAST: Fixing bug in catalog criteria queries, and updating remote tests.
2180
+ [#1223]
2181
+ - MAST: Fixing mrp_only but and changing default to False [#1238]
2182
+ - MAST: TESS input catalog bugfix [#1297]
2183
+ - NASA_ADS: Use new API [#1162]
2184
+ - Nasa Exoplanet Arhive: Add option to return all columns. [#1183]
2185
+ - SPLATALOGUE: Minor - utils & tests updated to match upstream change [#1236]
2186
+ - utils.tap: Fix Gaia units. [#1161]
2187
+ - VO_CONESEARCH: Service validator now uses new STScI VAO TAP registry. [#1114]
2188
+ - WFAU: Added QSL constraints parameter [#1259]
2189
+ - XMATCH: default timeout has changed from 60s to 300s. [#1137]
2190
+
2191
+ - Re-enable sandboxing / preventing internet access during non-remote tests,
2192
+ which has been unintentionally disabled for a potentially long time. [#1274]
2193
+ - File download progress bar no longer displays when Astropy log level is set
2194
+ to "WARNING", "ERROR", or "CRITICAL". [#1188]
2195
+ - utils: fix bug in ``parse_coordinates``, now strings that can be interpreted
2196
+ as coordinates are not sent through Sesame. When unit is not provided,
2197
+ degrees is now explicitely assumed. [#1252]
2198
+ - JPLHorizons: fix for #1201 issue in elements() and vectors(), test added
2199
+ - JPLHorizons: fix for missing H, G values [#1332]
2200
+ - JPLHorizons: warn if URI is longer than 2000 chars, docs updated
2201
+ - JPLSBDB: fix for missing value, test added
2202
+
2203
+
2204
+ 0.3.8 (2018-04-27)
2205
+ ==================
2206
+
2207
+ - New tool ``jplhorizons``: JPL Horizons service to obtain ephemerides,
2208
+ orbital elements, and state vectors for Solar System objects. [#1023]
2209
+ - New tool ``mpc``: MPC Module to query the Minor Planet Center web service.
2210
+ [#1064, #1077]
2211
+ - New tool ``oac``: Open Astronomy Catalog API to obtain data products on
2212
+ supernovae, TDEs, and kilonovae. [#1053]
2213
+ - New tool ``wfau`` and ``vsa``: Refactor of the UKIDSS query tool add full
2214
+ WFAU support. [#984]
2215
+ - ALMA: Adding support for band and polarization selection. [#1108]
2216
+ - HEASARC: Add additional functionality and expand query capabilities. [#1047]
2217
+ - GAIA: Default URL switched to DR2 and made configurable. [#1112]
2218
+ - IRSA: Raise exceptions for exceeding output table size limit. [#1032]
2219
+ - IRSA_DUST: Call over https. [#1069]
2220
+ - LAMDA: Fix writer for Windows on Python 3. [#1059]
2221
+ - MAST: Removing filesize checking due to unreliable filesize reporting in
2222
+ the database. [#1050]
2223
+ - MAST: Added Catalogs class. [#1049]
2224
+ - MAST: Enable downloading MAST HST data from S3. [#1040]
2225
+ - SPLATALOGUE: Move to https as old HTTP post requests were broken. [#1076]
2226
+ - UKIDSS: Update to DR10 as default database. [#984]
2227
+ - utils.TAP: Add tool to check for phase of background job. [#1073]
2228
+ - utils.TAP: Added redirect handling to sync jobs. [#1099]
2229
+ - utils.TAP: Fix jobsIDs assignment. [#1105]
2230
+ - VO_CONESEARCH: URL for validated services have changed. Old URL should still
2231
+ redirect but it is deprecated. [#1033]
2232
+
2233
+ 0.3.7 (2018-01-25)
2234
+ ==================
2235
+
2236
+ - New tool: Exoplanet Orbit Catalog, NASA Exoplanet Archive [#771]
2237
+ - ESO: The upstream API changed. We have adapted. [#970]
2238
+ - ESO: Added 'destination' keyword to Eso.retrieve_data(), to download files
2239
+ to a specific location (other than the cache). [#976]
2240
+ - ESO: Fixed Eso.query_instrument() to use instrument specific query forms
2241
+ (it was using the main form before). [#976]
2242
+ - ESO: Implemented Eso.query_main() to query all instruments with the main form
2243
+ (even the ones without a specific form). [#976]
2244
+ - ESO: Disabled caching for all Eso.retrieve_data() operations. [#976]
2245
+ - ESO: Removed deprecated Eso.data_retrieval() and Eso.query_survey().
2246
+ Please use Eso.retrieve_data() and Eso.query_surveys() instead. [#1019]
2247
+ - ESO: Added configurable URL. [#1017]
2248
+ - ESO: Fixed string related bugs. [#981]
2249
+ - MAST: Added convenience function to list available missions. [#947]
2250
+ - MAST: Added login capabilities [#982]
2251
+ - MAST: Updated download functionality [#1004]
2252
+ - MAST: Fixed no results bug [#1003]
2253
+ - utils.tap: Made tkinter optional dependency. [#983]
2254
+ - utils.tap: Fixed a bug in load_tables. [#990]
2255
+ - vo_conesearch: Fixed bad query for service that cannot accept '&&'
2256
+ in URL. [#993]
2257
+ - vo_conesearch: Removed broken services from default list. [#997, #1002]
2258
+ - IRSA Dust: fix units in extinction by band table. [#1016]
2259
+ - IRSA: Updated links that switched to use https. [#1010]
2260
+ - NRAO: Allow multiple configurations, telescopes in queries [#1020]
2261
+ - SIMBAD: adding 'get_query_payload' kwarg to all public methods to return
2262
+ the request parameters. [#962]
2263
+ - CosmoSim: Fixed login service. [#999]
2264
+ - utils: upgrade ``prepend_docstr_noreturns`` to work with multiple
2265
+ sections, and thus rename it to ``prepend_docstr_nosections``. [#988]
2266
+ - Vizier: find_catalogs will now respect UCD specifications [#1000]
2267
+ - ATOMIC: Added ability to select which rows are returned from the atomic
2268
+ line database. [#1006]
2269
+ - ESASKY: Added Windows support, various bugfixes. [#1001, #977]
2270
+ - GAMA: Updated to use the newer DR3 release. [#1005]
2271
+
2272
+ 0.3.6 (2017-07-03)
2273
+ ==================
2274
+
2275
+ - New tool: MAST - added module to access the Barbara A. Mikulski Archive
2276
+ for Space Telescopes. [#920, #937]
2277
+ - LAMDA: Add function to write LAMDA-formatted Tables to a datafile. [#887]
2278
+ - ALMA: Fix to queries and tests that were broken by changes in the archive.
2279
+ Note that as of April 2017, the archive is significantly broken and missing
2280
+ many data sets. [#888]
2281
+ - SIMBAD: "dist" is now available as a valid votable field. [#849]
2282
+ Additional minor fixes. [#932,#892]
2283
+ - SHA: fix bug with the coordinate handling. [#885]
2284
+ - ``turn_off_internet`` and ``turn_on_internet`` is not available any more
2285
+ from the main ``utils`` namespace, use them directly from
2286
+ ``utils.testing_tools``. [#940]
2287
+ - Added the 'verify' kwarg to ``Astroquery.request`` to provide a workaround
2288
+ for services that have HTTPS URLs but missing certificates. [#928]
2289
+
2290
+ 0.3.5 (2017-03-29)
2291
+ ==================
2292
+
2293
+ - New tool: Gaia - added module to access the European Space Agency Gaia
2294
+ Archive. [#836]
2295
+ - New tool: VO Cone Search - added module to access Virtual Observatory's
2296
+ Simple Cone Search. This is ported from ``astropy.vo``. [#859]
2297
+ - New utility: TAP/TAP+ - added Table Access Protocol utility and the ESAC
2298
+ Science Data Centre (ESDC) extension. [#836]
2299
+ - Fix VizieR to respect specification to return default columns only [#792]
2300
+ - SIMBAD queries allow multiple configurable parameters [#820]
2301
+ - Add a capability to resume partially-completed downloads for services that
2302
+ support the http 'range' keyword. Currently applied to ESO and ALMA
2303
+ [#812,#876]
2304
+ - SIMBAD now supports vectorized region queries. A list of coordinates can be
2305
+ sent to SIMBAD simultaneously. Users will also be warned if they submit
2306
+ queries with >10000 entries, which is the SIMBAD-recommended upper limit.
2307
+ Also, SIMBAD support has noted that any IP submitting >6 queries/second
2308
+ will be soft-banned, so we have added a warning to this effect in the
2309
+ documentation [#833]
2310
+ - ALMA: Fix to always use https as the archive now requires it. [#814, #828]
2311
+ - ESASky: Fix various issues related to remote API changes. [#805, #817]
2312
+ - ESASky: Corrected Herschel filter indexing. [#844]
2313
+ - ESO: Fix picking issue with simple ``query_survey()`` queries. [#801]
2314
+ - ESO: Fix FEROS and HARPS instrument queries. [#840]
2315
+ - NRAO: Change default radius from 1 degree to 1 arcmin. [#813]
2316
+
2317
+ 0.3.4 (2016-11-21)
2318
+ ==================
2319
+
2320
+ - New tool: basic HITRAN queries support [#617]
2321
+ - Fix #737, an issue with broken ALMA archive tables, via a hack [#775]
2322
+ - Correct HEASARC tool, which was sending incorrect data to the server [#774]
2323
+ - Fix NIST issue #714 which led to badly-parsed tables [#773]
2324
+ - NRAO archive tool allows user logins and HTML-based queries [#767, #780]
2325
+ - ALMA allows kwargs as input, and various small fixes [#785, #790, #782]
2326
+ - XMatch caching bug fixed [#789]
2327
+ - Various fixes to ESASky [#779, #772, #770]
2328
+ - New tool: VAMDC-cdms interface [#658]
2329
+ - Fix issue with exclude keyword in Splatalogue queries [#616]
2330
+
2331
+ 0.3.3 (2016-10-11)
2332
+ ==================
2333
+
2334
+ - Option to toggle the display of the download bar [#734]
2335
+ - ESASKY - added new module for querying the ESASKY archive [#758, #763, #765]
2336
+ - Refactor Splatalogue and XMatch to use the caching [#747, #751]
2337
+ - Minor data updates to Splatalogue [#746, #754, #760]
2338
+ - Fix parsing bug for ``_parse_radius`` in Simbad [#753]
2339
+ - Multiple fixes to ensure Windows compatibility [#709, #726]
2340
+ - Minor fixes to ESO to match upstream form changes [#729]
2341
+
2342
+ 0.3.2 (2016-06-10)
2343
+ ==================
2344
+
2345
+ - Update ESO tool to work with new web API [#696]
2346
+ - Added new instruments for ESO: ``ambient_paranal`` and ``meteo_paranal``
2347
+ [#657]
2348
+ - Fix problem with listed votable fields being truncated in SIMBAD [#654]
2349
+ - SDSS remote API fixes [#690]
2350
+ - ALMA file downloader will skip over, rather than crashing on, access denied
2351
+ (HTTP 401) errors [#687]
2352
+ - Continued minor ALMA fixes [#655,#672,#687,#688]
2353
+ - Splatalogue export limit bugfix [#673]
2354
+ - SIMBAD flux_quality flag corrected to flux_qual [#680]
2355
+ - VIZIER add a flag to return the query payload for debugging [#668]
2356
+
2357
+ 0.3.1 (2016-01-19)
2358
+ ==================
2359
+
2360
+ - Fix bug in xmatch service that required astropy tables to have exactly 2
2361
+ columns on input [#641]
2362
+ - Fix NASA ADS, which had an internal syntax error [#602]
2363
+ - Bugfix in NRAO queries: telescope config was parsed incorrectly [#629]
2364
+ - IBE - added new module for locating data from PTF, WISE, and 2MASS from IRSA.
2365
+ See <https://irsa.ipac.caltech.edu:443/ibe/> for more information about IBE and
2366
+ <https://www.ptf.caltech.edu/page/ibe> for more information about PTF survey
2367
+ data in particular. [#450]
2368
+
2369
+ 0.3.0 (2015-10-26)
2370
+ ==================
2371
+
2372
+ - Fix ESO APEX project ID keyword [#591]
2373
+ - Fix ALMA queries when accessing private data [#601]
2374
+ - Allow data downloads to use the cache [#601]
2375
+
2376
+ 0.2.6 (2015-07-23)
2377
+ ==================
2378
+
2379
+ - ESO bugfixes for handling radio buttons [#560]
2380
+ - ESO: added SPHERE to list [#551]
2381
+ - ESO/ALMA test cleanup [#553]
2382
+ - Allow ALMA project view [#554]
2383
+ - Fix Splatalogue version keyword [#557]
2384
+
2385
+ 0.2.4 (2015-03-27)
2386
+ ==================
2387
+
2388
+ - Bugfix for ``utils.commons.send_request()``: Raise exception if error status
2389
+ is returned in the response. [#491]
2390
+ - Update for ALMA Cycle 3 API change [#500]
2391
+ - Added LCOGT Archive support [#537]
2392
+ - Refactored LAMDA to match the standard API and added a critical density
2393
+ calculation utility [#546]
2394
+
2395
+ 0.2.3 (2014-09-30)
2396
+ ==================
2397
+
2398
+
2399
+ - AstroResponse has been removed, which means that all cached objects will have
2400
+ new hashes. You should clear your cache: for most users, that means
2401
+ ``rm -r ~/.astropy/cache/astroquery/`` [#418]
2402
+ - In ESO and ALMA, default to *not* storing your password. New keyword
2403
+ ``store_password=False``. [#415]
2404
+ - In ESO, fixed a form activation issue triggered in ESO ``retrieve_data()``,
2405
+ updated file download link triggered by server side change.
2406
+ More interesting, made ``username`` optional in ``login()``:
2407
+ instead, you can now configure your preferred ``username``.
2408
+ Finally, automatic login is now used by ``retrieve_data()``, if configured. [#420, #427]
2409
+ - Bugfix for UKIDSS: Login now uses the correct session to retrieve the data
2410
+ [#425]
2411
+ - ALMA - many new features, including selective file retrieval. Fixes many errors that
2412
+ were unnoticed in the previous version [#433]
2413
+ - ALMA - add ``help`` method and pass payload keywords on correctly. Validate
2414
+ the payload before querying. [#438]
2415
+
2416
+ 0.2.2 (2014-09-10)
2417
+ ==================
2418
+
2419
+ - Support direct transmission of SQL queries to the SDSS server [#410]
2420
+ - Added email/text job completion alert [#407] to the CosmoSim tool [#267].
2421
+ - ESO archive now supports HARPS/FEROS reprocessed data queries [#412]
2422
+ - IPython notebook checker in the ESO tool is now compatible with regular
2423
+ python [#413]
2424
+ - Added new tool: ALMA archive query tool. [#411]
2425
+ - setup script and installation fixes
2426
+
2427
+ 0.2 (2014-08-17)
2428
+ ================
2429
+
2430
+ - New tools: ESO, GAMA, xmatch, skyview, OEC
2431
+ - Consistent with astropy 0.4 API for coordinates
2432
+ - Now uses the astropy affiliated template
2433
+ - Python 3 compatibility dramatically improved
2434
+ - Caching added and enhanced: the default cache directory is
2435
+ ``~/.astropy/cache/astroquery/[service_name]``
2436
+ - Services with separate login pages can be accessed
2437
+
2438
+
2439
+ 0.1 (2013-09-19)
2440
+ ================
2441
+
2442
+ - Initial release. Includes features!