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