ExoIris 0.9.7__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.
- exoiris-0.9.7/ExoIris.egg-info/PKG-INFO +78 -0
- exoiris-0.9.7/ExoIris.egg-info/SOURCES.txt +18 -0
- exoiris-0.9.7/ExoIris.egg-info/dependency_links.txt +1 -0
- exoiris-0.9.7/ExoIris.egg-info/requires.txt +11 -0
- exoiris-0.9.7/ExoIris.egg-info/top_level.txt +1 -0
- exoiris-0.9.7/LICENSE +674 -0
- exoiris-0.9.7/PKG-INFO +78 -0
- exoiris-0.9.7/README.md +48 -0
- exoiris-0.9.7/exoiris/__init__.py +22 -0
- exoiris-0.9.7/exoiris/binning.py +180 -0
- exoiris-0.9.7/exoiris/exoiris.py +1141 -0
- exoiris-0.9.7/exoiris/ldtkld.py +92 -0
- exoiris-0.9.7/exoiris/tsdata.py +321 -0
- exoiris-0.9.7/exoiris/tslpf.py +624 -0
- exoiris-0.9.7/exoiris/util.py +119 -0
- exoiris-0.9.7/exoiris/wlpf.py +83 -0
- exoiris-0.9.7/pyproject.toml +36 -0
- exoiris-0.9.7/requirements.txt +11 -0
- exoiris-0.9.7/setup.cfg +4 -0
- exoiris-0.9.7/tests/test_binning.py +50 -0
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: ExoIris
|
|
3
|
+
Version: 0.9.7
|
|
4
|
+
Summary: Easy and robust exoplanet transmission spectroscopy.
|
|
5
|
+
Author-email: Hannu Parviainen <hannu@iac.es>
|
|
6
|
+
License: GPLv3
|
|
7
|
+
Project-URL: homepage, https://github.com/hpparvi/ExoIris
|
|
8
|
+
Keywords: astronomy,astrophysics,exoplanets
|
|
9
|
+
Classifier: Topic :: Scientific/Engineering
|
|
10
|
+
Classifier: Intended Audience :: Science/Research
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
13
|
+
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
|
|
14
|
+
Classifier: Operating System :: OS Independent
|
|
15
|
+
Classifier: Programming Language :: Python
|
|
16
|
+
Requires-Python: >=3.10
|
|
17
|
+
Description-Content-Type: text/markdown
|
|
18
|
+
License-File: LICENSE
|
|
19
|
+
Requires-Dist: pytransit
|
|
20
|
+
Requires-Dist: ldtk
|
|
21
|
+
Requires-Dist: numpy
|
|
22
|
+
Requires-Dist: scipy
|
|
23
|
+
Requires-Dist: numba
|
|
24
|
+
Requires-Dist: matplotlib
|
|
25
|
+
Requires-Dist: celerite2
|
|
26
|
+
Requires-Dist: pandas
|
|
27
|
+
Requires-Dist: xarray
|
|
28
|
+
Requires-Dist: seaborn
|
|
29
|
+
Requires-Dist: astropy
|
|
30
|
+
|
|
31
|
+
# ExoIris: Transmission Spectroscopy Made Easy
|
|
32
|
+
|
|
33
|
+
[](https://easyts.readthedocs.io)
|
|
34
|
+

|
|
35
|
+
[](CODE_OF_CONDUCT.md)
|
|
36
|
+
[](http://www.gnu.org/licenses/gpl-3.0.html)
|
|
37
|
+
[](https://pypi.org/project/EasyTS/)
|
|
38
|
+
|
|
39
|
+
**ExoIris** is a user-friendly Python package designed to simplify and accelerate the analysis of transmission
|
|
40
|
+
spectroscopy data for exoplanets. The package can estimate a self-consistent medium-resolution transmission spectrum
|
|
41
|
+
with uncertainties from JWST NIRISS data in minutes, even when using a Gaussian Process-based noise model.
|
|
42
|
+
|
|
43
|
+

|
|
44
|
+
|
|
45
|
+
## Documentation
|
|
46
|
+
|
|
47
|
+
Read the docs at [easyts.readthedocs.io](https://easyts.readthedocs.io).
|
|
48
|
+
|
|
49
|
+
## Key Features
|
|
50
|
+
|
|
51
|
+
- **Fast modelling of spectroscopic transit time series**: ExoIris uses PyTransit's advanced `TSModel` transit
|
|
52
|
+
model that is specially tailored for fast and efficient modelling of spectroscopic transit (or eclipse) time series.
|
|
53
|
+
- **Flexible handling of limb darkening**: The stellar limb darkening can be modelled freely either by any of the standard
|
|
54
|
+
limb darkening laws (quadratic, power-2, non-linear, etc.), by numerical stellar intensity profiles obtained
|
|
55
|
+
directly from stellar atmosphere models, or by an arbitrary ser-defined radially symmetric function.
|
|
56
|
+
- **Handling of Correlated noise**: The noise model can be chosen between white or time-correlated noise, where the
|
|
57
|
+
time-correlated noise is modelled as a Gaussian process.
|
|
58
|
+
- **Model saving and loading**: Seamless model saving and loading allows one to create a high-resolution analysis starting
|
|
59
|
+
from a saved low-resolution analysis.
|
|
60
|
+
- **Full control of resolution**: ExoIris represents the transmission spectrum as a cubic spline, with complete
|
|
61
|
+
flexibility to set and modify the number and placement of spline knots, allowing variable resolution throughout the
|
|
62
|
+
analysis.
|
|
63
|
+
|
|
64
|
+
## Details
|
|
65
|
+
|
|
66
|
+
ExoIris uses PyTransit's `TSModel`, a transit model that is specially optimised for transmission spectroscopy and allows
|
|
67
|
+
for simultaneous modelling of hundreds to thousands of spectroscopic light curves 20-30 times faster than when using
|
|
68
|
+
standard transit models not explicitly designed for transmission spectroscopy.
|
|
69
|
+
|
|
70
|
+
A complete posterior solution for a low-resolution transmission spectrum with a data resolution of R=100
|
|
71
|
+
takes 3-5 minutes to estimate assuming white noise, or 5-15 minutes if using a Gaussian process-based likelihood
|
|
72
|
+
model powered by the celerite2 package. A high-resolution spectrum of the JWST NIRISS WASP-39 b observations
|
|
73
|
+
by [Feinstein et al. (2023)](https://ui.adsabs.harvard.edu/abs/2023Natur.614..670F/abstract) with ~3800
|
|
74
|
+
spectroscopic light curves (as shown above) takes about 1.5 hours to optimise and sample on a three-year-old
|
|
75
|
+
AMD Ryzen 7 5800X with eight cores.
|
|
76
|
+
|
|
77
|
+
---
|
|
78
|
+
© 2024 Hannu Parviainen
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
LICENSE
|
|
2
|
+
README.md
|
|
3
|
+
pyproject.toml
|
|
4
|
+
requirements.txt
|
|
5
|
+
ExoIris.egg-info/PKG-INFO
|
|
6
|
+
ExoIris.egg-info/SOURCES.txt
|
|
7
|
+
ExoIris.egg-info/dependency_links.txt
|
|
8
|
+
ExoIris.egg-info/requires.txt
|
|
9
|
+
ExoIris.egg-info/top_level.txt
|
|
10
|
+
exoiris/__init__.py
|
|
11
|
+
exoiris/binning.py
|
|
12
|
+
exoiris/exoiris.py
|
|
13
|
+
exoiris/ldtkld.py
|
|
14
|
+
exoiris/tsdata.py
|
|
15
|
+
exoiris/tslpf.py
|
|
16
|
+
exoiris/util.py
|
|
17
|
+
exoiris/wlpf.py
|
|
18
|
+
tests/test_binning.py
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
exoiris
|