isgri 0.1.0__tar.gz → 0.2.0__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.
- {isgri-0.1.0 → isgri-0.2.0}/PKG-INFO +5 -3
- {isgri-0.1.0 → isgri-0.2.0}/README.md +4 -2
- {isgri-0.1.0 → isgri-0.2.0}/demo/lightcurve_walkthrough.ipynb +397 -397
- {isgri-0.1.0 → isgri-0.2.0}/pyproject.toml +1 -1
- {isgri-0.1.0 → isgri-0.2.0}/src/isgri/utils/file_loaders.py +1 -1
- {isgri-0.1.0 → isgri-0.2.0}/src/isgri/utils/lightcurve.py +10 -10
- {isgri-0.1.0 → isgri-0.2.0}/tests/utils/test_lightcurve.py +3 -4
- {isgri-0.1.0 → isgri-0.2.0}/.gitignore +0 -0
- {isgri-0.1.0 → isgri-0.2.0}/LICENSE +0 -0
- {isgri-0.1.0 → isgri-0.2.0}/demo/data/255900280010_isgri_model.fits.gz +0 -0
- {isgri-0.1.0 → isgri-0.2.0}/demo/data/isgri_events.fits.gz +0 -0
- {isgri-0.1.0 → isgri-0.2.0}/src/isgri/__init__.py +0 -0
- {isgri-0.1.0 → isgri-0.2.0}/src/isgri/utils/__init__.py +0 -0
- {isgri-0.1.0 → isgri-0.2.0}/src/isgri/utils/pif.py +0 -0
- {isgri-0.1.0 → isgri-0.2.0}/src/isgri/utils/quality.py +0 -0
- {isgri-0.1.0 → isgri-0.2.0}/src/isgri/utils/time_conversion.py +0 -0
- {isgri-0.1.0 → isgri-0.2.0}/tests/__init__.py +0 -0
- {isgri-0.1.0 → isgri-0.2.0}/tests/utils/__init__.py +0 -0
- {isgri-0.1.0 → isgri-0.2.0}/tests/utils/test_file_loaders.py +0 -0
- {isgri-0.1.0 → isgri-0.2.0}/tests/utils/test_pif.py +0 -0
- {isgri-0.1.0 → isgri-0.2.0}/tests/utils/test_quality.py +0 -0
- {isgri-0.1.0 → isgri-0.2.0}/tests/utils/test_time_conversion.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: isgri
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.2.0
|
|
4
4
|
Summary: Python package for INTEGRAL IBIS/ISGRI lightcurve analysis
|
|
5
5
|
Author: Dominik Patryk Pacholski
|
|
6
6
|
License: MIT
|
|
@@ -22,7 +22,7 @@ pip install isgri
|
|
|
22
22
|
|
|
23
23
|
Or from source:
|
|
24
24
|
```bash
|
|
25
|
-
git clone https://github.com/
|
|
25
|
+
git clone https://github.com/dominp/isgri.git
|
|
26
26
|
cd isgri
|
|
27
27
|
pip install -e .
|
|
28
28
|
```
|
|
@@ -49,6 +49,8 @@ qm = QualityMetrics(lc, binsize=1.0, emin=30, emax=300)
|
|
|
49
49
|
chi = qm.raw_chi_squared()
|
|
50
50
|
```
|
|
51
51
|
|
|
52
|
+
**About PIF files:** PIF (Pixel Illumination Fraction) files contain per-pixel sensitivity maps generated by OSA task `ii_pif`. They weight events based on source position to improve signal-to-noise ratio. Using PIF files is recommended but optional.
|
|
53
|
+
|
|
52
54
|
## Features
|
|
53
55
|
|
|
54
56
|
- Load ISGRI events and PIF files
|
|
@@ -60,5 +62,5 @@ chi = qm.raw_chi_squared()
|
|
|
60
62
|
|
|
61
63
|
## Documentation
|
|
62
64
|
|
|
63
|
-
- **Tutorial**: See [demo
|
|
65
|
+
- **Tutorial**: - **Tutorial**: See [demo notebook](https://github.com/dominp/isgri/blob/main/demo/lightcurve_walkthrough.ipynb) on GitHub
|
|
64
66
|
- **API docs**: All functions have docstrings - use `help(LightCurve)`
|
|
@@ -10,7 +10,7 @@ pip install isgri
|
|
|
10
10
|
|
|
11
11
|
Or from source:
|
|
12
12
|
```bash
|
|
13
|
-
git clone https://github.com/
|
|
13
|
+
git clone https://github.com/dominp/isgri.git
|
|
14
14
|
cd isgri
|
|
15
15
|
pip install -e .
|
|
16
16
|
```
|
|
@@ -37,6 +37,8 @@ qm = QualityMetrics(lc, binsize=1.0, emin=30, emax=300)
|
|
|
37
37
|
chi = qm.raw_chi_squared()
|
|
38
38
|
```
|
|
39
39
|
|
|
40
|
+
**About PIF files:** PIF (Pixel Illumination Fraction) files contain per-pixel sensitivity maps generated by OSA task `ii_pif`. They weight events based on source position to improve signal-to-noise ratio. Using PIF files is recommended but optional.
|
|
41
|
+
|
|
40
42
|
## Features
|
|
41
43
|
|
|
42
44
|
- Load ISGRI events and PIF files
|
|
@@ -48,5 +50,5 @@ chi = qm.raw_chi_squared()
|
|
|
48
50
|
|
|
49
51
|
## Documentation
|
|
50
52
|
|
|
51
|
-
- **Tutorial**: See [demo
|
|
53
|
+
- **Tutorial**: - **Tutorial**: See [demo notebook](https://github.com/dominp/isgri/blob/main/demo/lightcurve_walkthrough.ipynb) on GitHub
|
|
52
54
|
- **API docs**: All functions have docstrings - use `help(LightCurve)`
|