├── GrADS ├── getSubXIRIXYLMSP.gs └── isfile.sh ├── LICENSE ├── Matlab ├── V1 │ ├── getFillValue.m │ ├── nctime2datestrdaily.m │ ├── setupNetCDF3D.m │ ├── writeNetCDFData3D.m │ └── writeNetCDFGlobalAtts.m └── V2 │ ├── hcsts │ ├── calcAnomsHCSTEmean.m │ ├── calcENSMEANFieldHCAST.m │ ├── getSubXIRIXYLMSP.m │ └── periodicCLIMO.m │ └── lib │ ├── getFillValue.m │ ├── nanfastsmooth.m │ ├── nctime2datestrdaily.m │ ├── readNetCDFData3D.m │ ├── setupNetCDF3D.m │ ├── writeNetCDFData3D.m │ └── writeNetCDFGlobalAtts.m ├── NCL └── getSubXFieldsIRIXYLMSP.ncl ├── Python ├── NAO_index │ └── point_based │ │ ├── README.rst │ │ ├── createNAO_index_template.py │ │ ├── generate_NAO_index.ksh │ │ └── submit_scripts │ │ └── submit_create_NAO_index.sh ├── README.rst ├── ci │ └── requirements-py36.yml ├── create_anomalies │ ├── README.rst │ ├── createanom_full_template.py │ ├── createanom_ts_template.py │ ├── generate_full_anom.ksh │ ├── generate_ts_anom.ksh │ ├── multimodel_ensemble │ │ ├── createts_daily_lead_template.py │ │ ├── generate_ts_daily_lead.ksh │ │ └── submit_scripts │ │ │ └── submit_create_ts_daily_lead.sh │ └── submit_scripts │ │ └── submit_create_ts_anom.sh ├── create_climatology │ ├── README.rst │ ├── createclim_full_template.py │ ├── createclim_ts_template.py │ ├── generate_full_clim.ksh │ ├── generate_ts_clim.ksh │ ├── img │ │ └── example.png │ └── submit_scripts │ │ └── submit_create_ts_clim.sh ├── create_obs_anomalies │ ├── ERA-Interim │ │ ├── README.rst │ │ ├── ci │ │ │ └── requirements-py35.yml │ │ ├── createobsanom_ts_template.py │ │ ├── generate_obs_ts_anom.ksh │ │ └── submit_scripts │ │ │ └── submit_create_obs_ts_anom.sh │ └── README.rst ├── download_data │ ├── README.rst │ ├── generate_full_py_ens_files.ksh │ ├── generate_ts_py_ens_files.ksh │ ├── getSubXdatafull_template.py │ ├── getSubXdatats_template.py │ └── submit_scripts │ │ ├── submit_full.sh │ │ └── submit_ts.sh └── utils │ ├── plotting │ ├── README.rst │ └── plot_NAO_skill.py │ └── skill_scores │ └── README.rst └── README.md /GrADS/getSubXIRIXYLMSP.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/GrADS/getSubXIRIXYLMSP.gs -------------------------------------------------------------------------------- /GrADS/isfile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/GrADS/isfile.sh -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/LICENSE -------------------------------------------------------------------------------- /Matlab/V1/getFillValue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/Matlab/V1/getFillValue.m -------------------------------------------------------------------------------- /Matlab/V1/nctime2datestrdaily.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/Matlab/V1/nctime2datestrdaily.m -------------------------------------------------------------------------------- /Matlab/V1/setupNetCDF3D.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/Matlab/V1/setupNetCDF3D.m -------------------------------------------------------------------------------- /Matlab/V1/writeNetCDFData3D.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/Matlab/V1/writeNetCDFData3D.m -------------------------------------------------------------------------------- /Matlab/V1/writeNetCDFGlobalAtts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/Matlab/V1/writeNetCDFGlobalAtts.m -------------------------------------------------------------------------------- /Matlab/V2/hcsts/calcAnomsHCSTEmean.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/Matlab/V2/hcsts/calcAnomsHCSTEmean.m -------------------------------------------------------------------------------- /Matlab/V2/hcsts/calcENSMEANFieldHCAST.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/Matlab/V2/hcsts/calcENSMEANFieldHCAST.m -------------------------------------------------------------------------------- /Matlab/V2/hcsts/getSubXIRIXYLMSP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/Matlab/V2/hcsts/getSubXIRIXYLMSP.m -------------------------------------------------------------------------------- /Matlab/V2/hcsts/periodicCLIMO.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/Matlab/V2/hcsts/periodicCLIMO.m -------------------------------------------------------------------------------- /Matlab/V2/lib/getFillValue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/Matlab/V2/lib/getFillValue.m -------------------------------------------------------------------------------- /Matlab/V2/lib/nanfastsmooth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/Matlab/V2/lib/nanfastsmooth.m -------------------------------------------------------------------------------- /Matlab/V2/lib/nctime2datestrdaily.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/Matlab/V2/lib/nctime2datestrdaily.m -------------------------------------------------------------------------------- /Matlab/V2/lib/readNetCDFData3D.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/Matlab/V2/lib/readNetCDFData3D.m -------------------------------------------------------------------------------- /Matlab/V2/lib/setupNetCDF3D.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/Matlab/V2/lib/setupNetCDF3D.m -------------------------------------------------------------------------------- /Matlab/V2/lib/writeNetCDFData3D.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/Matlab/V2/lib/writeNetCDFData3D.m -------------------------------------------------------------------------------- /Matlab/V2/lib/writeNetCDFGlobalAtts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/Matlab/V2/lib/writeNetCDFGlobalAtts.m -------------------------------------------------------------------------------- /NCL/getSubXFieldsIRIXYLMSP.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/NCL/getSubXFieldsIRIXYLMSP.ncl -------------------------------------------------------------------------------- /Python/NAO_index/point_based/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/Python/NAO_index/point_based/README.rst -------------------------------------------------------------------------------- /Python/NAO_index/point_based/createNAO_index_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/Python/NAO_index/point_based/createNAO_index_template.py -------------------------------------------------------------------------------- /Python/NAO_index/point_based/generate_NAO_index.ksh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/Python/NAO_index/point_based/generate_NAO_index.ksh -------------------------------------------------------------------------------- /Python/NAO_index/point_based/submit_scripts/submit_create_NAO_index.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/Python/NAO_index/point_based/submit_scripts/submit_create_NAO_index.sh -------------------------------------------------------------------------------- /Python/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/Python/README.rst -------------------------------------------------------------------------------- /Python/ci/requirements-py36.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/Python/ci/requirements-py36.yml -------------------------------------------------------------------------------- /Python/create_anomalies/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/Python/create_anomalies/README.rst -------------------------------------------------------------------------------- /Python/create_anomalies/createanom_full_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/Python/create_anomalies/createanom_full_template.py -------------------------------------------------------------------------------- /Python/create_anomalies/createanom_ts_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/Python/create_anomalies/createanom_ts_template.py -------------------------------------------------------------------------------- /Python/create_anomalies/generate_full_anom.ksh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/Python/create_anomalies/generate_full_anom.ksh -------------------------------------------------------------------------------- /Python/create_anomalies/generate_ts_anom.ksh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/Python/create_anomalies/generate_ts_anom.ksh -------------------------------------------------------------------------------- /Python/create_anomalies/multimodel_ensemble/createts_daily_lead_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/Python/create_anomalies/multimodel_ensemble/createts_daily_lead_template.py -------------------------------------------------------------------------------- /Python/create_anomalies/multimodel_ensemble/generate_ts_daily_lead.ksh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/Python/create_anomalies/multimodel_ensemble/generate_ts_daily_lead.ksh -------------------------------------------------------------------------------- /Python/create_anomalies/multimodel_ensemble/submit_scripts/submit_create_ts_daily_lead.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/Python/create_anomalies/multimodel_ensemble/submit_scripts/submit_create_ts_daily_lead.sh -------------------------------------------------------------------------------- /Python/create_anomalies/submit_scripts/submit_create_ts_anom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/Python/create_anomalies/submit_scripts/submit_create_ts_anom.sh -------------------------------------------------------------------------------- /Python/create_climatology/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/Python/create_climatology/README.rst -------------------------------------------------------------------------------- /Python/create_climatology/createclim_full_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/Python/create_climatology/createclim_full_template.py -------------------------------------------------------------------------------- /Python/create_climatology/createclim_ts_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/Python/create_climatology/createclim_ts_template.py -------------------------------------------------------------------------------- /Python/create_climatology/generate_full_clim.ksh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/Python/create_climatology/generate_full_clim.ksh -------------------------------------------------------------------------------- /Python/create_climatology/generate_ts_clim.ksh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/Python/create_climatology/generate_ts_clim.ksh -------------------------------------------------------------------------------- /Python/create_climatology/img/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/Python/create_climatology/img/example.png -------------------------------------------------------------------------------- /Python/create_climatology/submit_scripts/submit_create_ts_clim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/Python/create_climatology/submit_scripts/submit_create_ts_clim.sh -------------------------------------------------------------------------------- /Python/create_obs_anomalies/ERA-Interim/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/Python/create_obs_anomalies/ERA-Interim/README.rst -------------------------------------------------------------------------------- /Python/create_obs_anomalies/ERA-Interim/ci/requirements-py35.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/Python/create_obs_anomalies/ERA-Interim/ci/requirements-py35.yml -------------------------------------------------------------------------------- /Python/create_obs_anomalies/ERA-Interim/createobsanom_ts_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/Python/create_obs_anomalies/ERA-Interim/createobsanom_ts_template.py -------------------------------------------------------------------------------- /Python/create_obs_anomalies/ERA-Interim/generate_obs_ts_anom.ksh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/Python/create_obs_anomalies/ERA-Interim/generate_obs_ts_anom.ksh -------------------------------------------------------------------------------- /Python/create_obs_anomalies/ERA-Interim/submit_scripts/submit_create_obs_ts_anom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/Python/create_obs_anomalies/ERA-Interim/submit_scripts/submit_create_obs_ts_anom.sh -------------------------------------------------------------------------------- /Python/create_obs_anomalies/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/Python/create_obs_anomalies/README.rst -------------------------------------------------------------------------------- /Python/download_data/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/Python/download_data/README.rst -------------------------------------------------------------------------------- /Python/download_data/generate_full_py_ens_files.ksh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/Python/download_data/generate_full_py_ens_files.ksh -------------------------------------------------------------------------------- /Python/download_data/generate_ts_py_ens_files.ksh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/Python/download_data/generate_ts_py_ens_files.ksh -------------------------------------------------------------------------------- /Python/download_data/getSubXdatafull_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/Python/download_data/getSubXdatafull_template.py -------------------------------------------------------------------------------- /Python/download_data/getSubXdatats_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/Python/download_data/getSubXdatats_template.py -------------------------------------------------------------------------------- /Python/download_data/submit_scripts/submit_full.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/Python/download_data/submit_scripts/submit_full.sh -------------------------------------------------------------------------------- /Python/download_data/submit_scripts/submit_ts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/Python/download_data/submit_scripts/submit_ts.sh -------------------------------------------------------------------------------- /Python/utils/plotting/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/Python/utils/plotting/README.rst -------------------------------------------------------------------------------- /Python/utils/plotting/plot_NAO_skill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/Python/utils/plotting/plot_NAO_skill.py -------------------------------------------------------------------------------- /Python/utils/skill_scores/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/Python/utils/skill_scores/README.rst -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpegion/SubX/HEAD/README.md --------------------------------------------------------------------------------