pyratbay 2.0.0b2__tar.gz → 2.0.0b3__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.

Potentially problematic release.


This version of pyratbay might be problematic. Click here for more details.

Files changed (362) hide show
  1. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/CHANGELOG.txt +116 -0
  2. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/PKG-INFO +2 -2
  3. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/docs/atm_tutorial.rst +2 -1
  4. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/docs/conf.py +13 -6
  5. pyratbay-2.0.0b3/docs/custom_style.py +19 -0
  6. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/docs/docs_requirements.txt +1 -1
  7. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/docs/getstarted.rst +2 -13
  8. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyproject.toml +1 -1
  9. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/atmosphere/tmodels/tmodels.py +1 -2
  10. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/constants/astrophysical_constants.py +1 -1
  11. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/constants/code_constants.py +3 -6
  12. pyratbay-2.0.0b3/pyratbay/data/filters/cheops.dat +153 -0
  13. pyratbay-2.0.0b3/pyratbay/data/filters/kepler.dat +559 -0
  14. pyratbay-2.0.0b3/pyratbay/data/filters/tess.dat +59 -0
  15. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/data/isotopes.dat +2 -0
  16. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/io/io.py +39 -46
  17. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/opacity/alkali/alkali.py +1 -1
  18. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/opacity/broadening/broadening.py +2 -2
  19. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/opacity/linelist/driver.py +2 -2
  20. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/opacity/partitions/partitions.py +50 -25
  21. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/plots/plots.py +1 -1
  22. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/pyrat/argum.py +5 -1
  23. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/pyrat/observation.py +1 -1
  24. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/pyrat/opacity.py +1 -1
  25. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/pyrat/pyrat_obj.py +15 -11
  26. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/pyrat/spectrum.py +12 -2
  27. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/spectrum/blackbody.py +1 -1
  28. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/spectrum/contribution_funcs.py +1 -1
  29. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/spectrum/kurucz.py +1 -1
  30. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/spectrum/phoenix.py +1 -1
  31. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/spectrum/radiative_transfer.py +2 -2
  32. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/spectrum/spec_tools.py +221 -108
  33. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/version.py +1 -1
  34. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay.egg-info/PKG-INFO +2 -2
  35. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay.egg-info/SOURCES.txt +10 -5
  36. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay.egg-info/requires.txt +1 -1
  37. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/requirements.txt +1 -1
  38. pyratbay-2.0.0b3/tests/configs/spectrum_transmission_interp_press.cfg +72 -0
  39. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/configs/spectrum_transmission_interp_temp.cfg +1 -2
  40. pyratbay-2.0.0b3/tests/expected/expected_spectrum_emission_all_test.npz +0 -0
  41. pyratbay-2.0.0b3/tests/expected/expected_spectrum_emission_etable_test.npz +0 -0
  42. pyratbay-2.0.0b3/tests/expected/expected_spectrum_emission_quadrature_test.npz +0 -0
  43. pyratbay-2.0.0b3/tests/expected/expected_spectrum_emission_resolution_test.npz +0 -0
  44. pyratbay-2.0.0b3/tests/expected/expected_spectrum_emission_tli_test.npz +0 -0
  45. pyratbay-2.0.0b3/tests/expected/expected_spectrum_emission_two_stream_test.npz +0 -0
  46. pyratbay-2.0.0b3/tests/expected/expected_spectrum_transmission_resolution_test.npz +0 -0
  47. pyratbay-2.0.0b3/tests/expected/expected_spectrum_transmission_wl_step_test.npz +0 -0
  48. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/inputs/obs_file_data_mix.dat +2 -2
  49. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/inputs/obs_file_data_passband_file.dat +2 -3
  50. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/inputs/obs_file_passband_file.dat +2 -2
  51. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/revise_spectra.py +3 -1
  52. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/test_broadening.py +3 -3
  53. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/test_emission.py +11 -9
  54. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/test_fails.py +4 -4
  55. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/test_io.py +49 -23
  56. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/test_partitions.py +3 -3
  57. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/test_spectrum.py +93 -47
  58. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/test_str.py +17 -13
  59. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/test_tli.py +10 -11
  60. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/test_tools.py +5 -5
  61. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/test_transmission.py +15 -8
  62. pyratbay-2.0.0b2/tests/expected/expected_spectrum_emission_all_test.npz +0 -0
  63. pyratbay-2.0.0b2/tests/expected/expected_spectrum_emission_etable_test.npz +0 -0
  64. pyratbay-2.0.0b2/tests/expected/expected_spectrum_emission_quadrature_test.npz +0 -0
  65. pyratbay-2.0.0b2/tests/expected/expected_spectrum_emission_resolution_test.npz +0 -0
  66. pyratbay-2.0.0b2/tests/expected/expected_spectrum_emission_tli_test.npz +0 -0
  67. pyratbay-2.0.0b2/tests/expected/expected_spectrum_emission_two_stream_test.npz +0 -0
  68. pyratbay-2.0.0b2/tests/expected/expected_spectrum_transmission_resolution_test.npz +0 -0
  69. pyratbay-2.0.0b2/tests/expected/expected_spectrum_transmission_wl_step_test.npz +0 -0
  70. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/.readthedocs.yml +0 -0
  71. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/.travis.yml +0 -0
  72. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/CONTRIBUTING.md +0 -0
  73. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/LICENSE +0 -0
  74. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/MANIFEST.in +0 -0
  75. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/README.md +0 -0
  76. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/docs/Makefile +0 -0
  77. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/docs/api.rst +0 -0
  78. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/docs/contributing.rst +0 -0
  79. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/docs/figures/broadening.png +0 -0
  80. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/docs/figures/favicon.ico +0 -0
  81. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/docs/figures/pyrat_PT_tutorial.png +0 -0
  82. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/docs/figures/pyrat_atmosphere_tutorial.png +0 -0
  83. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/docs/figures/pyrat_hydrostatic_tutorial.png +0 -0
  84. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/docs/figures/pyrat_logo.png +0 -0
  85. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/docs/figures/pyrat_spectrum_demo.png +0 -0
  86. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/docs/figures/pyrat_transmission-spectrum_tutorial.png +0 -0
  87. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/docs/figures/pyrat_user_case.png +0 -0
  88. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/docs/index.rst +0 -0
  89. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/docs/license.rst +0 -0
  90. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/docs/make.bat +0 -0
  91. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/docs/opac_tutorial.rst +0 -0
  92. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/docs/references.rst +0 -0
  93. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/docs/retrieval_tutorial.rst +0 -0
  94. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/docs/spec_tutorial.rst +0 -0
  95. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/docs/tli_tutorial.rst +0 -0
  96. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/docs/units.rst +0 -0
  97. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/examples/demo/demo_spectrum-emission.cfg +0 -0
  98. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/examples/demo/demo_spectrum-transmission.cfg +0 -0
  99. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/examples/demo/demo_tli-hitran.cfg +0 -0
  100. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/examples/demo/uniform.atm +0 -0
  101. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/examples/tutorial/atmosphere_hydro_g.cfg +0 -0
  102. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/examples/tutorial/atmosphere_hydro_m.cfg +0 -0
  103. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/examples/tutorial/observation_file.dat +0 -0
  104. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/examples/tutorial/opacity.cfg +0 -0
  105. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/examples/tutorial/pt_guillot.cfg +0 -0
  106. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/examples/tutorial/pt_isothermal.cfg +0 -0
  107. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/examples/tutorial/pt_isothermal_tutorial.log +0 -0
  108. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/examples/tutorial/pt_madhu.cfg +0 -0
  109. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/examples/tutorial/retrieval_eclipse.cfg +0 -0
  110. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/examples/tutorial/spectrum_transmission.cfg +0 -0
  111. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/examples/tutorial/tli_hitran_H2O.cfg +0 -0
  112. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/__init__.py +0 -0
  113. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/__main__.py +0 -0
  114. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/atmosphere/__init__.py +0 -0
  115. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/atmosphere/atmosphere.py +0 -0
  116. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/atmosphere/tmodels/__init__.py +0 -0
  117. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/atmosphere/vmr_models/__init__.py +0 -0
  118. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/atmosphere/vmr_models/vmr_models.py +0 -0
  119. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/atmosphere/vmr_scaling.py +0 -0
  120. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/constants/__init__.py +0 -0
  121. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/data/AsplundEtal2009.txt +0 -0
  122. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/data/CIA/CIA_Borysow_H2H2_0060-7000K_0.6-500um.dat +0 -0
  123. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/data/CIA/CIA_Borysow_H2He_0050-3000K_0.3-030um.dat +0 -0
  124. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/data/CIA/CIA_Borysow_H2He_0050-7000K_0.5-031um.dat +0 -0
  125. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/data/CIA/CIA_Borysow_H2He_1000-7000K_0.5-400um.dat +0 -0
  126. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/data/atoms.dat +0 -0
  127. /pyratbay-2.0.0b2/pyratbay/data/filters/spitzer_irac1_sa.dat → /pyratbay-2.0.0b3/pyratbay/data/filters/spitzer_irac1.dat +0 -0
  128. /pyratbay-2.0.0b2/pyratbay/data/filters/spitzer_irac2_sa.dat → /pyratbay-2.0.0b3/pyratbay/data/filters/spitzer_irac2.dat +0 -0
  129. /pyratbay-2.0.0b2/pyratbay/data/filters/spitzer_irac3_sa.dat → /pyratbay-2.0.0b3/pyratbay/data/filters/spitzer_irac3.dat +0 -0
  130. /pyratbay-2.0.0b2/pyratbay/data/filters/spitzer_irac4_sa.dat → /pyratbay-2.0.0b3/pyratbay/data/filters/spitzer_irac4.dat +0 -0
  131. /pyratbay-2.0.0b2/pyratbay/data/filters/spitzer_mips24.dat → /pyratbay-2.0.0b3/pyratbay/data/filters/spitzer_mips.dat +0 -0
  132. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/data/molecules.dat +0 -0
  133. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/data/tips_2021.pkl +0 -0
  134. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/driver.py +0 -0
  135. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/io/__init__.py +0 -0
  136. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/opacity/__init__.py +0 -0
  137. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/opacity/alkali/__init__.py +0 -0
  138. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/opacity/broadening/__init__.py +0 -0
  139. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/opacity/cia.py +0 -0
  140. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/opacity/clouds/__init__.py +0 -0
  141. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/opacity/clouds/gray.py +0 -0
  142. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/opacity/hydrogen_ion.py +0 -0
  143. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/opacity/line_sampling.py +0 -0
  144. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/opacity/linelist/__init__.py +0 -0
  145. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/opacity/linelist/exomol.py +0 -0
  146. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/opacity/linelist/hitran.py +0 -0
  147. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/opacity/linelist/pands.py +0 -0
  148. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/opacity/linelist/repack.py +0 -0
  149. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/opacity/linelist/tioschwenke.py +0 -0
  150. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/opacity/linelist/vald.py +0 -0
  151. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/opacity/linelist/voplez.py +0 -0
  152. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/opacity/lread.py +0 -0
  153. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/opacity/partitions/__init__.py +0 -0
  154. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/opacity/rayleigh/__init__.py +0 -0
  155. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/opacity/rayleigh/rayleigh.py +0 -0
  156. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/plots/__init__.py +0 -0
  157. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/pyrat/__init__.py +0 -0
  158. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/pyrat/atmosphere.py +0 -0
  159. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/pyrat/extinction.py +0 -0
  160. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/pyrat/line_by_line.py +0 -0
  161. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/pyrat/objects.py +0 -0
  162. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/pyrat/optical_depth.py +0 -0
  163. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/pyrat/retrieval.py +0 -0
  164. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/pyrat/voigt.py +0 -0
  165. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/spectrum/__init__.py +0 -0
  166. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/spectrum/convection.py +0 -0
  167. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/tools/__init__.py +0 -0
  168. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/tools/data.py +0 -0
  169. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/tools/mpi_tools.py +0 -0
  170. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/tools/parser.py +0 -0
  171. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/tools/retrieval_tools.py +0 -0
  172. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay/tools/tools.py +0 -0
  173. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay.egg-info/dependency_links.txt +0 -0
  174. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay.egg-info/entry_points.txt +0 -0
  175. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/pyratbay.egg-info/top_level.txt +0 -0
  176. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/setup.cfg +0 -0
  177. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/setup.py +0 -0
  178. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/src_c/_alkali.c +0 -0
  179. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/src_c/_blackbody.c +0 -0
  180. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/src_c/_extcoeff.c +0 -0
  181. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/src_c/_indices.c +0 -0
  182. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/src_c/_pt.c +0 -0
  183. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/src_c/_simpson.c +0 -0
  184. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/src_c/_spline.c +0 -0
  185. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/src_c/_trapz.c +0 -0
  186. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/src_c/_two_stream.c +0 -0
  187. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/src_c/cutils.c +0 -0
  188. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/src_c/include/constants.h +0 -0
  189. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/src_c/include/expn.h +0 -0
  190. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/src_c/include/expn_tmp.h +0 -0
  191. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/src_c/include/ind.h +0 -0
  192. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/src_c/include/simpson.h +0 -0
  193. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/src_c/include/spline.h +0 -0
  194. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/src_c/include/utils.h +0 -0
  195. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/src_c/include/voigt.h +0 -0
  196. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/src_c/vprofile.c +0 -0
  197. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/configs/atmosphere_hydro_test.cfg +0 -0
  198. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/configs/atmosphere_jupiter_calc.cfg +0 -0
  199. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/configs/atmosphere_jupiter_read.cfg +0 -0
  200. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/configs/atmosphere_tea_test.cfg +0 -0
  201. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/configs/atmosphere_uniform_test.cfg +0 -0
  202. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/configs/mcmc_transmission_test.cfg +0 -0
  203. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/configs/opacity_multiple.cfg +0 -0
  204. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/configs/opacity_test.cfg +0 -0
  205. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/configs/pt_guillot.cfg +0 -0
  206. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/configs/pt_isothermal.cfg +0 -0
  207. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/configs/pt_madhu.cfg +0 -0
  208. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/configs/retrieval_emission_test.cfg +0 -0
  209. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/configs/retrieval_transmission_tea.cfg +0 -0
  210. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/configs/spectrum_emission_filters_test.cfg +0 -0
  211. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/configs/spectrum_emission_test.cfg +0 -0
  212. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/configs/spectrum_transmission_extfile.cfg +0 -0
  213. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/configs/spectrum_transmission_filters_test.cfg +0 -0
  214. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/configs/spectrum_transmission_h_ion.cfg +0 -0
  215. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/configs/spectrum_transmission_multiple_opacities.cfg +0 -0
  216. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/configs/spectrum_transmission_test.cfg +0 -0
  217. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/configs/tli_exomol_test.cfg +0 -0
  218. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/configs/tli_hitran_1.1-1.7um_test.cfg +0 -0
  219. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/configs/tli_hitran_test.cfg +0 -0
  220. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/configs/tli_hitran_two_files_one_db_test.cfg +0 -0
  221. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/configs/tli_hitran_two_files_one_dbtype.cfg +0 -0
  222. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/configs/tli_hitran_two_files_one_pflist.cfg +0 -0
  223. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/configs/tli_hitran_two_files_two_db_test.cfg +0 -0
  224. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/configs/tli_multiple_opacity_CH4.cfg +0 -0
  225. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/configs/tli_multiple_opacity_CO2.cfg +0 -0
  226. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/configs/tli_multiple_opacity_H2O.cfg +0 -0
  227. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/configs/tli_pands_test.cfg +0 -0
  228. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/configs/tli_repack_test.cfg +0 -0
  229. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/conftest.py +0 -0
  230. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/expected/expected_alkali_K_opacity.npz +0 -0
  231. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/expected/expected_alkali_Na_opacity.npz +0 -0
  232. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/expected/expected_cia_H2H2_opacity.npz +0 -0
  233. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/expected/expected_get_ec_lbl.npz +0 -0
  234. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/expected/expected_get_ec_ls.npz +0 -0
  235. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/expected/expected_ls_H2O_opacity.npz +0 -0
  236. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/expected/expected_profile_gauss_test.npz +0 -0
  237. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/expected/expected_profile_lorentz_test.npz +0 -0
  238. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/expected/expected_profile_voigt0.01_test.npz +0 -0
  239. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/expected/expected_profile_voigt0.1_test.npz +0 -0
  240. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/expected/expected_profile_voigt1.0_test.npz +0 -0
  241. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/expected/expected_profile_voigt10.0_test.npz +0 -0
  242. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/expected/expected_profile_voigt100.0_test.npz +0 -0
  243. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/expected/expected_spectrum_emission_alkali_test.npz +0 -0
  244. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/expected/expected_spectrum_emission_cia_test.npz +0 -0
  245. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/expected/expected_spectrum_emission_deck_test.npz +0 -0
  246. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/expected/expected_spectrum_emission_lec_test.npz +0 -0
  247. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/expected/expected_spectrum_emission_scale_test.npz +0 -0
  248. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/expected/expected_spectrum_emission_tmodel_test.npz +0 -0
  249. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/expected/expected_spectrum_emission_vert_test.npz +0 -0
  250. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/expected/expected_spectrum_transmission_alkali_test.npz +0 -0
  251. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/expected/expected_spectrum_transmission_all_ls_test.npz +0 -0
  252. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/expected/expected_spectrum_transmission_all_test.npz +0 -0
  253. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/expected/expected_spectrum_transmission_bandflux4_test.npz +0 -0
  254. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/expected/expected_spectrum_transmission_cia_test.npz +0 -0
  255. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/expected/expected_spectrum_transmission_deck_test.npz +0 -0
  256. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/expected/expected_spectrum_transmission_etable_test.npz +0 -0
  257. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/expected/expected_spectrum_transmission_fit1_test.npz +0 -0
  258. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/expected/expected_spectrum_transmission_fit2_test.npz +0 -0
  259. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/expected/expected_spectrum_transmission_fit3_test.npz +0 -0
  260. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/expected/expected_spectrum_transmission_fit4_test.npz +0 -0
  261. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/expected/expected_spectrum_transmission_h_ion_test.npz +0 -0
  262. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/expected/expected_spectrum_transmission_lec_test.npz +0 -0
  263. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/expected/expected_spectrum_transmission_patchy_clear_test.npz +0 -0
  264. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/expected/expected_spectrum_transmission_patchy_cloudy_test.npz +0 -0
  265. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/expected/expected_spectrum_transmission_patchy_test.npz +0 -0
  266. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/expected/expected_spectrum_transmission_scale_test.npz +0 -0
  267. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/expected/expected_spectrum_transmission_skip_H2_H2_cia_test.npz +0 -0
  268. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/expected/expected_spectrum_transmission_skip_alkali_test.npz +0 -0
  269. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/expected/expected_spectrum_transmission_skip_cia_test.npz +0 -0
  270. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/expected/expected_spectrum_transmission_skip_cloud_test.npz +0 -0
  271. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/expected/expected_spectrum_transmission_skip_dalgarno_test.npz +0 -0
  272. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/expected/expected_spectrum_transmission_skip_deck_test.npz +0 -0
  273. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/expected/expected_spectrum_transmission_skip_lbl_test.npz +0 -0
  274. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/expected/expected_spectrum_transmission_skip_ls_test.npz +0 -0
  275. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/expected/expected_spectrum_transmission_skip_rayleigh_test.npz +0 -0
  276. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/expected/expected_spectrum_transmission_skip_sodium_test.npz +0 -0
  277. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/expected/expected_spectrum_transmission_tli_test.npz +0 -0
  278. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/expected/expected_spectrum_transmission_tmodel_test.npz +0 -0
  279. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/expected/expected_spectrum_transmission_vert_test.npz +0 -0
  280. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/expected/expected_tea_profile.npz +0 -0
  281. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/expected/expected_tea_sub_solar_profile.npz +0 -0
  282. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/filters/filter_test_WFC3_G141_1.133um.dat +0 -0
  283. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/filters/filter_test_WFC3_G141_1.158um.dat +0 -0
  284. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/filters/filter_test_WFC3_G141_1.183um.dat +0 -0
  285. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/filters/filter_test_WFC3_G141_1.209um.dat +0 -0
  286. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/filters/filter_test_WFC3_G141_1.235um.dat +0 -0
  287. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/filters/filter_test_WFC3_G141_1.260um.dat +0 -0
  288. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/filters/filter_test_WFC3_G141_1.285um.dat +0 -0
  289. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/filters/filter_test_WFC3_G141_1.310um.dat +0 -0
  290. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/filters/filter_test_WFC3_G141_1.336um.dat +0 -0
  291. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/filters/filter_test_WFC3_G141_1.361um.dat +0 -0
  292. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/filters/filter_test_WFC3_G141_1.387um.dat +0 -0
  293. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/filters/filter_test_WFC3_G141_1.413um.dat +0 -0
  294. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/filters/filter_test_WFC3_G141_1.438um.dat +0 -0
  295. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/filters/filter_test_WFC3_G141_1.464um.dat +0 -0
  296. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/filters/filter_test_WFC3_G141_1.489um.dat +0 -0
  297. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/filters/filter_test_WFC3_G141_1.515um.dat +0 -0
  298. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/filters/filter_test_WFC3_G141_1.540um.dat +0 -0
  299. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/filters/filter_test_WFC3_G141_1.565um.dat +0 -0
  300. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/filters/filter_test_WFC3_G141_1.591um.dat +0 -0
  301. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/filters/filter_test_WFC3_G141_1.616um.dat +0 -0
  302. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/inputs/01_hit12.par +0 -0
  303. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/inputs/14N-1H3__MockBYTe.states +0 -0
  304. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/inputs/14N-1H3__MockBYTe__04999-05000.trans +0 -0
  305. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/inputs/15N-1H3__MockBYTe-15.states +0 -0
  306. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/inputs/15N-1H3__MockBYTe-15__04999-05000.trans +0 -0
  307. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/inputs/CO2_hitran_2.50-2.52um_repack-0.01_lbl.dat +0 -0
  308. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/inputs/Mock_HITRAN_H2O_1.00-1.01um.par +0 -0
  309. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/inputs/PF_Exomol_NH3.dat +0 -0
  310. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/inputs/PF_tips_CO2.dat +0 -0
  311. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/inputs/TESS_passband.dat +0 -0
  312. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/inputs/atmosphere_uniform_even_layers.atm +0 -0
  313. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/inputs/atmosphere_uniform_no_potassium.atm +0 -0
  314. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/inputs/atmosphere_uniform_radius.atm +0 -0
  315. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/inputs/atmosphere_uniform_radius.log +0 -0
  316. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/inputs/atmosphere_uniform_test.atm +0 -0
  317. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/inputs/edit_01_hit12.par +0 -0
  318. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/inputs/jupiter_isothermal_uniform_vmr.atm +0 -0
  319. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/inputs/jupiter_isothermal_uniform_vmr.log +0 -0
  320. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/inputs/jupiter_isothermal_uniform_vmr_read.atm +0 -0
  321. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/inputs/mock_01_hit12.par +0 -0
  322. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/inputs/mock_02_3750-4000_HITEMP2010.par +0 -0
  323. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/inputs/mock_02_3750-4000_HITEMP2010.tar.gz +0 -0
  324. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/inputs/mock_02_4000-4500_HITEMP2010.par +0 -0
  325. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/inputs/mock_02_4000-4500_HITEMP2010.tar.gz +0 -0
  326. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/inputs/mock_02_hit12.par +0 -0
  327. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/inputs/mock_02_hit12.tar.gz +0 -0
  328. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/inputs/mock_06_hit12.par +0 -0
  329. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/inputs/mock_06_hit12.tar.gz +0 -0
  330. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/inputs/mock_H2-H2_2011.cia +0 -0
  331. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/inputs/mock_fp00k0odfnew.pck +0 -0
  332. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/inputs/mock_h2ofastfix.bin +0 -0
  333. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/inputs/mock_h2opartfn.dat +0 -0
  334. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/inputs/mock_tiopart.dat +0 -0
  335. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/inputs/multinest_output.txt +0 -0
  336. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/inputs/multinest_outputstats.txt +0 -0
  337. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/inputs/multinest_outputstats_2modes.txt +0 -0
  338. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/inputs/obs_file_WFC3.dat +0 -0
  339. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/inputs/obs_file_data_tophat.dat +0 -0
  340. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/inputs/obs_file_data_tophat_named.dat +0 -0
  341. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/inputs/obs_file_err_scaling.dat +0 -0
  342. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/inputs/obs_file_extra_depth_flag.dat +0 -0
  343. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/inputs/obs_file_missing_depth_flag.dat +0 -0
  344. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/inputs/obs_file_tophat.dat +0 -0
  345. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/inputs/obs_file_tophat_named.dat +0 -0
  346. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/inputs/uniform_notemp_test.atm +0 -0
  347. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/outputs/.gitignore +0 -0
  348. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/test_atmosphere.py +0 -0
  349. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/test_data.py +0 -0
  350. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/test_mpi.py +0 -0
  351. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/test_opacity_H_ion.py +0 -0
  352. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/test_opacity_alkali.py +0 -0
  353. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/test_opacity_cia.py +0 -0
  354. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/test_opacity_line_sample.py +0 -0
  355. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/test_opacity_rayleigh.py +0 -0
  356. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/test_pbay.py +0 -0
  357. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/test_plots.py +0 -0
  358. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/test_pyrat.py +0 -0
  359. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/test_retrieval.py +0 -0
  360. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/test_run_atmosphere.py +0 -0
  361. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/test_src.py +0 -0
  362. {pyratbay-2.0.0b2 → pyratbay-2.0.0b3}/tests/test_vmr_models.py +0 -0
@@ -9514,3 +9514,119 @@ to allow renaming the post-process outputs.
9514
9514
 
9515
9515
  Updated version to 2.0.0b2
9516
9516
 
9517
+
9518
+ ***** Di 22 Okt 2024 09:47:09 CEST *****
9519
+
9520
+ Corrected np.trapz() to np.trapezoid() to avoid deprecation warning.
9521
+
9522
+ *****
9523
+
9524
+ Removed numpy.core.numeric isscalar imports.
9525
+
9526
+ *****
9527
+
9528
+ Corrected np.in1d() to np.isin().
9529
+
9530
+
9531
+ ***** Di 05 Nov 2024 11:22:31 CET *****
9532
+
9533
+ Updated scipy requirement compatible with Numpy2.0.
9534
+
9535
+ *****
9536
+
9537
+ Updated docs theme, switched from read_the_docs to furo.
9538
+
9539
+ Added docs/custom_style.py file.
9540
+
9541
+
9542
+ ***** Do 07 Nov 2024 11:47:50 CET *****
9543
+
9544
+ Added water isotopes for 228 and 227.
9545
+
9546
+ *****
9547
+
9548
+ Refactored tips() function to extend partition functions domain
9549
+ when some isotopes have higher temperature ranges.
9550
+ This is done with a cubic spline. Before the code was cutting off
9551
+ at the lowest maximum temperature.
9552
+
9553
+ These are the affected molecules:
9554
+ H2O
9555
+ [5000 5000 5000 5000 5000 5000 6000 6000 6000]
9556
+ CO2
9557
+ [5000 5000 3500 3500 3500 3500 5000 3500 5000 5000 3500 5000 5000]
9558
+ CH4
9559
+ [3500 3500 4500 3500]
9560
+ NO2
9561
+ [3500 1000]
9562
+ OH
9563
+ [9000 5000 5000]
9564
+ H2CO
9565
+ [3500 5000 5000]
9566
+ H2S
9567
+ [4000 5000 5000]
9568
+
9569
+ ****
9570
+
9571
+ Refactored io.write_spectrum() to deal with the wavelength units
9572
+ always in microns. Removed wlunits argument.
9573
+ Added 'eclipse' type.
9574
+
9575
+ Refactored io.read_spectrum() removing wlunits guessing.
9576
+
9577
+ Refactored io.write_observations() to enable combining tophat
9578
+ and tabulated files as passband functions.
9579
+
9580
+ *****
9581
+
9582
+ Updated tests in test_io.py.
9583
+ test_read_write_spectrum
9584
+ test_read_write_spectrum_filter
9585
+ test_read_isotopes
9586
+ test_write_observations_mix_bandpass_tophats
9587
+
9588
+ *****
9589
+
9590
+ In spectrum.bin_spectrum() replaced ignore_gaps bool argument
9591
+ with gaps string argument.
9592
+ Allowed to keep the default behavior for gaps (raise Error),
9593
+ ignore them (keep nans), or patch with a linear interpolation.
9594
+
9595
+ Updated docs and tests.
9596
+
9597
+ *****
9598
+
9599
+ Added wl variable to pyrat.spec, to return the wavelength array
9600
+ in microns.
9601
+
9602
+
9603
+ ***** Fr 22 Nov 2024 18:17:51 CET *****
9604
+
9605
+ Refactored PassBand() and Tophat() classes.
9606
+ Added counting_type argument and variable to specify whether the
9607
+ response function is per photon (default) or per energy.
9608
+ Re-named __call__() method to set_sampling().
9609
+ Added integrate() method to do the band_integration in-house.
9610
+ Now __call__() method points to intgrate().
9611
+ Added arguments to set the wn/wl sampling at initialization.
9612
+ Updated docstrings and tests.
9613
+
9614
+ *****
9615
+
9616
+ Added FILTERS constant, path pointing directly to the filters folder
9617
+ Added cheops and tess passbands filters.
9618
+ Renamed spitzer_irac?_sa.dat filters to spitzer_irac?.dat
9619
+
9620
+ *****
9621
+
9622
+ Updated tests on partition functions/isotopes according to latest
9623
+ changes.
9624
+
9625
+
9626
+ ***** Mo 25 Nov 2024 14:54:48 CET *****
9627
+
9628
+ Refactored PassBand() and Tophat() classes adding self.height
9629
+ and having self.response normalized to max(response)=1.
9630
+ Added passband docs to the cookbooks.
9631
+ Added kepler.dat passbands.
9632
+
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyratbay
3
- Version: 2.0.0b2
3
+ Version: 2.0.0b3
4
4
  Summary: Python Radiative Transfer in a Bayesian Framework
5
5
  Author-email: Patricio Cubillos <patricio.cubillos@oeaw.ac.at>
6
6
  License: GNU GENERAL PUBLIC LICENSE
@@ -348,7 +348,7 @@ Requires-Python: >=3.9
348
348
  Description-Content-Type: text/markdown
349
349
  License-File: LICENSE
350
350
  Requires-Dist: numpy>=1.23.5
351
- Requires-Dist: scipy>=1.5.4
351
+ Requires-Dist: scipy>=1.13.0
352
352
  Requires-Dist: matplotlib>=3.3.4
353
353
  Requires-Dist: mc3>=3.2.0
354
354
  Requires-Dist: chemcat>=0.3.8
@@ -90,7 +90,7 @@ parameter (``tpars``): the temperature (:math:`T_0`) at all layers.
90
90
  Here is an example of an isothermal atmosphere configuration file:
91
91
 
92
92
  .. literalinclude:: ../examples/tutorial/pt_isothermal.cfg
93
- :caption: pt_isothermal.cfg
93
+ :caption: File: pt_isothermal.cfg
94
94
 
95
95
  Guillot profile
96
96
  ^^^^^^^^^^^^^^^
@@ -126,6 +126,7 @@ Here is an example of a ``guillot`` atmosphere configuration file
126
126
  <https://github.com/pcubillos/pyratbay/blob/master/examples/tutorial/pt_guillot.cfg>`_):
127
127
 
128
128
  .. literalinclude:: ../examples/tutorial/pt_guillot.cfg
129
+ :caption: File: pt_guillot.cfg
129
130
 
130
131
 
131
132
  Madhu profile
@@ -22,7 +22,7 @@ import re
22
22
  from datetime import date
23
23
 
24
24
  # Do not add path to the package (following example from astropy).
25
- #sys.path.insert(0, os.path.abspath('..'))
25
+ sys.path.insert(0, os.path.abspath('.'))
26
26
  import pyratbay as pb
27
27
 
28
28
  # -- General configuration ------------------------------------------------
@@ -58,7 +58,7 @@ master_doc = 'index'
58
58
 
59
59
  # General information about the project.
60
60
  project = u'Pyrat Bay'
61
- copyright = u'2016-{:d}, Patricio Cubillos'.format(date.today().year)
61
+ copyright = f'2016-{date.today().year:d}, Patricio Cubillos'
62
62
  author = u'Patricio Cubillos'
63
63
 
64
64
  # The version info for the project you're documenting, acts as replacement for
@@ -103,7 +103,8 @@ exclude_patterns = ['_build', '.DS_Store']
103
103
  #show_authors = False
104
104
 
105
105
  # The name of the Pygments (syntax highlighting) style to use.
106
- pygments_style = 'sphinx'
106
+ #pygments_style = 'sphinx'
107
+ pygments_style = 'custom_style.CustomStyle'
107
108
 
108
109
  # A list of ignored prefixes for module index sorting.
109
110
  #modindex_common_prefix = []
@@ -119,12 +120,17 @@ pygments_style = 'sphinx'
119
120
 
120
121
  # The theme to use for HTML and HTML Help pages. See the documentation for
121
122
  # a list of builtin themes.
122
- html_theme = 'sphinx_rtd_theme'
123
+ html_theme = 'furo'
123
124
 
124
125
  # Theme options are theme-specific and customize the look and feel of a theme
125
126
  # further. For a list of options available for each theme, see the
126
127
  # documentation.
127
- #html_theme_options = {}
128
+ html_theme_options = {
129
+ "sidebar_hide_name": False,
130
+ "light_css_variables": {
131
+ "color-background-border": "#d0d0d0",
132
+ },
133
+ }
128
134
 
129
135
  # Add any paths that contain custom themes here, relative to this directory.
130
136
  #html_theme_path = []
@@ -149,6 +155,7 @@ html_favicon = 'figures/favicon.ico'
149
155
  # relative to this directory. They are copied after the builtin static files,
150
156
  # so a file named "default.css" will overwrite the builtin "default.css".
151
157
  html_static_path = ['_static']
158
+ html_css_files = ["custom.css"]
152
159
 
153
160
  # Add any extra paths that contain custom files (such as robots.txt or
154
161
  # .htaccess) here, relative to this directory. These files are copied
@@ -164,7 +171,7 @@ html_static_path = ['_static']
164
171
  #html_use_smartypants = True
165
172
 
166
173
  # Custom sidebar templates, maps document names to template names.
167
- html_sidebars = {'*':['globaltoc.html', 'relations.html', 'searchbox.html']}
174
+ #html_sidebars = {'*':['globaltoc.html', 'relations.html', 'searchbox.html']}
168
175
 
169
176
  # Additional templates that should be rendered to pages, maps page names to
170
177
  # template names.
@@ -0,0 +1,19 @@
1
+ from pygments.style import Style
2
+ from pygments.styles.friendly import FriendlyStyle
3
+ from pygments.token import Token
4
+
5
+
6
+ class CustomStyle(Style):
7
+ styles = FriendlyStyle.styles.copy()
8
+
9
+ background_color = "#f0f8ff"
10
+ background_color = "#f0f2f6"
11
+ styles[Token.Background] = background_color
12
+
13
+ comment = "italic #bb3322"
14
+ styles[Token.Comment] = comment
15
+ styles[Token.Comment] = comment
16
+ styles[Token.Comment.Multiline] = comment
17
+ styles[Token.Comment.Preproc] = comment
18
+ styles[Token.Comment.Single] = comment
19
+ styles[Token.Comment.Special] = comment
@@ -1,4 +1,4 @@
1
- sphinx-rtd-theme>=2.0.0
1
+ furo==2023.9.10
2
2
  nbsphinx
3
3
  sphinx_copybutton
4
4
  ipython>=8.17
@@ -71,19 +71,8 @@ through the ``Pyrat Bay`` sub modules (see :ref:`API`).
71
71
  System Requirements
72
72
  -------------------
73
73
 
74
- Pyrat-Bay (version 1.0+) has been extensively tested to work on
75
- Unix/Linux and OS X machines, with the following software
76
- requirements:
77
-
78
- * Python >= 3.6
79
- * Numpy >= 1.8.1
80
- * Scipy >= 0.13.3
81
- * Matplotlib >= 1.3.1
82
- * Sympy >= 0.7.6
83
- * mc3 >= 3.0.7
84
-
85
- ``Pyrat Bay`` may work with previous software versions; however, we do
86
- not guarantee nor provide support for that.
74
+ Pyrat-Bay (version 2.0+) has been extensively tested to work on
75
+ Unix/Linux and OS X machines and is available for Python 3.9+.
87
76
 
88
77
  .. _install:
89
78
 
@@ -21,7 +21,7 @@ authors = [
21
21
 
22
22
  dependencies = [
23
23
  'numpy>=1.23.5',
24
- 'scipy>=1.5.4',
24
+ 'scipy>=1.13.0',
25
25
  'matplotlib>=3.3.4',
26
26
  'mc3>=3.2.0',
27
27
  'chemcat>=0.3.8',
@@ -13,7 +13,6 @@ import functools
13
13
  from collections.abc import Iterable
14
14
 
15
15
  import numpy as np
16
- from numpy.core.numeric import isscalar
17
16
  from scipy.ndimage import gaussian_filter1d
18
17
 
19
18
  from ... import constants as pc
@@ -151,7 +150,7 @@ class Guillot():
151
150
 
152
151
  if gravity is None:
153
152
  gravity = np.tile(1.0, len(pressure))
154
- elif isscalar(gravity):
153
+ elif np.isscalar(gravity):
155
154
  gravity = np.tile(gravity, len(pressure))
156
155
  self.pressure = np.asarray(pressure, float)
157
156
  self.gravity = np.asarray(gravity, float)
@@ -54,7 +54,7 @@ __all__ = [
54
54
  import scipy.constants as sc
55
55
 
56
56
  """
57
- Constant values used in the pyrat project.
57
+ Astrophysical constant values used in the pyrat project.
58
58
 
59
59
  Notes
60
60
  -----
@@ -1,8 +1,9 @@
1
- # Copyright (c) 2021-2023 Patricio Cubillos
1
+ # Copyright (c) 2021-2024 Patricio Cubillos
2
2
  # Pyrat Bay is open-source software under the GPL-2.0 license (see LICENSE)
3
3
 
4
4
  __all__ = [
5
5
  'ROOT',
6
+ 'FILTERS',
6
7
  # Other constants
7
8
  'tlireclen',
8
9
  'dreclen',
@@ -30,11 +31,6 @@ import os
30
31
 
31
32
  """
32
33
  Constant values used in the pyrat project.
33
-
34
- Notes
35
- -----
36
- Solar system constants come from:
37
- http://nssdc.gsfc.nasa.gov/planetary/factsheet/
38
34
  """
39
35
 
40
36
  # TLI record lengths:
@@ -45,6 +41,7 @@ sreclen = 2 # Short byte length
45
41
 
46
42
  # Paths:
47
43
  ROOT = os.path.realpath(os.path.dirname(__file__) + '/../..') + '/'
44
+ FILTERS = f'{ROOT}pyratbay/data/filters/'
48
45
 
49
46
 
50
47
  # Available line-transition databases:
@@ -0,0 +1,153 @@
1
+ # wavelength response_function
2
+ # um electrons/photon
3
+ 0.3501 0.0
4
+ 0.355 0.0027411990927
5
+ 0.360 0.00797897050977
6
+ 0.365 0.0195086216784
7
+ 0.370 0.0411218614515
8
+ 0.375 0.0752118221188
9
+ 0.380 0.123726031915
10
+ 0.385 0.182990904748
11
+ 0.390 0.235613083186
12
+ 0.395 0.27508727386
13
+ 0.400 0.310371291
14
+ 0.405 0.350973617968
15
+ 0.410 0.396183434394
16
+ 0.415 0.440679886285
17
+ 0.420 0.474983437512
18
+ 0.425 0.509118023539
19
+ 0.430 0.546594053869
20
+ 0.435 0.580665053284
21
+ 0.440 0.61231785024
22
+ 0.445 0.640825753382
23
+ 0.450 0.66638775439
24
+ 0.455 0.685952239434
25
+ 0.460 0.702357113621
26
+ 0.465 0.718952729781
27
+ 0.470 0.736597290741
28
+ 0.475 0.751432680246
29
+ 0.480 0.768113554576
30
+ 0.485 0.786228721503
31
+ 0.490 0.804713617615
32
+ 0.495 0.823763750283
33
+ 0.500 0.841738920542
34
+ 0.505 0.856601897198
35
+ 0.510 0.869511799782
36
+ 0.515 0.880924406794
37
+ 0.520 0.889500475679
38
+ 0.525 0.895731811957
39
+ 0.530 0.899624514302
40
+ 0.535 0.901117139234
41
+ 0.540 0.900657978882
42
+ 0.545 0.899288619291
43
+ 0.550 0.897535929378
44
+ 0.555 0.894691482043
45
+ 0.560 0.892322051731
46
+ 0.565 0.890306791982
47
+ 0.570 0.887238670023
48
+ 0.575 0.88472795775
49
+ 0.580 0.882811041004
50
+ 0.585 0.880514671386
51
+ 0.590 0.878080505701
52
+ 0.595 0.875861249406
53
+ 0.600 0.87402389494
54
+ 0.605 0.872220605615
55
+ 0.610 0.870136673945
56
+ 0.615 0.867120264899
57
+ 0.620 0.862993567457
58
+ 0.625 0.857295360164
59
+ 0.630 0.850586682705
60
+ 0.635 0.843122325548
61
+ 0.640 0.834538915009
62
+ 0.645 0.824113174223
63
+ 0.650 0.81331517441
64
+ 0.655 0.802664820696
65
+ 0.660 0.792245951224
66
+ 0.665 0.781135803582
67
+ 0.670 0.769618240135
68
+ 0.675 0.758664016809
69
+ 0.680 0.748350955321
70
+ 0.685 0.738277172433
71
+ 0.690 0.727460099003
72
+ 0.695 0.715028696896
73
+ 0.700 0.702650380513
74
+ 0.705 0.690612721557
75
+ 0.710 0.679047806526
76
+ 0.715 0.668514894715
77
+ 0.720 0.658375479632
78
+ 0.725 0.648619084352
79
+ 0.730 0.639158886067
80
+ 0.735 0.629901634372
81
+ 0.740 0.621610663174
82
+ 0.745 0.614327136495
83
+ 0.750 0.6069280875
84
+ 0.755 0.599500351801
85
+ 0.760 0.592278885904
86
+ 0.765 0.585623364451
87
+ 0.770 0.579097967609
88
+ 0.775 0.573161008124
89
+ 0.780 0.567412562313
90
+ 0.785 0.561770681617
91
+ 0.790 0.555686787498
92
+ 0.795 0.548937498336
93
+ 0.800 0.541756614175
94
+ 0.805 0.532442583575
95
+ 0.810 0.52226666243
96
+ 0.815 0.512886870883
97
+ 0.820 0.504241679007
98
+ 0.825 0.495630092675
99
+ 0.830 0.486907147865
100
+ 0.835 0.476977358928
101
+ 0.840 0.465827335946
102
+ 0.845 0.448459054657
103
+ 0.850 0.433570394249
104
+ 0.855 0.421349649078
105
+ 0.860 0.409483676347
106
+ 0.865 0.396452603181
107
+ 0.870 0.382589819691
108
+ 0.875 0.368465826954
109
+ 0.880 0.354744191751
110
+ 0.885 0.340886057712
111
+ 0.890 0.326423879478
112
+ 0.895 0.311525640326
113
+ 0.900 0.297007900727
114
+ 0.905 0.282786602612
115
+ 0.910 0.268656481576
116
+ 0.915 0.254611619835
117
+ 0.920 0.240431772782
118
+ 0.925 0.226229053501
119
+ 0.930 0.21246851051
120
+ 0.935 0.199976656786
121
+ 0.940 0.187456102885
122
+ 0.945 0.174880426118
123
+ 0.950 0.162404822193
124
+ 0.955 0.150013817103
125
+ 0.960 0.137594721948
126
+ 0.965 0.125102401373
127
+ 0.970 0.115122573749
128
+ 0.975 0.106121364121
129
+ 0.980 0.0971433084897
130
+ 0.985 0.0881597827042
131
+ 0.990 0.0795878492286
132
+ 0.995 0.072147468064
133
+ 1.000 0.0646671832343
134
+ 1.005 0.0571607837249
135
+ 1.010 0.0496324506148
136
+ 1.015 0.0429475053814
137
+ 1.020 0.0386065204087
138
+ 1.025 0.0342479284026
139
+ 1.030 0.0298839952236
140
+ 1.035 0.0267801891662
141
+ 1.040 0.0237630148355
142
+ 1.045 0.0207466360127
143
+ 1.050 0.0177228596147
144
+ 1.055 0.0146842542793
145
+ 1.060 0.012042030927
146
+ 1.065 0.0120386065349
147
+ 1.070 0.0120346454471
148
+ 1.075 0.012028071
149
+ 1.080 0.012017306142
150
+ 1.085 0.0120030919306
151
+ 1.090 0.0119867344622
152
+ 1.095 0.0119692066053
153
+ 1.100 0.0