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