├── .gitignore ├── LICENSE ├── README.md ├── data └── example.npy ├── examples ├── 01-validate-pot.ipynb ├── 02-validate-spot.ipynb └── 03-validate-dspot.ipynb ├── figs ├── dspot_algorithm.png ├── dspot_demo.png ├── pot_algorithm.png ├── pot_demo.png ├── spot_algorithm.png └── spot_demo.png ├── pyproject.toml └── src └── peak_over_threshold ├── __init__.py ├── dspot.py ├── pot.py ├── spot.py └── utils ├── __init__.py ├── cal_threshold.py └── grimshaw.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbhua/peak-over-threshold/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbhua/peak-over-threshold/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbhua/peak-over-threshold/HEAD/README.md -------------------------------------------------------------------------------- /data/example.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbhua/peak-over-threshold/HEAD/data/example.npy -------------------------------------------------------------------------------- /examples/01-validate-pot.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbhua/peak-over-threshold/HEAD/examples/01-validate-pot.ipynb -------------------------------------------------------------------------------- /examples/02-validate-spot.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbhua/peak-over-threshold/HEAD/examples/02-validate-spot.ipynb -------------------------------------------------------------------------------- /examples/03-validate-dspot.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbhua/peak-over-threshold/HEAD/examples/03-validate-dspot.ipynb -------------------------------------------------------------------------------- /figs/dspot_algorithm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbhua/peak-over-threshold/HEAD/figs/dspot_algorithm.png -------------------------------------------------------------------------------- /figs/dspot_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbhua/peak-over-threshold/HEAD/figs/dspot_demo.png -------------------------------------------------------------------------------- /figs/pot_algorithm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbhua/peak-over-threshold/HEAD/figs/pot_algorithm.png -------------------------------------------------------------------------------- /figs/pot_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbhua/peak-over-threshold/HEAD/figs/pot_demo.png -------------------------------------------------------------------------------- /figs/spot_algorithm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbhua/peak-over-threshold/HEAD/figs/spot_algorithm.png -------------------------------------------------------------------------------- /figs/spot_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbhua/peak-over-threshold/HEAD/figs/spot_demo.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbhua/peak-over-threshold/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/peak_over_threshold/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/peak_over_threshold/dspot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbhua/peak-over-threshold/HEAD/src/peak_over_threshold/dspot.py -------------------------------------------------------------------------------- /src/peak_over_threshold/pot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbhua/peak-over-threshold/HEAD/src/peak_over_threshold/pot.py -------------------------------------------------------------------------------- /src/peak_over_threshold/spot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbhua/peak-over-threshold/HEAD/src/peak_over_threshold/spot.py -------------------------------------------------------------------------------- /src/peak_over_threshold/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/peak_over_threshold/utils/cal_threshold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbhua/peak-over-threshold/HEAD/src/peak_over_threshold/utils/cal_threshold.py -------------------------------------------------------------------------------- /src/peak_over_threshold/utils/grimshaw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbhua/peak-over-threshold/HEAD/src/peak_over_threshold/utils/grimshaw.py --------------------------------------------------------------------------------