├── .gitignore ├── LICENSE ├── README.md ├── data ├── 3B42RT_daily.2014.07.23.nc ├── Daily_clim_data_Auckland.csv ├── ISO_datetime.xls ├── NIWA_SOI.csv ├── SOI_time_series.xlsx ├── soi_nino.csv ├── sst_nino3.dat └── year_month_day.xlsx ├── notebooks ├── conda.ipynb ├── eofs_EOF_decomposition.ipynb ├── images │ ├── clim_sst.png │ └── split-apply-combine.png ├── index.css ├── index.ipynb ├── iris_cartopy.ipynb ├── load_style.py ├── pandas.ipynb ├── runipy.ipynb ├── sklearn.ipynb ├── sklearn_EOF_decomposition.ipynb ├── sklearn_classification.ipynb ├── sklearn_kmeans.ipynb ├── spharm.ipynb ├── statsmodels.ipynb ├── talk.css ├── talktools.py ├── wavelet_analysis.ipynb ├── wavelib.py └── xray.ipynb └── outputs ├── EOF.pkl ├── EOF_ERSST_PCs.csv ├── scaler_PCs.pkl ├── scaler_PCs.pkl_01.npy ├── scaler_PCs.pkl_02.npy └── scaler_sst.pkl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasfauchereau/metocean/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasfauchereau/metocean/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasfauchereau/metocean/HEAD/README.md -------------------------------------------------------------------------------- /data/3B42RT_daily.2014.07.23.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasfauchereau/metocean/HEAD/data/3B42RT_daily.2014.07.23.nc -------------------------------------------------------------------------------- /data/Daily_clim_data_Auckland.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasfauchereau/metocean/HEAD/data/Daily_clim_data_Auckland.csv -------------------------------------------------------------------------------- /data/ISO_datetime.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasfauchereau/metocean/HEAD/data/ISO_datetime.xls -------------------------------------------------------------------------------- /data/NIWA_SOI.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasfauchereau/metocean/HEAD/data/NIWA_SOI.csv -------------------------------------------------------------------------------- /data/SOI_time_series.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasfauchereau/metocean/HEAD/data/SOI_time_series.xlsx -------------------------------------------------------------------------------- /data/soi_nino.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasfauchereau/metocean/HEAD/data/soi_nino.csv -------------------------------------------------------------------------------- /data/sst_nino3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasfauchereau/metocean/HEAD/data/sst_nino3.dat -------------------------------------------------------------------------------- /data/year_month_day.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasfauchereau/metocean/HEAD/data/year_month_day.xlsx -------------------------------------------------------------------------------- /notebooks/conda.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasfauchereau/metocean/HEAD/notebooks/conda.ipynb -------------------------------------------------------------------------------- /notebooks/eofs_EOF_decomposition.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasfauchereau/metocean/HEAD/notebooks/eofs_EOF_decomposition.ipynb -------------------------------------------------------------------------------- /notebooks/images/clim_sst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasfauchereau/metocean/HEAD/notebooks/images/clim_sst.png -------------------------------------------------------------------------------- /notebooks/images/split-apply-combine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasfauchereau/metocean/HEAD/notebooks/images/split-apply-combine.png -------------------------------------------------------------------------------- /notebooks/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasfauchereau/metocean/HEAD/notebooks/index.css -------------------------------------------------------------------------------- /notebooks/index.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasfauchereau/metocean/HEAD/notebooks/index.ipynb -------------------------------------------------------------------------------- /notebooks/iris_cartopy.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasfauchereau/metocean/HEAD/notebooks/iris_cartopy.ipynb -------------------------------------------------------------------------------- /notebooks/load_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasfauchereau/metocean/HEAD/notebooks/load_style.py -------------------------------------------------------------------------------- /notebooks/pandas.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasfauchereau/metocean/HEAD/notebooks/pandas.ipynb -------------------------------------------------------------------------------- /notebooks/runipy.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasfauchereau/metocean/HEAD/notebooks/runipy.ipynb -------------------------------------------------------------------------------- /notebooks/sklearn.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasfauchereau/metocean/HEAD/notebooks/sklearn.ipynb -------------------------------------------------------------------------------- /notebooks/sklearn_EOF_decomposition.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasfauchereau/metocean/HEAD/notebooks/sklearn_EOF_decomposition.ipynb -------------------------------------------------------------------------------- /notebooks/sklearn_classification.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasfauchereau/metocean/HEAD/notebooks/sklearn_classification.ipynb -------------------------------------------------------------------------------- /notebooks/sklearn_kmeans.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasfauchereau/metocean/HEAD/notebooks/sklearn_kmeans.ipynb -------------------------------------------------------------------------------- /notebooks/spharm.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasfauchereau/metocean/HEAD/notebooks/spharm.ipynb -------------------------------------------------------------------------------- /notebooks/statsmodels.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasfauchereau/metocean/HEAD/notebooks/statsmodels.ipynb -------------------------------------------------------------------------------- /notebooks/talk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasfauchereau/metocean/HEAD/notebooks/talk.css -------------------------------------------------------------------------------- /notebooks/talktools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasfauchereau/metocean/HEAD/notebooks/talktools.py -------------------------------------------------------------------------------- /notebooks/wavelet_analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasfauchereau/metocean/HEAD/notebooks/wavelet_analysis.ipynb -------------------------------------------------------------------------------- /notebooks/wavelib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasfauchereau/metocean/HEAD/notebooks/wavelib.py -------------------------------------------------------------------------------- /notebooks/xray.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasfauchereau/metocean/HEAD/notebooks/xray.ipynb -------------------------------------------------------------------------------- /outputs/EOF.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasfauchereau/metocean/HEAD/outputs/EOF.pkl -------------------------------------------------------------------------------- /outputs/EOF_ERSST_PCs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasfauchereau/metocean/HEAD/outputs/EOF_ERSST_PCs.csv -------------------------------------------------------------------------------- /outputs/scaler_PCs.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasfauchereau/metocean/HEAD/outputs/scaler_PCs.pkl -------------------------------------------------------------------------------- /outputs/scaler_PCs.pkl_01.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasfauchereau/metocean/HEAD/outputs/scaler_PCs.pkl_01.npy -------------------------------------------------------------------------------- /outputs/scaler_PCs.pkl_02.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasfauchereau/metocean/HEAD/outputs/scaler_PCs.pkl_02.npy -------------------------------------------------------------------------------- /outputs/scaler_sst.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasfauchereau/metocean/HEAD/outputs/scaler_sst.pkl --------------------------------------------------------------------------------