pythonCRO 0.1.8__tar.gz → 0.1.9__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pythoncro-0.1.8/pythonCRO.egg-info → pythoncro-0.1.9}/PKG-INFO +2 -2
- {pythoncro-0.1.8 → pythoncro-0.1.9}/README.md +1 -1
- {pythoncro-0.1.8 → pythoncro-0.1.9}/pyCRO/__init__.py +2 -2
- {pythoncro-0.1.8 → pythoncro-0.1.9/pythonCRO.egg-info}/PKG-INFO +2 -2
- {pythoncro-0.1.8 → pythoncro-0.1.9}/LICENSE +0 -0
- {pythoncro-0.1.8 → pythoncro-0.1.9}/data/CESM1_LENS_ENSO_timeseries.nc +0 -0
- {pythoncro-0.1.8 → pythoncro-0.1.9}/data/CRO_logo.png +0 -0
- {pythoncro-0.1.8 → pythoncro-0.1.9}/data/CRO_parlib_v0.0.mat +0 -0
- {pythoncro-0.1.8 → pythoncro-0.1.9}/data/CROdata_timeseries_CMIP6.nc +0 -0
- {pythoncro-0.1.8 → pythoncro-0.1.9}/data/CROdata_timeseries_oras5.nc +0 -0
- {pythoncro-0.1.8 → pythoncro-0.1.9}/data/XRO_indices_oras5.nc +0 -0
- {pythoncro-0.1.8 → pythoncro-0.1.9}/pyCRO/analytic.py +0 -0
- {pythoncro-0.1.8 → pythoncro-0.1.9}/pyCRO/fit_LR.py +0 -0
- {pythoncro-0.1.8 → pythoncro-0.1.9}/pyCRO/fit_MAC.py +0 -0
- {pythoncro-0.1.8 → pythoncro-0.1.9}/pyCRO/fit_MLE.py +0 -0
- {pythoncro-0.1.8 → pythoncro-0.1.9}/pyCRO/fitting.py +0 -0
- {pythoncro-0.1.8 → pythoncro-0.1.9}/pyCRO/par_load.py +0 -0
- {pythoncro-0.1.8 → pythoncro-0.1.9}/pyCRO/solver.py +0 -0
- {pythoncro-0.1.8 → pythoncro-0.1.9}/pyCRO/table_default_fitting_method.txt +0 -0
- {pythoncro-0.1.8 → pythoncro-0.1.9}/pyCRO/utils.py +0 -0
- {pythoncro-0.1.8 → pythoncro-0.1.9}/pyCRO/visual.py +0 -0
- {pythoncro-0.1.8 → pythoncro-0.1.9}/pyproject.toml +0 -0
- {pythoncro-0.1.8 → pythoncro-0.1.9}/pythonCRO.egg-info/SOURCES.txt +0 -0
- {pythoncro-0.1.8 → pythoncro-0.1.9}/pythonCRO.egg-info/dependency_links.txt +0 -0
- {pythoncro-0.1.8 → pythoncro-0.1.9}/pythonCRO.egg-info/requires.txt +0 -0
- {pythoncro-0.1.8 → pythoncro-0.1.9}/pythonCRO.egg-info/top_level.txt +0 -0
- {pythoncro-0.1.8 → pythoncro-0.1.9}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pythonCRO
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.9
|
|
4
4
|
Summary: Community Recharge Oscillator
|
|
5
5
|
Author: CRO team led by Soong-Ki Kim and Sen Zhao
|
|
6
6
|
License: CC-BY-4.0
|
|
@@ -48,7 +48,7 @@ Key methodological foundations are described in Kim et al. (2025).
|
|
|
48
48
|
## Installation
|
|
49
49
|
|
|
50
50
|
```bash
|
|
51
|
-
pip install
|
|
51
|
+
pip install pythonCRO
|
|
52
52
|
```
|
|
53
53
|
|
|
54
54
|
---
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# __init__.py
|
|
2
2
|
|
|
3
|
-
__version__ = "0.1.
|
|
3
|
+
__version__ = "0.1.9"
|
|
4
4
|
|
|
5
5
|
from .fitting import RO_fitting
|
|
6
6
|
from .solver import RO_solver
|
|
@@ -13,4 +13,4 @@ from .par_load import par_load
|
|
|
13
13
|
from .fit_LR import fit_LR
|
|
14
14
|
from .fit_MLE import fit_MLE
|
|
15
15
|
|
|
16
|
-
from .visual import plot_RO_par, plot_ens_RO_par
|
|
16
|
+
from .visual import plot_RO_par, plot_ens_RO_par
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pythonCRO
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.9
|
|
4
4
|
Summary: Community Recharge Oscillator
|
|
5
5
|
Author: CRO team led by Soong-Ki Kim and Sen Zhao
|
|
6
6
|
License: CC-BY-4.0
|
|
@@ -48,7 +48,7 @@ Key methodological foundations are described in Kim et al. (2025).
|
|
|
48
48
|
## Installation
|
|
49
49
|
|
|
50
50
|
```bash
|
|
51
|
-
pip install
|
|
51
|
+
pip install pythonCRO
|
|
52
52
|
```
|
|
53
53
|
|
|
54
54
|
---
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|