├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── docs ├── AR_detector.rst ├── AR_tracer.rst ├── Compute-THR.rst ├── Data-preparation.rst ├── Detect-ARs.rst ├── Find-AR-axis.rst ├── LICENSE.rst ├── Makefile ├── Track-ARs.rst ├── ar_1984-01-04_06:00.png ├── ar_track_198424.png ├── compute_thr_multifile.rst ├── conf.py ├── fig16.png ├── fig2.png ├── fig3.png ├── funcs.rst ├── index.rst ├── make.bat ├── nn.png ├── plot.rst └── thr.rst ├── environment_py2.yml ├── environment_py3.yml ├── ipart ├── AR_detector.py ├── AR_tracer.py ├── __init__.py ├── thr.py └── utils │ ├── __init__.py │ ├── funcs.py │ ├── peak_prominence2d.py │ ├── plot.py │ └── rdp.py ├── joss ├── ar_track_198424.png ├── fig2.png ├── fig3.png ├── logo.png ├── paper.bib └── paper.md ├── notebooks ├── 1_compute_IVT.ipynb ├── 2_compute_THR.ipynb ├── 3_detect_ARs.ipynb ├── 4_track_ARs.ipynb ├── Index.ipynb ├── __init__.py ├── uflux_s_6_1984_Jan.nc └── vflux_s_6_1984_Jan.nc ├── scripts ├── __init__.py ├── compute_ivt.py ├── compute_thr_multifile.py ├── compute_thr_singlefile.py ├── detect_ARs.py ├── detect_ARs_generator_version.py ├── test_data.py └── trace_ARs.py ├── setup.py └── tests ├── __init__.py ├── fixtures ├── sample_record.csv └── uflux_vflux_ivt_test.nc ├── test_data.py ├── test_install.py ├── test_river_tracker1.py ├── test_river_tracker2.py └── test_thr.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include LICENSE 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/README.md -------------------------------------------------------------------------------- /docs/AR_detector.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/docs/AR_detector.rst -------------------------------------------------------------------------------- /docs/AR_tracer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/docs/AR_tracer.rst -------------------------------------------------------------------------------- /docs/Compute-THR.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/docs/Compute-THR.rst -------------------------------------------------------------------------------- /docs/Data-preparation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/docs/Data-preparation.rst -------------------------------------------------------------------------------- /docs/Detect-ARs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/docs/Detect-ARs.rst -------------------------------------------------------------------------------- /docs/Find-AR-axis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/docs/Find-AR-axis.rst -------------------------------------------------------------------------------- /docs/LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/docs/LICENSE.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/Track-ARs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/docs/Track-ARs.rst -------------------------------------------------------------------------------- /docs/ar_1984-01-04_06:00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/docs/ar_1984-01-04_06:00.png -------------------------------------------------------------------------------- /docs/ar_track_198424.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/docs/ar_track_198424.png -------------------------------------------------------------------------------- /docs/compute_thr_multifile.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/docs/compute_thr_multifile.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/fig16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/docs/fig16.png -------------------------------------------------------------------------------- /docs/fig2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/docs/fig2.png -------------------------------------------------------------------------------- /docs/fig3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/docs/fig3.png -------------------------------------------------------------------------------- /docs/funcs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/docs/funcs.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/nn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/docs/nn.png -------------------------------------------------------------------------------- /docs/plot.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/docs/plot.rst -------------------------------------------------------------------------------- /docs/thr.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/docs/thr.rst -------------------------------------------------------------------------------- /environment_py2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/environment_py2.yml -------------------------------------------------------------------------------- /environment_py3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/environment_py3.yml -------------------------------------------------------------------------------- /ipart/AR_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/ipart/AR_detector.py -------------------------------------------------------------------------------- /ipart/AR_tracer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/ipart/AR_tracer.py -------------------------------------------------------------------------------- /ipart/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/ipart/__init__.py -------------------------------------------------------------------------------- /ipart/thr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/ipart/thr.py -------------------------------------------------------------------------------- /ipart/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ipart/utils/funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/ipart/utils/funcs.py -------------------------------------------------------------------------------- /ipart/utils/peak_prominence2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/ipart/utils/peak_prominence2d.py -------------------------------------------------------------------------------- /ipart/utils/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/ipart/utils/plot.py -------------------------------------------------------------------------------- /ipart/utils/rdp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/ipart/utils/rdp.py -------------------------------------------------------------------------------- /joss/ar_track_198424.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/joss/ar_track_198424.png -------------------------------------------------------------------------------- /joss/fig2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/joss/fig2.png -------------------------------------------------------------------------------- /joss/fig3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/joss/fig3.png -------------------------------------------------------------------------------- /joss/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/joss/logo.png -------------------------------------------------------------------------------- /joss/paper.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/joss/paper.bib -------------------------------------------------------------------------------- /joss/paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/joss/paper.md -------------------------------------------------------------------------------- /notebooks/1_compute_IVT.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/notebooks/1_compute_IVT.ipynb -------------------------------------------------------------------------------- /notebooks/2_compute_THR.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/notebooks/2_compute_THR.ipynb -------------------------------------------------------------------------------- /notebooks/3_detect_ARs.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/notebooks/3_detect_ARs.ipynb -------------------------------------------------------------------------------- /notebooks/4_track_ARs.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/notebooks/4_track_ARs.ipynb -------------------------------------------------------------------------------- /notebooks/Index.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/notebooks/Index.ipynb -------------------------------------------------------------------------------- /notebooks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notebooks/uflux_s_6_1984_Jan.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/notebooks/uflux_s_6_1984_Jan.nc -------------------------------------------------------------------------------- /notebooks/vflux_s_6_1984_Jan.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/notebooks/vflux_s_6_1984_Jan.nc -------------------------------------------------------------------------------- /scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/compute_ivt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/scripts/compute_ivt.py -------------------------------------------------------------------------------- /scripts/compute_thr_multifile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/scripts/compute_thr_multifile.py -------------------------------------------------------------------------------- /scripts/compute_thr_singlefile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/scripts/compute_thr_singlefile.py -------------------------------------------------------------------------------- /scripts/detect_ARs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/scripts/detect_ARs.py -------------------------------------------------------------------------------- /scripts/detect_ARs_generator_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/scripts/detect_ARs_generator_version.py -------------------------------------------------------------------------------- /scripts/test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/scripts/test_data.py -------------------------------------------------------------------------------- /scripts/trace_ARs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/scripts/trace_ARs.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/sample_record.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/tests/fixtures/sample_record.csv -------------------------------------------------------------------------------- /tests/fixtures/uflux_vflux_ivt_test.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/tests/fixtures/uflux_vflux_ivt_test.nc -------------------------------------------------------------------------------- /tests/test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/tests/test_data.py -------------------------------------------------------------------------------- /tests/test_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/tests/test_install.py -------------------------------------------------------------------------------- /tests/test_river_tracker1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/tests/test_river_tracker1.py -------------------------------------------------------------------------------- /tests/test_river_tracker2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/tests/test_river_tracker2.py -------------------------------------------------------------------------------- /tests/test_thr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihesp/IPART/HEAD/tests/test_thr.py --------------------------------------------------------------------------------