7B. Precipitation Distribution

Reference:

Ahn, M.-S., P. A. Ullrich, P. J. Gleckler, J. Lee, A. C. Ordonez, and A. G. Pendergrass, 2023: Evaluating Precipitation Distributions at Regional Scales: A Benchmarking Framework and Application to CMIP5 and CMIP6. Geoscientific Model Development, 16, 3927–3951, doi: 10.5194/gmd-16-3927-2023

Running the code

[1]:
%%bash
precip_distribution_driver.py --help
usage: precip_distribution_driver.py [-h] [--parameters PARAMETERS]
                                     [--diags OTHER_PARAMETERS [OTHER_PARAMETERS ...]]
                                     [--mip MIP] [--mod MOD] [--var VAR]
                                     [--frq FRQ] [--modpath MODPATH]
                                     [--results_dir RESULTS_DIR]
                                     [--case_id CASE_ID] [--prd PRD [PRD ...]]
                                     [--fac FAC] [--res RES [RES ...]]
                                     [--ref REF] [--ref_dir REF_DIR]
                                     [--exp EXP] [--ver VER] [--cmec]
                                     [--no_cmec]

options:
  -h, --help            show this help message and exit
  --parameters PARAMETERS, -p PARAMETERS
  --diags OTHER_PARAMETERS [OTHER_PARAMETERS ...], -d OTHER_PARAMETERS [OTHER_PARAMETERS ...]
                        Path to other user-defined parameter file. (default:
                        None)
  --mip MIP             cmip5, cmip6 or other mip (default: None)
  --mod MOD             model (default: None)
  --var VAR             pr or other variable (default: None)
  --frq FRQ             day, 3hr or other frequency (default: None)
  --modpath MODPATH     data directory path (default: None)
  --results_dir RESULTS_DIR
                        results directory path (default: None)
  --case_id CASE_ID     case_id with date (default: None)
  --prd PRD [PRD ...]   start- and end-year for analysis (e.g., 1985 2004)
                        (default: None)
  --fac FAC             factor to make unit of [mm/day] (default: None)
  --res RES [RES ...]   list of target horizontal resolution [degree] for
                        interporation (lon, lat) (default: None)
  --ref REF             reference data (default: None)
  --ref_dir REF_DIR     reference directory path (default: None)
  --exp EXP             e.g., historical or amip (default: None)
  --ver VER             version (default: None)
  --cmec                Use to save CMEC format metrics JSON (default: False)
  --no_cmec             Do not save CMEC format metrics JSON (default: False)

Prepare to run

[2]:
from user_choices import demo_data_directory, demo_output_directory

Input data files are daily pr time series.

[3]:
import os

input_data_ref = demo_data_directory + '/obs4MIPs_PCMDI_daily/NASA-JPL/GPCP-1-3/day/pr/gn/latest/' + 'pr_day_GPCP-1-3_PCMDI_gn_19961002-20170101.nc'
input_data_ref_dir = os.path.dirname(input_data_ref)
input_data_ref_file = os.path.basename(input_data_ref)

input_data_model = demo_data_directory + '/CMIP5_demo_timeseries/historical/atmos/day/pr/' + 'pr_day_GISS-E2-H_historical_r6i1p1_20000101-20051231.nc'
input_data_model_dir = os.path.dirname(input_data_model)
input_data_model_file = os.path.basename(input_data_model)

output_dir = demo_output_directory + '/precip_distribution/'

Run for the reference dataset (GPCP)

Below process takes about 24 minutes

[4]:
!precip_distribution_driver.py \
    --mip obs \
    --mod GPCP \
    --exp historical \
    --var pr \
    --frq day \
    --modpath $input_data_ref_dir \
    --mod $input_data_ref_file \
    --results_dir $output_dir \
    --case_id "pr_distribution_GPCP" \
    --prd 2000 2001 \
    --fac 86400 \
    --res 2 2 \
    --ref GPCP-1-3 \
    --ref_dir $input_data_ref_dir
demo_data_tmp/obs4MIPs_PCMDI_daily/NASA-JPL/GPCP-1-3/day/pr/gn/latest
pr_day_GPCP-1-3_PCMDI_gn_19961002-20170101.nc
[2000, 2001]
[2, 2]
Ref: GPCP-1-3
demo_output_tmp/precip_distribution/
demo_output_tmp/precip_distribution/
demo_output_tmp/precip_distribution/
['demo_data_tmp/obs4MIPs_PCMDI_daily/NASA-JPL/GPCP-1-3/day/pr/gn/latest/pr_day_GPCP-1-3_PCMDI_gn_19961002-20170101.nc']
dat, cal: GPCP-1-3 gregorian
Completed regridding (via Regrid_xr) from (366, 180, 360) to (366, 90, 180)
2000 (366, 90, 180)
Completed regridding (via Regrid_xr) from (365, 180, 360) to (365, 90, 180)
2001 (731, 90, 180)
im, mon: 0 ANN
start MakeDists
completed MakeDists
start CalcRainMetrics for each grid point
completed CalcRainMetrics for each grid point
im, mon: 1 MAM
start MakeDists
completed MakeDists
start CalcRainMetrics for each grid point
completed CalcRainMetrics for each grid point
im, mon: 2 JJA
start MakeDists
completed MakeDists
start CalcRainMetrics for each grid point
completed CalcRainMetrics for each grid point
im, mon: 3 SON
start MakeDists
completed MakeDists
start CalcRainMetrics for each grid point
completed CalcRainMetrics for each grid point
im, mon: 4 DJF
start MakeDists
completed MakeDists
start CalcRainMetrics for each grid point
completed CalcRainMetrics for each grid point
im, mon: 5 JAN
start MakeDists
completed MakeDists
start CalcRainMetrics for each grid point
completed CalcRainMetrics for each grid point
im, mon: 6 FEB
start MakeDists
completed MakeDists
start CalcRainMetrics for each grid point
completed CalcRainMetrics for each grid point
im, mon: 7 MAR
start MakeDists
completed MakeDists
start CalcRainMetrics for each grid point
completed CalcRainMetrics for each grid point
im, mon: 8 APR
start MakeDists
completed MakeDists
start CalcRainMetrics for each grid point
completed CalcRainMetrics for each grid point
im, mon: 9 MAY
start MakeDists
completed MakeDists
start CalcRainMetrics for each grid point
completed CalcRainMetrics for each grid point
im, mon: 10 JUN
start MakeDists
completed MakeDists
start CalcRainMetrics for each grid point
completed CalcRainMetrics for each grid point
im, mon: 11 JUL
start MakeDists
completed MakeDists
start CalcRainMetrics for each grid point
completed CalcRainMetrics for each grid point
im, mon: 12 AUG
start MakeDists
completed MakeDists
start CalcRainMetrics for each grid point
completed CalcRainMetrics for each grid point
im, mon: 13 SEP
start MakeDists
completed MakeDists
start CalcRainMetrics for each grid point
completed CalcRainMetrics for each grid point
im, mon: 14 OCT
start MakeDists
completed MakeDists
start CalcRainMetrics for each grid point
completed CalcRainMetrics for each grid point
im, mon: 15 NOV
start MakeDists
completed MakeDists
start CalcRainMetrics for each grid point
completed CalcRainMetrics for each grid point
im, mon: 16 DEC
start MakeDists
completed MakeDists
start CalcRainMetrics for each grid point
completed CalcRainMetrics for each grid point
d.shape: (17, 146, 90, 180)
type d: <class 'xarray.core.dataarray.DataArray'>
d.shape: (17, 146, 90, 180)
type d: <class 'xarray.core.dataarray.DataArray'>
(2, 17, 146, 12)
dat: GPCP-1-3 ref: GPCP-1-3
Completed domain metrics
<regionmask.Regions 'Heavy/Moderate/Light precipitating regions'>
overlap:  None

Regions:
0 HR    Heavy precipitating region
1 MR Moderate precipitating region
2 LR    Light precipitating region

[3 regions]
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/regionmask/core/mask.py:444: UserWarning: Detected overlapping regions. As of v0.11.0 these are correctly taken into account. Note, however, that a different mask is returned than with older versions of regionmask. To suppress this warning, set `overlap=True` (to restore the old, incorrect, behaviour, set `overlap=False`).
  warnings.warn(
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/regionmask/core/mask.py:444: UserWarning: Detected overlapping regions. As of v0.11.0 these are correctly taken into account. Note, however, that a different mask is returned than with older versions of regionmask. To suppress this warning, set `overlap=True` (to restore the old, incorrect, behaviour, set `overlap=False`).
  warnings.warn(
(2, 17, 146, 36)
dat: GPCP-1-3 ref: GPCP-1-3
Completed clustering domain metrics
Downloading file 'IPCC-WGI-reference-regions-v4.zip' from 'https://github.com/regionmask/regionmask/raw/v0.12.1/data/IPCC-WGI-reference-regions-v4.zip' to '/Users/lee1043/Library/Caches/regionmask/v0.12.1'.
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/regionmask/core/mask.py:179: FutureWarning: Passing 'lon_name' and 'lat_name' was deprecated in v0.10.0. Please pass the coordinates directly, e.g., `mask*(ds[lon_name], ds[lat_name])`.
  warnings.warn(
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/regionmask/core/mask.py:179: FutureWarning: Passing 'lon_name' and 'lat_name' was deprecated in v0.10.0. Please pass the coordinates directly, e.g., `mask*(ds[lon_name], ds[lat_name])`.
  warnings.warn(
ddom.shape: (2, 17, 146, 62)
dat: GPCP-1-3 ref: GPCP-1-3
Completed AR6 domain metrics
INFO::2025-09-09 14:53::pcmdi_metrics:: Results saved to a json file: /Users/lee1043/Documents/Research/git/pcmdi_metrics_20230620_pcmdi/pcmdi_metrics/doc/jupyter/Demo/demo_output_tmp/precip_distribution/dist_frq.amt_metrics_domain_regrid.180x90_GPCP-1-3.json
2025-09-09 14:53:12,744 [INFO]: base.py(write:344) >> Results saved to a json file: /Users/lee1043/Documents/Research/git/pcmdi_metrics_20230620_pcmdi/pcmdi_metrics/doc/jupyter/Demo/demo_output_tmp/precip_distribution/dist_frq.amt_metrics_domain_regrid.180x90_GPCP-1-3.json
2025-09-09 14:53:12,744 [INFO]: base.py(write:344) >> Results saved to a json file: /Users/lee1043/Documents/Research/git/pcmdi_metrics_20230620_pcmdi/pcmdi_metrics/doc/jupyter/Demo/demo_output_tmp/precip_distribution/dist_frq.amt_metrics_domain_regrid.180x90_GPCP-1-3.json
INFO::2025-09-09 14:53::pcmdi_metrics:: Results saved to a json file: /Users/lee1043/Documents/Research/git/pcmdi_metrics_20230620_pcmdi/pcmdi_metrics/doc/jupyter/Demo/demo_output_tmp/precip_distribution/dist_frq.amt_metrics_domain3C_regrid.180x90_GPCP-1-3.json
2025-09-09 14:53:22,401 [INFO]: base.py(write:344) >> Results saved to a json file: /Users/lee1043/Documents/Research/git/pcmdi_metrics_20230620_pcmdi/pcmdi_metrics/doc/jupyter/Demo/demo_output_tmp/precip_distribution/dist_frq.amt_metrics_domain3C_regrid.180x90_GPCP-1-3.json
2025-09-09 14:53:22,401 [INFO]: base.py(write:344) >> Results saved to a json file: /Users/lee1043/Documents/Research/git/pcmdi_metrics_20230620_pcmdi/pcmdi_metrics/doc/jupyter/Demo/demo_output_tmp/precip_distribution/dist_frq.amt_metrics_domain3C_regrid.180x90_GPCP-1-3.json
INFO::2025-09-09 14:53::pcmdi_metrics:: Results saved to a json file: /Users/lee1043/Documents/Research/git/pcmdi_metrics_20230620_pcmdi/pcmdi_metrics/doc/jupyter/Demo/demo_output_tmp/precip_distribution/dist_frq.amt_metrics_domainAR6_regrid.180x90_GPCP-1-3.json
2025-09-09 14:53:32,217 [INFO]: base.py(write:344) >> Results saved to a json file: /Users/lee1043/Documents/Research/git/pcmdi_metrics_20230620_pcmdi/pcmdi_metrics/doc/jupyter/Demo/demo_output_tmp/precip_distribution/dist_frq.amt_metrics_domainAR6_regrid.180x90_GPCP-1-3.json
2025-09-09 14:53:32,217 [INFO]: base.py(write:344) >> Results saved to a json file: /Users/lee1043/Documents/Research/git/pcmdi_metrics_20230620_pcmdi/pcmdi_metrics/doc/jupyter/Demo/demo_output_tmp/precip_distribution/dist_frq.amt_metrics_domainAR6_regrid.180x90_GPCP-1-3.json
Completed metrics from precipitation frequency and amount distributions
im, mon: 0 ANN
dat, mon, dmon.shape: GPCP-1-3 ANN (731, 90, 180)
2000 (366, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2000 pfrac.shape is (366, 90, 180), but (365, 90, 180) is used
2001 (365, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2001 pfrac.shape is (365, 90, 180), but (365, 90, 180) is used
im, mon: 1 MAM
dat, mon, dmon.shape: GPCP-1-3 MAM (731, 90, 180)
2000 (366, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2000 pfrac.shape is (366, 90, 180), but (92, 90, 180) is used
2001 (365, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2001 pfrac.shape is (365, 90, 180), but (92, 90, 180) is used
im, mon: 2 JJA
dat, mon, dmon.shape: GPCP-1-3 JJA (731, 90, 180)
2000 (366, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2000 pfrac.shape is (366, 90, 180), but (92, 90, 180) is used
2001 (365, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2001 pfrac.shape is (365, 90, 180), but (92, 90, 180) is used
im, mon: 3 SON
dat, mon, dmon.shape: GPCP-1-3 SON (731, 90, 180)
2000 (366, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2000 pfrac.shape is (366, 90, 180), but (91, 90, 180) is used
2001 (365, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2001 pfrac.shape is (365, 90, 180), but (91, 90, 180) is used
im, mon: 4 DJF
dat, mon, dmon.shape: GPCP-1-3 DJF (640, 90, 180)
2000 (91, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2000 pfrac.shape is (91, 90, 180), but (90, 90, 180) is used
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:334: RuntimeWarning: All-NaN slice encountered
  ndm = np.nanmedian(cfy, axis=0)  # ignore years with zero precip
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:335: RuntimeWarning: All-NaN slice encountered
  prdyfracm = np.nanmedian(prdyfracyr, axis=0)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:336: RuntimeWarning: All-NaN slice encountered
  sdiim = np.nanmedian(sdiiyr, axis=0)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:345: RuntimeWarning: All-NaN slice encountered
  pfracm = np.nanmedian(pfracyr, axis=0)
im, mon: 5 JAN
dat, mon, dmon.shape: GPCP-1-3 JAN (731, 90, 180)
2000 (366, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2000 pfrac.shape is (366, 90, 180), but (31, 90, 180) is used
2001 (365, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2001 pfrac.shape is (365, 90, 180), but (31, 90, 180) is used
im, mon: 6 FEB
dat, mon, dmon.shape: GPCP-1-3 FEB (731, 90, 180)
2000 (366, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2000 pfrac.shape is (366, 90, 180), but (28, 90, 180) is used
2001 (365, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2001 pfrac.shape is (365, 90, 180), but (28, 90, 180) is used
im, mon: 7 MAR
dat, mon, dmon.shape: GPCP-1-3 MAR (731, 90, 180)
2000 (366, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2000 pfrac.shape is (366, 90, 180), but (31, 90, 180) is used
2001 (365, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2001 pfrac.shape is (365, 90, 180), but (31, 90, 180) is used
im, mon: 8 APR
dat, mon, dmon.shape: GPCP-1-3 APR (731, 90, 180)
2000 (366, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2000 pfrac.shape is (366, 90, 180), but (30, 90, 180) is used
2001 (365, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2001 pfrac.shape is (365, 90, 180), but (30, 90, 180) is used
im, mon: 9 MAY
dat, mon, dmon.shape: GPCP-1-3 MAY (731, 90, 180)
2000 (366, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2000 pfrac.shape is (366, 90, 180), but (31, 90, 180) is used
2001 (365, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2001 pfrac.shape is (365, 90, 180), but (31, 90, 180) is used
im, mon: 10 JUN
dat, mon, dmon.shape: GPCP-1-3 JUN (731, 90, 180)
2000 (366, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2000 pfrac.shape is (366, 90, 180), but (30, 90, 180) is used
2001 (365, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2001 pfrac.shape is (365, 90, 180), but (30, 90, 180) is used
im, mon: 11 JUL
dat, mon, dmon.shape: GPCP-1-3 JUL (731, 90, 180)
2000 (366, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2000 pfrac.shape is (366, 90, 180), but (31, 90, 180) is used
2001 (365, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2001 pfrac.shape is (365, 90, 180), but (31, 90, 180) is used
im, mon: 12 AUG
dat, mon, dmon.shape: GPCP-1-3 AUG (731, 90, 180)
2000 (366, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2000 pfrac.shape is (366, 90, 180), but (31, 90, 180) is used
2001 (365, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2001 pfrac.shape is (365, 90, 180), but (31, 90, 180) is used
im, mon: 13 SEP
dat, mon, dmon.shape: GPCP-1-3 SEP (731, 90, 180)
2000 (366, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2000 pfrac.shape is (366, 90, 180), but (30, 90, 180) is used
2001 (365, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2001 pfrac.shape is (365, 90, 180), but (30, 90, 180) is used
im, mon: 14 OCT
dat, mon, dmon.shape: GPCP-1-3 OCT (731, 90, 180)
2000 (366, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2000 pfrac.shape is (366, 90, 180), but (31, 90, 180) is used
2001 (365, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2001 pfrac.shape is (365, 90, 180), but (31, 90, 180) is used
im, mon: 15 NOV
dat, mon, dmon.shape: GPCP-1-3 NOV (731, 90, 180)
2000 (366, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2000 pfrac.shape is (366, 90, 180), but (30, 90, 180) is used
2001 (365, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2001 pfrac.shape is (365, 90, 180), but (30, 90, 180) is used
im, mon: 16 DEC
dat, mon, dmon.shape: GPCP-1-3 DEC (731, 90, 180)
2000 (366, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2000 pfrac.shape is (366, 90, 180), but (31, 90, 180) is used
2001 (365, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2001 pfrac.shape is (365, 90, 180), but (31, 90, 180) is used
Completed domain median
Completed domain median
Completed domain median
<regionmask.Regions 'Heavy/Moderate/Light precipitating regions'>
overlap:  None

Regions:
0 HR    Heavy precipitating region
1 MR Moderate precipitating region
2 LR    Light precipitating region

[3 regions]
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/regionmask/core/mask.py:444: UserWarning: Detected overlapping regions. As of v0.11.0 these are correctly taken into account. Note, however, that a different mask is returned than with older versions of regionmask. To suppress this warning, set `overlap=True` (to restore the old, incorrect, behaviour, set `overlap=False`).
  warnings.warn(
Completed clustering domain median
<regionmask.Regions 'Heavy/Moderate/Light precipitating regions'>
overlap:  None

Regions:
0 HR    Heavy precipitating region
1 MR Moderate precipitating region
2 LR    Light precipitating region

[3 regions]
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/regionmask/core/mask.py:444: UserWarning: Detected overlapping regions. As of v0.11.0 these are correctly taken into account. Note, however, that a different mask is returned than with older versions of regionmask. To suppress this warning, set `overlap=True` (to restore the old, incorrect, behaviour, set `overlap=False`).
  warnings.warn(
Completed clustering domain median
<regionmask.Regions 'Heavy/Moderate/Light precipitating regions'>
overlap:  None

Regions:
0 HR    Heavy precipitating region
1 MR Moderate precipitating region
2 LR    Light precipitating region

[3 regions]
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/regionmask/core/mask.py:444: UserWarning: Detected overlapping regions. As of v0.11.0 these are correctly taken into account. Note, however, that a different mask is returned than with older versions of regionmask. To suppress this warning, set `overlap=True` (to restore the old, incorrect, behaviour, set `overlap=False`).
  warnings.warn(
Completed clustering domain median
Completed AR6 domain median
Completed AR6 domain median
Completed AR6 domain median
INFO::2025-09-09 14:54::pcmdi_metrics:: Results saved to a json file: /Users/lee1043/Documents/Research/git/pcmdi_metrics_20230620_pcmdi/pcmdi_metrics/doc/jupyter/Demo/demo_output_tmp/precip_distribution/dist_cumfrac_metrics_domain.median_regrid.180x90_GPCP-1-3.json
2025-09-09 14:54:26,219 [INFO]: base.py(write:344) >> Results saved to a json file: /Users/lee1043/Documents/Research/git/pcmdi_metrics_20230620_pcmdi/pcmdi_metrics/doc/jupyter/Demo/demo_output_tmp/precip_distribution/dist_cumfrac_metrics_domain.median_regrid.180x90_GPCP-1-3.json
2025-09-09 14:54:26,219 [INFO]: base.py(write:344) >> Results saved to a json file: /Users/lee1043/Documents/Research/git/pcmdi_metrics_20230620_pcmdi/pcmdi_metrics/doc/jupyter/Demo/demo_output_tmp/precip_distribution/dist_cumfrac_metrics_domain.median_regrid.180x90_GPCP-1-3.json
INFO::2025-09-09 14:54::pcmdi_metrics:: Results saved to a json file: /Users/lee1043/Documents/Research/git/pcmdi_metrics_20230620_pcmdi/pcmdi_metrics/doc/jupyter/Demo/demo_output_tmp/precip_distribution/dist_cumfrac_metrics_domain.median.3C_regrid.180x90_GPCP-1-3.json
2025-09-09 14:54:36,217 [INFO]: base.py(write:344) >> Results saved to a json file: /Users/lee1043/Documents/Research/git/pcmdi_metrics_20230620_pcmdi/pcmdi_metrics/doc/jupyter/Demo/demo_output_tmp/precip_distribution/dist_cumfrac_metrics_domain.median.3C_regrid.180x90_GPCP-1-3.json
2025-09-09 14:54:36,217 [INFO]: base.py(write:344) >> Results saved to a json file: /Users/lee1043/Documents/Research/git/pcmdi_metrics_20230620_pcmdi/pcmdi_metrics/doc/jupyter/Demo/demo_output_tmp/precip_distribution/dist_cumfrac_metrics_domain.median.3C_regrid.180x90_GPCP-1-3.json
INFO::2025-09-09 14:54::pcmdi_metrics:: Results saved to a json file: /Users/lee1043/Documents/Research/git/pcmdi_metrics_20230620_pcmdi/pcmdi_metrics/doc/jupyter/Demo/demo_output_tmp/precip_distribution/dist_cumfrac_metrics_domain.median.AR6_regrid.180x90_GPCP-1-3.json
2025-09-09 14:54:45,983 [INFO]: base.py(write:344) >> Results saved to a json file: /Users/lee1043/Documents/Research/git/pcmdi_metrics_20230620_pcmdi/pcmdi_metrics/doc/jupyter/Demo/demo_output_tmp/precip_distribution/dist_cumfrac_metrics_domain.median.AR6_regrid.180x90_GPCP-1-3.json
2025-09-09 14:54:45,983 [INFO]: base.py(write:344) >> Results saved to a json file: /Users/lee1043/Documents/Research/git/pcmdi_metrics_20230620_pcmdi/pcmdi_metrics/doc/jupyter/Demo/demo_output_tmp/precip_distribution/dist_cumfrac_metrics_domain.median.AR6_regrid.180x90_GPCP-1-3.json
Completed metrics from precipitation cumulative distributions

Generated output files:

[5]:
!ls {demo_output_directory}/precip_distribution/*GPCP*
demo_output_tmp/precip_distribution/dist_cumfrac_metrics_domain.median.3C_regrid.180x90_GPCP-1-3.json
demo_output_tmp/precip_distribution/dist_cumfrac_metrics_domain.median.AR6_regrid.180x90_GPCP-1-3.json
demo_output_tmp/precip_distribution/dist_cumfrac_metrics_domain.median_regrid.180x90_GPCP-1-3.json
demo_output_tmp/precip_distribution/dist_cumfrac_metrics_regrid.180x90_GPCP-1-3.nc
demo_output_tmp/precip_distribution/dist_cumfrac_regrid.180x90_GPCP-1-3.nc
demo_output_tmp/precip_distribution/dist_frq.amt_domain3C_regrid.180x90_GPCP-1-3.nc
demo_output_tmp/precip_distribution/dist_frq.amt_domainAR6_regrid.180x90_GPCP-1-3.nc
demo_output_tmp/precip_distribution/dist_frq.amt_domain_regrid.180x90_GPCP-1-3.nc
demo_output_tmp/precip_distribution/dist_frq.amt_metrics_domain3C_regrid.180x90_GPCP-1-3.json
demo_output_tmp/precip_distribution/dist_frq.amt_metrics_domainAR6_regrid.180x90_GPCP-1-3.json
demo_output_tmp/precip_distribution/dist_frq.amt_metrics_domain_regrid.180x90_GPCP-1-3.json
demo_output_tmp/precip_distribution/dist_frq.amt_metrics_regrid.180x90_GPCP-1-3.nc
demo_output_tmp/precip_distribution/dist_frq.amt_regrid.180x90_GPCP-1-3.nc

Run for a model

Below process takes about 22 minutes

[6]:
!precip_distribution_driver.py \
    --mip cmip5 \
    --mod GISS-E2-H \
    --exp historical \
    --var pr \
    --frq day \
    --modpath $input_data_model_dir \
    --mod $input_data_model_file \
    --results_dir $output_dir \
    --case_id "pr_distribution_GISS-E2-H" \
    --prd 2000 2001 \
    --fac 86400 \
    --res 2 2 \
    --ref GPCP-1-3 \
    --ref_dir $output_dir  # Need the interim results from the previous run
demo_data_tmp/CMIP5_demo_timeseries/historical/atmos/day/pr
pr_day_GISS-E2-H_historical_r6i1p1_20000101-20051231.nc
[2000, 2001]
[2, 2]
Ref: GPCP-1-3
demo_output_tmp/precip_distribution/
demo_output_tmp/precip_distribution/
demo_output_tmp/precip_distribution/
['demo_data_tmp/CMIP5_demo_timeseries/historical/atmos/day/pr/pr_day_GISS-E2-H_historical_r6i1p1_20000101-20051231.nc']
dat, cal: GISS-E2-H.r6i1p1 365_day
Completed regridding (via Regrid_xr) from (365, 90, 144) to (365, 90, 180)
2000 (365, 90, 180)
Completed regridding (via Regrid_xr) from (365, 90, 144) to (365, 90, 180)
2001 (730, 90, 180)
im, mon: 0 ANN
start MakeDists
completed MakeDists
start CalcRainMetrics for each grid point
completed CalcRainMetrics for each grid point
im, mon: 1 MAM
start MakeDists
completed MakeDists
start CalcRainMetrics for each grid point
completed CalcRainMetrics for each grid point
im, mon: 2 JJA
start MakeDists
completed MakeDists
start CalcRainMetrics for each grid point
completed CalcRainMetrics for each grid point
im, mon: 3 SON
start MakeDists
completed MakeDists
start CalcRainMetrics for each grid point
completed CalcRainMetrics for each grid point
im, mon: 4 DJF
start MakeDists
completed MakeDists
start CalcRainMetrics for each grid point
completed CalcRainMetrics for each grid point
im, mon: 5 JAN
start MakeDists
completed MakeDists
start CalcRainMetrics for each grid point
completed CalcRainMetrics for each grid point
im, mon: 6 FEB
start MakeDists
completed MakeDists
start CalcRainMetrics for each grid point
completed CalcRainMetrics for each grid point
im, mon: 7 MAR
start MakeDists
completed MakeDists
start CalcRainMetrics for each grid point
completed CalcRainMetrics for each grid point
im, mon: 8 APR
start MakeDists
completed MakeDists
start CalcRainMetrics for each grid point
completed CalcRainMetrics for each grid point
im, mon: 9 MAY
start MakeDists
completed MakeDists
start CalcRainMetrics for each grid point
completed CalcRainMetrics for each grid point
im, mon: 10 JUN
start MakeDists
completed MakeDists
start CalcRainMetrics for each grid point
completed CalcRainMetrics for each grid point
im, mon: 11 JUL
start MakeDists
completed MakeDists
start CalcRainMetrics for each grid point
completed CalcRainMetrics for each grid point
im, mon: 12 AUG
start MakeDists
completed MakeDists
start CalcRainMetrics for each grid point
completed CalcRainMetrics for each grid point
im, mon: 13 SEP
start MakeDists
completed MakeDists
start CalcRainMetrics for each grid point
completed CalcRainMetrics for each grid point
im, mon: 14 OCT
start MakeDists
completed MakeDists
start CalcRainMetrics for each grid point
completed CalcRainMetrics for each grid point
im, mon: 15 NOV
start MakeDists
completed MakeDists
start CalcRainMetrics for each grid point
completed CalcRainMetrics for each grid point
im, mon: 16 DEC
start MakeDists
completed MakeDists
start CalcRainMetrics for each grid point
completed CalcRainMetrics for each grid point
d.shape: (17, 146, 90, 180)
type d: <class 'xarray.core.dataarray.DataArray'>
d.shape: (17, 146, 90, 180)
type d: <class 'xarray.core.dataarray.DataArray'>
(2, 17, 146, 12)
dat: GISS-E2-H.r6i1p1 ref: GPCP-1-3
ref_dir: demo_output_tmp/precip_distribution/ file: dist_frq.amt_domain_regrid.180x90_GPCP-1-3.nc
2025-09-09 15:33:37,614 [WARNING]: dataset.py(open_dataset:119) >> "No time coordinates were found in this dataset to decode. If time coordinates were expected to exist, make sure they are detectable by setting the CF 'axis' or 'standard_name' attribute (e.g., ds['time'].attrs['axis'] = 'T' or ds['time'].attrs['standard_name'] = 'time'). Afterwards, try decoding again with `xcdat.decode_time`."
2025-09-09 15:33:37,614 [WARNING]: dataset.py(open_dataset:119) >> "No time coordinates were found in this dataset to decode. If time coordinates were expected to exist, make sure they are detectable by setting the CF 'axis' or 'standard_name' attribute (e.g., ds['time'].attrs['axis'] = 'T' or ds['time'].attrs['standard_name'] = 'time'). Afterwards, try decoding again with `xcdat.decode_time`."
Completed domain metrics
<regionmask.Regions 'Heavy/Moderate/Light precipitating regions'>
overlap:  None

Regions:
0 HR    Heavy precipitating region
1 MR Moderate precipitating region
2 LR    Light precipitating region

[3 regions]
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/regionmask/core/mask.py:444: UserWarning: Detected overlapping regions. As of v0.11.0 these are correctly taken into account. Note, however, that a different mask is returned than with older versions of regionmask. To suppress this warning, set `overlap=True` (to restore the old, incorrect, behaviour, set `overlap=False`).
  warnings.warn(
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/regionmask/core/mask.py:444: UserWarning: Detected overlapping regions. As of v0.11.0 these are correctly taken into account. Note, however, that a different mask is returned than with older versions of regionmask. To suppress this warning, set `overlap=True` (to restore the old, incorrect, behaviour, set `overlap=False`).
  warnings.warn(
(2, 17, 146, 36)
dat: GISS-E2-H.r6i1p1 ref: GPCP-1-3
2025-09-09 15:34:43,591 [WARNING]: dataset.py(open_dataset:119) >> "No time coordinates were found in this dataset to decode. If time coordinates were expected to exist, make sure they are detectable by setting the CF 'axis' or 'standard_name' attribute (e.g., ds['time'].attrs['axis'] = 'T' or ds['time'].attrs['standard_name'] = 'time'). Afterwards, try decoding again with `xcdat.decode_time`."
2025-09-09 15:34:43,591 [WARNING]: dataset.py(open_dataset:119) >> "No time coordinates were found in this dataset to decode. If time coordinates were expected to exist, make sure they are detectable by setting the CF 'axis' or 'standard_name' attribute (e.g., ds['time'].attrs['axis'] = 'T' or ds['time'].attrs['standard_name'] = 'time'). Afterwards, try decoding again with `xcdat.decode_time`."
2025-09-09 15:34:43,612 [WARNING]: dataset.py(open_dataset:119) >> "No time coordinates were found in this dataset to decode. If time coordinates were expected to exist, make sure they are detectable by setting the CF 'axis' or 'standard_name' attribute (e.g., ds['time'].attrs['axis'] = 'T' or ds['time'].attrs['standard_name'] = 'time'). Afterwards, try decoding again with `xcdat.decode_time`."
2025-09-09 15:34:43,612 [WARNING]: dataset.py(open_dataset:119) >> "No time coordinates were found in this dataset to decode. If time coordinates were expected to exist, make sure they are detectable by setting the CF 'axis' or 'standard_name' attribute (e.g., ds['time'].attrs['axis'] = 'T' or ds['time'].attrs['standard_name'] = 'time'). Afterwards, try decoding again with `xcdat.decode_time`."
Completed clustering domain metrics
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/regionmask/core/mask.py:179: FutureWarning: Passing 'lon_name' and 'lat_name' was deprecated in v0.10.0. Please pass the coordinates directly, e.g., `mask*(ds[lon_name], ds[lat_name])`.
  warnings.warn(
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/regionmask/core/mask.py:179: FutureWarning: Passing 'lon_name' and 'lat_name' was deprecated in v0.10.0. Please pass the coordinates directly, e.g., `mask*(ds[lon_name], ds[lat_name])`.
  warnings.warn(
ddom.shape: (2, 17, 146, 62)
dat: GISS-E2-H.r6i1p1 ref: GPCP-1-3
2025-09-09 15:38:23,156 [WARNING]: dataset.py(open_dataset:119) >> "No time coordinates were found in this dataset to decode. If time coordinates were expected to exist, make sure they are detectable by setting the CF 'axis' or 'standard_name' attribute (e.g., ds['time'].attrs['axis'] = 'T' or ds['time'].attrs['standard_name'] = 'time'). Afterwards, try decoding again with `xcdat.decode_time`."
2025-09-09 15:38:23,156 [WARNING]: dataset.py(open_dataset:119) >> "No time coordinates were found in this dataset to decode. If time coordinates were expected to exist, make sure they are detectable by setting the CF 'axis' or 'standard_name' attribute (e.g., ds['time'].attrs['axis'] = 'T' or ds['time'].attrs['standard_name'] = 'time'). Afterwards, try decoding again with `xcdat.decode_time`."
2025-09-09 15:38:23,195 [WARNING]: dataset.py(open_dataset:119) >> "No time coordinates were found in this dataset to decode. If time coordinates were expected to exist, make sure they are detectable by setting the CF 'axis' or 'standard_name' attribute (e.g., ds['time'].attrs['axis'] = 'T' or ds['time'].attrs['standard_name'] = 'time'). Afterwards, try decoding again with `xcdat.decode_time`."
2025-09-09 15:38:23,195 [WARNING]: dataset.py(open_dataset:119) >> "No time coordinates were found in this dataset to decode. If time coordinates were expected to exist, make sure they are detectable by setting the CF 'axis' or 'standard_name' attribute (e.g., ds['time'].attrs['axis'] = 'T' or ds['time'].attrs['standard_name'] = 'time'). Afterwards, try decoding again with `xcdat.decode_time`."
Completed AR6 domain metrics
INFO::2025-09-09 15:38::pcmdi_metrics:: Results saved to a json file: /Users/lee1043/Documents/Research/git/pcmdi_metrics_20230620_pcmdi/pcmdi_metrics/doc/jupyter/Demo/demo_output_tmp/precip_distribution/dist_frq.amt_metrics_domain_regrid.180x90_GISS-E2-H.r6i1p1.json
2025-09-09 15:38:56,536 [INFO]: base.py(write:344) >> Results saved to a json file: /Users/lee1043/Documents/Research/git/pcmdi_metrics_20230620_pcmdi/pcmdi_metrics/doc/jupyter/Demo/demo_output_tmp/precip_distribution/dist_frq.amt_metrics_domain_regrid.180x90_GISS-E2-H.r6i1p1.json
2025-09-09 15:38:56,536 [INFO]: base.py(write:344) >> Results saved to a json file: /Users/lee1043/Documents/Research/git/pcmdi_metrics_20230620_pcmdi/pcmdi_metrics/doc/jupyter/Demo/demo_output_tmp/precip_distribution/dist_frq.amt_metrics_domain_regrid.180x90_GISS-E2-H.r6i1p1.json
INFO::2025-09-09 15:39::pcmdi_metrics:: Results saved to a json file: /Users/lee1043/Documents/Research/git/pcmdi_metrics_20230620_pcmdi/pcmdi_metrics/doc/jupyter/Demo/demo_output_tmp/precip_distribution/dist_frq.amt_metrics_domain3C_regrid.180x90_GISS-E2-H.r6i1p1.json
2025-09-09 15:39:06,149 [INFO]: base.py(write:344) >> Results saved to a json file: /Users/lee1043/Documents/Research/git/pcmdi_metrics_20230620_pcmdi/pcmdi_metrics/doc/jupyter/Demo/demo_output_tmp/precip_distribution/dist_frq.amt_metrics_domain3C_regrid.180x90_GISS-E2-H.r6i1p1.json
2025-09-09 15:39:06,149 [INFO]: base.py(write:344) >> Results saved to a json file: /Users/lee1043/Documents/Research/git/pcmdi_metrics_20230620_pcmdi/pcmdi_metrics/doc/jupyter/Demo/demo_output_tmp/precip_distribution/dist_frq.amt_metrics_domain3C_regrid.180x90_GISS-E2-H.r6i1p1.json
INFO::2025-09-09 15:39::pcmdi_metrics:: Results saved to a json file: /Users/lee1043/Documents/Research/git/pcmdi_metrics_20230620_pcmdi/pcmdi_metrics/doc/jupyter/Demo/demo_output_tmp/precip_distribution/dist_frq.amt_metrics_domainAR6_regrid.180x90_GISS-E2-H.r6i1p1.json
2025-09-09 15:39:16,031 [INFO]: base.py(write:344) >> Results saved to a json file: /Users/lee1043/Documents/Research/git/pcmdi_metrics_20230620_pcmdi/pcmdi_metrics/doc/jupyter/Demo/demo_output_tmp/precip_distribution/dist_frq.amt_metrics_domainAR6_regrid.180x90_GISS-E2-H.r6i1p1.json
2025-09-09 15:39:16,031 [INFO]: base.py(write:344) >> Results saved to a json file: /Users/lee1043/Documents/Research/git/pcmdi_metrics_20230620_pcmdi/pcmdi_metrics/doc/jupyter/Demo/demo_output_tmp/precip_distribution/dist_frq.amt_metrics_domainAR6_regrid.180x90_GISS-E2-H.r6i1p1.json
Completed metrics from precipitation frequency and amount distributions
im, mon: 0 ANN
dat, mon, dmon.shape: GISS-E2-H.r6i1p1 ANN (730, 90, 180)
2000 (365, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2000 pfrac.shape is (365, 90, 180), but (365, 90, 180) is used
2001 (365, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2001 pfrac.shape is (365, 90, 180), but (365, 90, 180) is used
im, mon: 1 MAM
dat, mon, dmon.shape: GISS-E2-H.r6i1p1 MAM (730, 90, 180)
2000 (365, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2000 pfrac.shape is (365, 90, 180), but (92, 90, 180) is used
2001 (365, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2001 pfrac.shape is (365, 90, 180), but (92, 90, 180) is used
im, mon: 2 JJA
dat, mon, dmon.shape: GISS-E2-H.r6i1p1 JJA (730, 90, 180)
2000 (365, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2000 pfrac.shape is (365, 90, 180), but (92, 90, 180) is used
2001 (365, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2001 pfrac.shape is (365, 90, 180), but (92, 90, 180) is used
im, mon: 3 SON
dat, mon, dmon.shape: GISS-E2-H.r6i1p1 SON (730, 90, 180)
2000 (365, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2000 pfrac.shape is (365, 90, 180), but (91, 90, 180) is used
2001 (365, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2001 pfrac.shape is (365, 90, 180), but (91, 90, 180) is used
im, mon: 4 DJF
dat, mon, dmon.shape: GISS-E2-H.r6i1p1 DJF (640, 90, 180)
2000 (91, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2000 pfrac.shape is (91, 90, 180), but (90, 90, 180) is used
im, mon: 5 JAN
dat, mon, dmon.shape: GISS-E2-H.r6i1p1 JAN (730, 90, 180)
2000 (365, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2000 pfrac.shape is (365, 90, 180), but (31, 90, 180) is used
2001 (365, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2001 pfrac.shape is (365, 90, 180), but (31, 90, 180) is used
im, mon: 6 FEB
dat, mon, dmon.shape: GISS-E2-H.r6i1p1 FEB (730, 90, 180)
2000 (365, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2000 pfrac.shape is (365, 90, 180), but (28, 90, 180) is used
2001 (365, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2001 pfrac.shape is (365, 90, 180), but (28, 90, 180) is used
im, mon: 7 MAR
dat, mon, dmon.shape: GISS-E2-H.r6i1p1 MAR (730, 90, 180)
2000 (365, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2000 pfrac.shape is (365, 90, 180), but (31, 90, 180) is used
2001 (365, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2001 pfrac.shape is (365, 90, 180), but (31, 90, 180) is used
im, mon: 8 APR
dat, mon, dmon.shape: GISS-E2-H.r6i1p1 APR (730, 90, 180)
2000 (365, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2000 pfrac.shape is (365, 90, 180), but (30, 90, 180) is used
2001 (365, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2001 pfrac.shape is (365, 90, 180), but (30, 90, 180) is used
im, mon: 9 MAY
dat, mon, dmon.shape: GISS-E2-H.r6i1p1 MAY (730, 90, 180)
2000 (365, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2000 pfrac.shape is (365, 90, 180), but (31, 90, 180) is used
2001 (365, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2001 pfrac.shape is (365, 90, 180), but (31, 90, 180) is used
im, mon: 10 JUN
dat, mon, dmon.shape: GISS-E2-H.r6i1p1 JUN (730, 90, 180)
2000 (365, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2000 pfrac.shape is (365, 90, 180), but (30, 90, 180) is used
2001 (365, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2001 pfrac.shape is (365, 90, 180), but (30, 90, 180) is used
im, mon: 11 JUL
dat, mon, dmon.shape: GISS-E2-H.r6i1p1 JUL (730, 90, 180)
2000 (365, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2000 pfrac.shape is (365, 90, 180), but (31, 90, 180) is used
2001 (365, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2001 pfrac.shape is (365, 90, 180), but (31, 90, 180) is used
im, mon: 12 AUG
dat, mon, dmon.shape: GISS-E2-H.r6i1p1 AUG (730, 90, 180)
2000 (365, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2000 pfrac.shape is (365, 90, 180), but (31, 90, 180) is used
2001 (365, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2001 pfrac.shape is (365, 90, 180), but (31, 90, 180) is used
im, mon: 13 SEP
dat, mon, dmon.shape: GISS-E2-H.r6i1p1 SEP (730, 90, 180)
2000 (365, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2000 pfrac.shape is (365, 90, 180), but (30, 90, 180) is used
2001 (365, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2001 pfrac.shape is (365, 90, 180), but (30, 90, 180) is used
im, mon: 14 OCT
dat, mon, dmon.shape: GISS-E2-H.r6i1p1 OCT (730, 90, 180)
2000 (365, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2000 pfrac.shape is (365, 90, 180), but (31, 90, 180) is used
2001 (365, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2001 pfrac.shape is (365, 90, 180), but (31, 90, 180) is used
im, mon: 15 NOV
dat, mon, dmon.shape: GISS-E2-H.r6i1p1 NOV (730, 90, 180)
2000 (365, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2000 pfrac.shape is (365, 90, 180), but (30, 90, 180) is used
2001 (365, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2001 pfrac.shape is (365, 90, 180), but (30, 90, 180) is used
im, mon: 16 DEC
dat, mon, dmon.shape: GISS-E2-H.r6i1p1 DEC (730, 90, 180)
2000 (365, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2000 pfrac.shape is (365, 90, 180), but (31, 90, 180) is used
2001 (365, 90, 180)
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/pcmdi_metrics/precip_distribution/lib/lib_precip_distribution.py:1884: RuntimeWarning: divide by zero encountered in divide
  sdii = ptot / prdays_gt_1mm  # Zhang et al. (2011)
2001 pfrac.shape is (365, 90, 180), but (31, 90, 180) is used
Completed domain median
Completed domain median
Completed domain median
<regionmask.Regions 'Heavy/Moderate/Light precipitating regions'>
overlap:  None

Regions:
0 HR    Heavy precipitating region
1 MR Moderate precipitating region
2 LR    Light precipitating region

[3 regions]
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/regionmask/core/mask.py:444: UserWarning: Detected overlapping regions. As of v0.11.0 these are correctly taken into account. Note, however, that a different mask is returned than with older versions of regionmask. To suppress this warning, set `overlap=True` (to restore the old, incorrect, behaviour, set `overlap=False`).
  warnings.warn(
Completed clustering domain median
<regionmask.Regions 'Heavy/Moderate/Light precipitating regions'>
overlap:  None

Regions:
0 HR    Heavy precipitating region
1 MR Moderate precipitating region
2 LR    Light precipitating region

[3 regions]
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/regionmask/core/mask.py:444: UserWarning: Detected overlapping regions. As of v0.11.0 these are correctly taken into account. Note, however, that a different mask is returned than with older versions of regionmask. To suppress this warning, set `overlap=True` (to restore the old, incorrect, behaviour, set `overlap=False`).
  warnings.warn(
Completed clustering domain median
<regionmask.Regions 'Heavy/Moderate/Light precipitating regions'>
overlap:  None

Regions:
0 HR    Heavy precipitating region
1 MR Moderate precipitating region
2 LR    Light precipitating region

[3 regions]
/Users/lee1043/mambaforge/envs/pmp_devel_20250908/lib/python3.10/site-packages/regionmask/core/mask.py:444: UserWarning: Detected overlapping regions. As of v0.11.0 these are correctly taken into account. Note, however, that a different mask is returned than with older versions of regionmask. To suppress this warning, set `overlap=True` (to restore the old, incorrect, behaviour, set `overlap=False`).
  warnings.warn(
Completed clustering domain median
Completed AR6 domain median
Completed AR6 domain median
Completed AR6 domain median
INFO::2025-09-09 15:40::pcmdi_metrics:: Results saved to a json file: /Users/lee1043/Documents/Research/git/pcmdi_metrics_20230620_pcmdi/pcmdi_metrics/doc/jupyter/Demo/demo_output_tmp/precip_distribution/dist_cumfrac_metrics_domain.median_regrid.180x90_GISS-E2-H.r6i1p1.json
2025-09-09 15:40:07,094 [INFO]: base.py(write:344) >> Results saved to a json file: /Users/lee1043/Documents/Research/git/pcmdi_metrics_20230620_pcmdi/pcmdi_metrics/doc/jupyter/Demo/demo_output_tmp/precip_distribution/dist_cumfrac_metrics_domain.median_regrid.180x90_GISS-E2-H.r6i1p1.json
2025-09-09 15:40:07,094 [INFO]: base.py(write:344) >> Results saved to a json file: /Users/lee1043/Documents/Research/git/pcmdi_metrics_20230620_pcmdi/pcmdi_metrics/doc/jupyter/Demo/demo_output_tmp/precip_distribution/dist_cumfrac_metrics_domain.median_regrid.180x90_GISS-E2-H.r6i1p1.json
INFO::2025-09-09 15:40::pcmdi_metrics:: Results saved to a json file: /Users/lee1043/Documents/Research/git/pcmdi_metrics_20230620_pcmdi/pcmdi_metrics/doc/jupyter/Demo/demo_output_tmp/precip_distribution/dist_cumfrac_metrics_domain.median.3C_regrid.180x90_GISS-E2-H.r6i1p1.json
2025-09-09 15:40:16,569 [INFO]: base.py(write:344) >> Results saved to a json file: /Users/lee1043/Documents/Research/git/pcmdi_metrics_20230620_pcmdi/pcmdi_metrics/doc/jupyter/Demo/demo_output_tmp/precip_distribution/dist_cumfrac_metrics_domain.median.3C_regrid.180x90_GISS-E2-H.r6i1p1.json
2025-09-09 15:40:16,569 [INFO]: base.py(write:344) >> Results saved to a json file: /Users/lee1043/Documents/Research/git/pcmdi_metrics_20230620_pcmdi/pcmdi_metrics/doc/jupyter/Demo/demo_output_tmp/precip_distribution/dist_cumfrac_metrics_domain.median.3C_regrid.180x90_GISS-E2-H.r6i1p1.json
INFO::2025-09-09 15:40::pcmdi_metrics:: Results saved to a json file: /Users/lee1043/Documents/Research/git/pcmdi_metrics_20230620_pcmdi/pcmdi_metrics/doc/jupyter/Demo/demo_output_tmp/precip_distribution/dist_cumfrac_metrics_domain.median.AR6_regrid.180x90_GISS-E2-H.r6i1p1.json
2025-09-09 15:40:26,169 [INFO]: base.py(write:344) >> Results saved to a json file: /Users/lee1043/Documents/Research/git/pcmdi_metrics_20230620_pcmdi/pcmdi_metrics/doc/jupyter/Demo/demo_output_tmp/precip_distribution/dist_cumfrac_metrics_domain.median.AR6_regrid.180x90_GISS-E2-H.r6i1p1.json
2025-09-09 15:40:26,169 [INFO]: base.py(write:344) >> Results saved to a json file: /Users/lee1043/Documents/Research/git/pcmdi_metrics_20230620_pcmdi/pcmdi_metrics/doc/jupyter/Demo/demo_output_tmp/precip_distribution/dist_cumfrac_metrics_domain.median.AR6_regrid.180x90_GISS-E2-H.r6i1p1.json
Completed metrics from precipitation cumulative distributions

Result

[7]:
!ls {output_dir}
dist_cumfrac_metrics_domain.median.3C_regrid.180x90_GISS-E2-H.r6i1p1.json
dist_cumfrac_metrics_domain.median.3C_regrid.180x90_GPCP-1-3.json
dist_cumfrac_metrics_domain.median.AR6_regrid.180x90_GISS-E2-H.r6i1p1.json
dist_cumfrac_metrics_domain.median.AR6_regrid.180x90_GPCP-1-3.json
dist_cumfrac_metrics_domain.median_regrid.180x90_GISS-E2-H.r6i1p1.json
dist_cumfrac_metrics_domain.median_regrid.180x90_GPCP-1-3.json
dist_cumfrac_metrics_regrid.180x90_GISS-E2-H.r6i1p1.nc
dist_cumfrac_metrics_regrid.180x90_GPCP-1-3.nc
dist_cumfrac_regrid.180x90_GISS-E2-H.r6i1p1.nc
dist_cumfrac_regrid.180x90_GPCP-1-3.nc
dist_frq.amt_domain3C_regrid.180x90_GISS-E2-H.r6i1p1.nc
dist_frq.amt_domain3C_regrid.180x90_GPCP-1-3.nc
dist_frq.amt_domainAR6_regrid.180x90_GISS-E2-H.r6i1p1.nc
dist_frq.amt_domainAR6_regrid.180x90_GPCP-1-3.nc
dist_frq.amt_domain_regrid.180x90_GISS-E2-H.r6i1p1.nc
dist_frq.amt_domain_regrid.180x90_GPCP-1-3.nc
dist_frq.amt_metrics_domain3C_regrid.180x90_GISS-E2-H.r6i1p1.json
dist_frq.amt_metrics_domain3C_regrid.180x90_GPCP-1-3.json
dist_frq.amt_metrics_domainAR6_regrid.180x90_GISS-E2-H.r6i1p1.json
dist_frq.amt_metrics_domainAR6_regrid.180x90_GPCP-1-3.json
dist_frq.amt_metrics_domain_regrid.180x90_GISS-E2-H.r6i1p1.json
dist_frq.amt_metrics_domain_regrid.180x90_GPCP-1-3.json
dist_frq.amt_metrics_regrid.180x90_GISS-E2-H.r6i1p1.nc
dist_frq.amt_metrics_regrid.180x90_GPCP-1-3.nc
dist_frq.amt_regrid.180x90_GISS-E2-H.r6i1p1.nc
dist_frq.amt_regrid.180x90_GPCP-1-3.nc

Diagnostics

NetCDF files

[8]:
import xarray as xr
import matplotlib.pyplot as plt
[9]:
data_var = "unevenness"
#data_var = "prdyfrac"
#data_var = "sdii"
[10]:
obs_file = f"{output_dir}/dist_cumfrac_metrics_regrid.180x90_GPCP-1-3.nc"
model_file = f"{output_dir}/dist_cumfrac_metrics_regrid.180x90_GISS-E2-H.r6i1p1.nc"

ds_obs = xr.open_dataset(obs_file)
ds_model = xr.open_dataset(model_file)

fig, (ax0, ax1) = plt.subplots(1, 2, figsize=(18, 5))

ds_obs[data_var].sel(month=0).plot(ax=ax0)
ax0.set_title("GPCP-1-3 ANN")

ds_model[data_var].sel(month=0).plot(label="GISS-E2-H ANN", ax=ax1)
ax1.set_title("GISS-E2-H ANN")

[10]:
Text(0.5, 1.0, 'GISS-E2-H ANN')
../_images/examples_Demo_7b_precip_distribution_18_1.png

Metrics

JSON files

[11]:
json_file = f"{output_dir}/dist_frq.amt_metrics_domain_regrid.180x90_GISS-E2-H.r6i1p1.json"
[12]:
# print json file content
import json
with open(json_file) as data_file:
    data = json.load(data_file)
    print(json.dumps(data, indent=4))
{
    "RESULTS": {
        "GISS-E2-H.r6i1p1": {
            "amtP10": {
                "Land_30N50N": {
                    "ANN": 0.1316342164059363,
                    "CalendarMonths": {
                        "1": 0.1316342164059363,
                        "2": 0.1316342164059363,
                        "3": 0.1316342164059363,
                        "4": 0.1316342164059363,
                        "5": 0.1316342164059363,
                        "6": 0.1316342164059363,
                        "7": 0.1316342164059363,
                        "8": 0.1316342164059363,
                        "9": 0.1316342164059363,
                        "10": 0.1316342164059363,
                        "11": 0.1316342164059363,
                        "12": 0.1316342164059363
                    },
                    "DJF": 0.1279104316973477,
                    "JJA": 0.1316342164059363,
                    "MAM": 0.1316342164059363,
                    "SON": 0.1316342164059363
                },
                "Land_30S30N": {
                    "ANN": 0.12411966905381082,
                    "CalendarMonths": {
                        "1": 0.12411966905381082,
                        "2": 0.12411966905381082,
                        "3": 0.12411966905381082,
                        "4": 0.12411966905381082,
                        "5": 0.12411966905381082,
                        "6": 0.12411966905381082,
                        "7": 0.12411966905381082,
                        "8": 0.12411966905381082,
                        "9": 0.12411966905381082,
                        "10": 0.12411966905381082,
                        "11": 0.12411966905381082,
                        "12": 0.12411966905381082
                    },
                    "DJF": 0.12548614646939915,
                    "JJA": 0.12411966905381082,
                    "MAM": 0.12411966905381082,
                    "SON": 0.12411966905381082
                },
                "Land_50S30S": {
                    "ANN": 0.15497831537923712,
                    "CalendarMonths": {
                        "1": 0.15497831537923712,
                        "2": 0.15497831537923712,
                        "3": 0.15497831537923712,
                        "4": 0.15497831537923712,
                        "5": 0.15497831537923712,
                        "6": 0.15497831537923712,
                        "7": 0.15497831537923712,
                        "8": 0.15497831537923712,
                        "9": 0.15497831537923712,
                        "10": 0.15497831537923712,
                        "11": 0.15497831537923712,
                        "12": 0.15497831537923712
                    },
                    "DJF": 0.15517793605435462,
                    "JJA": 0.15497831537923712,
                    "MAM": 0.15497831537923712,
                    "SON": 0.15497831537923712
                },
                "Land_50S50N": {
                    "ANN": 0.12766375551158676,
                    "CalendarMonths": {
                        "1": 0.12766375551158676,
                        "2": 0.12766375551158676,
                        "3": 0.12766375551158676,
                        "4": 0.12766375551158676,
                        "5": 0.12766375551158676,
                        "6": 0.12766375551158676,
                        "7": 0.12766375551158676,
                        "8": 0.12766375551158676,
                        "9": 0.12766375551158676,
                        "10": 0.12766375551158676,
                        "11": 0.12766375551158676,
                        "12": 0.12766375551158676
                    },
                    "DJF": 0.12777351844047885,
                    "JJA": 0.12766375551158676,
                    "MAM": 0.12766375551158676,
                    "SON": 0.12766375551158676
                },
                "Ocean_30N50N": {
                    "ANN": 0.18683697779576894,
                    "CalendarMonths": {
                        "1": 0.18683697779576894,
                        "2": 0.18683697779576894,
                        "3": 0.18683697779576894,
                        "4": 0.18683697779576894,
                        "5": 0.18683697779576894,
                        "6": 0.18683697779576894,
                        "7": 0.18683697779576894,
                        "8": 0.18683697779576894,
                        "9": 0.18683697779576894,
                        "10": 0.18683697779576894,
                        "11": 0.18683697779576894,
                        "12": 0.18683697779576894
                    },
                    "DJF": 0.18076887678668035,
                    "JJA": 0.18683697779576894,
                    "MAM": 0.18683697779576894,
                    "SON": 0.18683697779576894
                },
                "Ocean_30S30N": {
                    "ANN": 0.16215206832178952,
                    "CalendarMonths": {
                        "1": 0.16215206832178952,
                        "2": 0.16215206832178952,
                        "3": 0.16215206832178952,
                        "4": 0.16215206832178952,
                        "5": 0.16215206832178952,
                        "6": 0.16215206832178952,
                        "7": 0.16215206832178952,
                        "8": 0.16215206832178952,
                        "9": 0.16215206832178952,
                        "10": 0.16215206832178952,
                        "11": 0.16215206832178952,
                        "12": 0.16215206832178952
                    },
                    "DJF": 0.16253614457501694,
                    "JJA": 0.16215206832178952,
                    "MAM": 0.16215206832178952,
                    "SON": 0.16215206832178952
                },
                "Ocean_50S30S": {
                    "ANN": 0.19241572634458892,
                    "CalendarMonths": {
                        "1": 0.19241572634458892,
                        "2": 0.19241572634458892,
                        "3": 0.19241572634458892,
                        "4": 0.19241572634458892,
                        "5": 0.19241572634458892,
                        "6": 0.19241572634458892,
                        "7": 0.19241572634458892,
                        "8": 0.19241572634458892,
                        "9": 0.19241572634458892,
                        "10": 0.19241572634458892,
                        "11": 0.19241572634458892,
                        "12": 0.19241572634458892
                    },
                    "DJF": 0.1857497640560473,
                    "JJA": 0.19241572634458892,
                    "MAM": 0.19241572634458892,
                    "SON": 0.19241572634458892
                },
                "Ocean_50S50N": {
                    "ANN": 0.16781940594857575,
                    "CalendarMonths": {
                        "1": 0.16781940594857575,
                        "2": 0.16781940594857575,
                        "3": 0.16781940594857575,
                        "4": 0.16781940594857575,
                        "5": 0.16781940594857575,
                        "6": 0.16781940594857575,
                        "7": 0.16781940594857575,
                        "8": 0.16781940594857575,
                        "9": 0.16781940594857575,
                        "10": 0.16781940594857575,
                        "11": 0.16781940594857575,
                        "12": 0.16781940594857575
                    },
                    "DJF": 0.16792851770238543,
                    "JJA": 0.16781940594857575,
                    "MAM": 0.16781940594857575,
                    "SON": 0.16781940594857575
                },
                "Total_30N50N": {
                    "ANN": 0.1610404527642202,
                    "CalendarMonths": {
                        "1": 0.1610404527642202,
                        "2": 0.1610404527642202,
                        "3": 0.1610404527642202,
                        "4": 0.1610404527642202,
                        "5": 0.1610404527642202,
                        "6": 0.1610404527642202,
                        "7": 0.1610404527642202,
                        "8": 0.1610404527642202,
                        "9": 0.1610404527642202,
                        "10": 0.1610404527642202,
                        "11": 0.1610404527642202,
                        "12": 0.1610404527642202
                    },
                    "DJF": 0.163775149897848,
                    "JJA": 0.1610404527642202,
                    "MAM": 0.1610404527642202,
                    "SON": 0.1610404527642202
                },
                "Total_30S30N": {
                    "ANN": 0.15872393449973604,
                    "CalendarMonths": {
                        "1": 0.15872393449973604,
                        "2": 0.15872393449973604,
                        "3": 0.15872393449973604,
                        "4": 0.15872393449973604,
                        "5": 0.15872393449973604,
                        "6": 0.15872393449973604,
                        "7": 0.15872393449973604,
                        "8": 0.15872393449973604,
                        "9": 0.15872393449973604,
                        "10": 0.15872393449973604,
                        "11": 0.15872393449973604,
                        "12": 0.15872393449973604
                    },
                    "DJF": 0.15942442882782104,
                    "JJA": 0.15872393449973604,
                    "MAM": 0.15872393449973604,
                    "SON": 0.15872393449973604
                },
                "Total_50S30S": {
                    "ANN": 0.18942399192276482,
                    "CalendarMonths": {
                        "1": 0.18942399192276482,
                        "2": 0.18942399192276482,
                        "3": 0.18942399192276482,
                        "4": 0.18942399192276482,
                        "5": 0.18942399192276482,
                        "6": 0.18942399192276482,
                        "7": 0.18942399192276482,
                        "8": 0.18942399192276482,
                        "9": 0.18942399192276482,
                        "10": 0.18942399192276482,
                        "11": 0.18942399192276482,
                        "12": 0.18942399192276482
                    },
                    "DJF": 0.18324586974642318,
                    "JJA": 0.18942399192276482,
                    "MAM": 0.18942399192276482,
                    "SON": 0.18942399192276482
                },
                "Total_50S50N": {
                    "ANN": 0.15892323385331578,
                    "CalendarMonths": {
                        "1": 0.15892323385331578,
                        "2": 0.15892323385331578,
                        "3": 0.15892323385331578,
                        "4": 0.15892323385331578,
                        "5": 0.15892323385331578,
                        "6": 0.15892323385331578,
                        "7": 0.15892323385331578,
                        "8": 0.15892323385331578,
                        "9": 0.15892323385331578,
                        "10": 0.15892323385331578,
                        "11": 0.15892323385331578,
                        "12": 0.15892323385331578
                    },
                    "DJF": 0.15904000458401907,
                    "JJA": 0.15892323385331578,
                    "MAM": 0.15892323385331578,
                    "SON": 0.15892323385331578
                }
            },
            "amtP20": {
                "Land_30N50N": {
                    "ANN": 0.21751558906526125,
                    "CalendarMonths": {
                        "1": 0.21751558906526125,
                        "2": 0.21751558906526125,
                        "3": 0.21751558906526125,
                        "4": 0.21751558906526125,
                        "5": 0.21751558906526125,
                        "6": 0.21751558906526125,
                        "7": 0.21751558906526125,
                        "8": 0.21751558906526125,
                        "9": 0.21751558906526125,
                        "10": 0.21751558906526125,
                        "11": 0.21751558906526125,
                        "12": 0.21751558906526125
                    },
                    "DJF": 0.21078715553970365,
                    "JJA": 0.21751558906526125,
                    "MAM": 0.21751558906526125,
                    "SON": 0.21751558906526125
                },
                "Land_30S30N": {
                    "ANN": 0.20714346391000582,
                    "CalendarMonths": {
                        "1": 0.20714346391000582,
                        "2": 0.20714346391000582,
                        "3": 0.20714346391000582,
                        "4": 0.20714346391000582,
                        "5": 0.20714346391000582,
                        "6": 0.20714346391000582,
                        "7": 0.20714346391000582,
                        "8": 0.20714346391000582,
                        "9": 0.20714346391000582,
                        "10": 0.20714346391000582,
                        "11": 0.20714346391000582,
                        "12": 0.20714346391000582
                    },
                    "DJF": 0.2081092700994591,
                    "JJA": 0.20714346391000582,
                    "MAM": 0.20714346391000582,
                    "SON": 0.20714346391000582
                },
                "Land_50S30S": {
                    "ANN": 0.25088359125765414,
                    "CalendarMonths": {
                        "1": 0.25088359125765414,
                        "2": 0.25088359125765414,
                        "3": 0.25088359125765414,
                        "4": 0.25088359125765414,
                        "5": 0.25088359125765414,
                        "6": 0.25088359125765414,
                        "7": 0.25088359125765414,
                        "8": 0.25088359125765414,
                        "9": 0.25088359125765414,
                        "10": 0.25088359125765414,
                        "11": 0.25088359125765414,
                        "12": 0.25088359125765414
                    },
                    "DJF": 0.25318897578800365,
                    "JJA": 0.25088359125765414,
                    "MAM": 0.25088359125765414,
                    "SON": 0.25088359125765414
                },
                "Land_50S50N": {
                    "ANN": 0.21654937610697866,
                    "CalendarMonths": {
                        "1": 0.21654937610697866,
                        "2": 0.21654937610697866,
                        "3": 0.21654937610697866,
                        "4": 0.21654937610697866,
                        "5": 0.21654937610697866,
                        "6": 0.21654937610697866,
                        "7": 0.21654937610697866,
                        "8": 0.21654937610697866,
                        "9": 0.21654937610697866,
                        "10": 0.21654937610697866,
                        "11": 0.21654937610697866,
                        "12": 0.21654937610697866
                    },
                    "DJF": 0.21613169800736812,
                    "JJA": 0.21654937610697866,
                    "MAM": 0.21654937610697866,
                    "SON": 0.21654937610697866
                },
                "Ocean_30N50N": {
                    "ANN": 0.3064589594313624,
                    "CalendarMonths": {
                        "1": 0.3064589594313624,
                        "2": 0.3064589594313624,
                        "3": 0.3064589594313624,
                        "4": 0.3064589594313624,
                        "5": 0.3064589594313624,
                        "6": 0.3064589594313624,
                        "7": 0.3064589594313624,
                        "8": 0.3064589594313624,
                        "9": 0.3064589594313624,
                        "10": 0.3064589594313624,
                        "11": 0.3064589594313624,
                        "12": 0.3064589594313624
                    },
                    "DJF": 0.3119138321103674,
                    "JJA": 0.3064589594313624,
                    "MAM": 0.3064589594313624,
                    "SON": 0.3064589594313624
                },
                "Ocean_30S30N": {
                    "ANN": 0.24874595827595347,
                    "CalendarMonths": {
                        "1": 0.24874595827595347,
                        "2": 0.24874595827595347,
                        "3": 0.24874595827595347,
                        "4": 0.24874595827595347,
                        "5": 0.24874595827595347,
                        "6": 0.24874595827595347,
                        "7": 0.24874595827595347,
                        "8": 0.24874595827595347,
                        "9": 0.24874595827595347,
                        "10": 0.24874595827595347,
                        "11": 0.24874595827595347,
                        "12": 0.24874595827595347
                    },
                    "DJF": 0.2492801643638977,
                    "JJA": 0.24874595827595347,
                    "MAM": 0.24874595827595347,
                    "SON": 0.24874595827595347
                },
                "Ocean_50S30S": {
                    "ANN": 0.31377725219290714,
                    "CalendarMonths": {
                        "1": 0.31377725219290714,
                        "2": 0.31377725219290714,
                        "3": 0.31377725219290714,
                        "4": 0.31377725219290714,
                        "5": 0.31377725219290714,
                        "6": 0.31377725219290714,
                        "7": 0.31377725219290714,
                        "8": 0.31377725219290714,
                        "9": 0.31377725219290714,
                        "10": 0.31377725219290714,
                        "11": 0.31377725219290714,
                        "12": 0.31377725219290714
                    },
                    "DJF": 0.3069811741240006,
                    "JJA": 0.31377725219290714,
                    "MAM": 0.31377725219290714,
                    "SON": 0.31377725219290714
                },
                "Ocean_50S50N": {
                    "ANN": 0.27028039761999273,
                    "CalendarMonths": {
                        "1": 0.27028039761999273,
                        "2": 0.27028039761999273,
                        "3": 0.27028039761999273,
                        "4": 0.27028039761999273,
                        "5": 0.27028039761999273,
                        "6": 0.27028039761999273,
                        "7": 0.27028039761999273,
                        "8": 0.27028039761999273,
                        "9": 0.27028039761999273,
                        "10": 0.27028039761999273,
                        "11": 0.27028039761999273,
                        "12": 0.27028039761999273
                    },
                    "DJF": 0.2706148822080774,
                    "JJA": 0.27028039761999273,
                    "MAM": 0.27028039761999273,
                    "SON": 0.27028039761999273
                },
                "Total_30N50N": {
                    "ANN": 0.27633250382451024,
                    "CalendarMonths": {
                        "1": 0.27633250382451024,
                        "2": 0.27633250382451024,
                        "3": 0.27633250382451024,
                        "4": 0.27633250382451024,
                        "5": 0.27633250382451024,
                        "6": 0.27633250382451024,
                        "7": 0.27633250382451024,
                        "8": 0.27633250382451024,
                        "9": 0.27633250382451024,
                        "10": 0.27633250382451024,
                        "11": 0.27633250382451024,
                        "12": 0.27633250382451024
                    },
                    "DJF": 0.2772276613647178,
                    "JJA": 0.27633250382451024,
                    "MAM": 0.27633250382451024,
                    "SON": 0.27633250382451024
                },
                "Total_30S30N": {
                    "ANN": 0.23579519815293062,
                    "CalendarMonths": {
                        "1": 0.23579519815293062,
                        "2": 0.23579519815293062,
                        "3": 0.23579519815293062,
                        "4": 0.23579519815293062,
                        "5": 0.23579519815293062,
                        "6": 0.23579519815293062,
                        "7": 0.23579519815293062,
                        "8": 0.23579519815293062,
                        "9": 0.23579519815293062,
                        "10": 0.23579519815293062,
                        "11": 0.23579519815293062,
                        "12": 0.23579519815293062
                    },
                    "DJF": 0.23651414565449905,
                    "JJA": 0.23579519815293062,
                    "MAM": 0.23579519815293062,
                    "SON": 0.23579519815293062
                },
                "Total_50S30S": {
                    "ANN": 0.30777001735839404,
                    "CalendarMonths": {
                        "1": 0.30777001735839404,
                        "2": 0.30777001735839404,
                        "3": 0.30777001735839404,
                        "4": 0.30777001735839404,
                        "5": 0.30777001735839404,
                        "6": 0.30777001735839404,
                        "7": 0.30777001735839404,
                        "8": 0.30777001735839404,
                        "9": 0.30777001735839404,
                        "10": 0.30777001735839404,
                        "11": 0.30777001735839404,
                        "12": 0.30777001735839404
                    },
                    "DJF": 0.3016266433654669,
                    "JJA": 0.30777001735839404,
                    "MAM": 0.30777001735839404,
                    "SON": 0.30777001735839404
                },
                "Total_50S50N": {
                    "ANN": 0.25837670762787196,
                    "CalendarMonths": {
                        "1": 0.25837670762787196,
                        "2": 0.25837670762787196,
                        "3": 0.25837670762787196,
                        "4": 0.25837670762787196,
                        "5": 0.25837670762787196,
                        "6": 0.25837670762787196,
                        "7": 0.25837670762787196,
                        "8": 0.25837670762787196,
                        "9": 0.25837670762787196,
                        "10": 0.25837670762787196,
                        "11": 0.25837670762787196,
                        "12": 0.25837670762787196
                    },
                    "DJF": 0.25855475255050364,
                    "JJA": 0.25837670762787196,
                    "MAM": 0.25837670762787196,
                    "SON": 0.25837670762787196
                }
            },
            "amtP80": {
                "Land_30N50N": {
                    "ANN": 0.18950632231208953,
                    "CalendarMonths": {
                        "1": 0.18950632231208953,
                        "2": 0.18950632231208953,
                        "3": 0.18950632231208953,
                        "4": 0.18950632231208953,
                        "5": 0.18950632231208953,
                        "6": 0.18950632231208953,
                        "7": 0.18950632231208953,
                        "8": 0.18950632231208953,
                        "9": 0.18950632231208953,
                        "10": 0.18950632231208953,
                        "11": 0.18950632231208953,
                        "12": 0.18950632231208953
                    },
                    "DJF": 0.2202107080260376,
                    "JJA": 0.18950632231208953,
                    "MAM": 0.18950632231208953,
                    "SON": 0.18950632231208953
                },
                "Land_30S30N": {
                    "ANN": 0.16541378023964348,
                    "CalendarMonths": {
                        "1": 0.16541378023964348,
                        "2": 0.16541378023964348,
                        "3": 0.16541378023964348,
                        "4": 0.16541378023964348,
                        "5": 0.16541378023964348,
                        "6": 0.16541378023964348,
                        "7": 0.16541378023964348,
                        "8": 0.16541378023964348,
                        "9": 0.16541378023964348,
                        "10": 0.16541378023964348,
                        "11": 0.16541378023964348,
                        "12": 0.16541378023964348
                    },
                    "DJF": 0.17088843142615595,
                    "JJA": 0.16541378023964348,
                    "MAM": 0.16541378023964348,
                    "SON": 0.16541378023964348
                },
                "Land_50S30S": {
                    "ANN": 0.1029356001091487,
                    "CalendarMonths": {
                        "1": 0.1029356001091487,
                        "2": 0.1029356001091487,
                        "3": 0.1029356001091487,
                        "4": 0.1029356001091487,
                        "5": 0.1029356001091487,
                        "6": 0.1029356001091487,
                        "7": 0.1029356001091487,
                        "8": 0.1029356001091487,
                        "9": 0.1029356001091487,
                        "10": 0.1029356001091487,
                        "11": 0.1029356001091487,
                        "12": 0.1029356001091487
                    },
                    "DJF": 0.08255078249759795,
                    "JJA": 0.1029356001091487,
                    "MAM": 0.1029356001091487,
                    "SON": 0.1029356001091487
                },
                "Land_50S50N": {
                    "ANN": 0.15533253899839516,
                    "CalendarMonths": {
                        "1": 0.15533253899839516,
                        "2": 0.15533253899839516,
                        "3": 0.15533253899839516,
                        "4": 0.15533253899839516,
                        "5": 0.15533253899839516,
                        "6": 0.15533253899839516,
                        "7": 0.15533253899839516,
                        "8": 0.15533253899839516,
                        "9": 0.15533253899839516,
                        "10": 0.15533253899839516,
                        "11": 0.15533253899839516,
                        "12": 0.15533253899839516
                    },
                    "DJF": 0.18525692855394005,
                    "JJA": 0.15533253899839516,
                    "MAM": 0.15533253899839516,
                    "SON": 0.15533253899839516
                },
                "Ocean_30N50N": {
                    "ANN": 0.12948889682913434,
                    "CalendarMonths": {
                        "1": 0.12948889682913434,
                        "2": 0.12948889682913434,
                        "3": 0.12948889682913434,
                        "4": 0.12948889682913434,
                        "5": 0.12948889682913434,
                        "6": 0.12948889682913434,
                        "7": 0.12948889682913434,
                        "8": 0.12948889682913434,
                        "9": 0.12948889682913434,
                        "10": 0.12948889682913434,
                        "11": 0.12948889682913434,
                        "12": 0.12948889682913434
                    },
                    "DJF": 0.13062061539605963,
                    "JJA": 0.12948889682913434,
                    "MAM": 0.12948889682913434,
                    "SON": 0.12948889682913434
                },
                "Ocean_30S30N": {
                    "ANN": 0.21143600577382204,
                    "CalendarMonths": {
                        "1": 0.21143600577382204,
                        "2": 0.21143600577382204,
                        "3": 0.21143600577382204,
                        "4": 0.21143600577382204,
                        "5": 0.21143600577382204,
                        "6": 0.21143600577382204,
                        "7": 0.21143600577382204,
                        "8": 0.21143600577382204,
                        "9": 0.21143600577382204,
                        "10": 0.21143600577382204,
                        "11": 0.21143600577382204,
                        "12": 0.21143600577382204
                    },
                    "DJF": 0.21179447940570584,
                    "JJA": 0.21143600577382204,
                    "MAM": 0.21143600577382204,
                    "SON": 0.21143600577382204
                },
                "Ocean_50S30S": {
                    "ANN": 0.11794672869073164,
                    "CalendarMonths": {
                        "1": 0.11794672869073164,
                        "2": 0.11794672869073164,
                        "3": 0.11794672869073164,
                        "4": 0.11794672869073164,
                        "5": 0.11794672869073164,
                        "6": 0.11794672869073164,
                        "7": 0.11794672869073164,
                        "8": 0.11794672869073164,
                        "9": 0.11794672869073164,
                        "10": 0.11794672869073164,
                        "11": 0.11794672869073164,
                        "12": 0.11794672869073164
                    },
                    "DJF": 0.11876903153866902,
                    "JJA": 0.11794672869073164,
                    "MAM": 0.11794672869073164,
                    "SON": 0.11794672869073164
                },
                "Ocean_50S50N": {
                    "ANN": 0.19711904736037522,
                    "CalendarMonths": {
                        "1": 0.19711904736037522,
                        "2": 0.19711904736037522,
                        "3": 0.19711904736037522,
                        "4": 0.19711904736037522,
                        "5": 0.19711904736037522,
                        "6": 0.19711904736037522,
                        "7": 0.19711904736037522,
                        "8": 0.19711904736037522,
                        "9": 0.19711904736037522,
                        "10": 0.19711904736037522,
                        "11": 0.19711904736037522,
                        "12": 0.19711904736037522
                    },
                    "DJF": 0.19705221228695557,
                    "JJA": 0.19711904736037522,
                    "MAM": 0.19711904736037522,
                    "SON": 0.19711904736037522
                },
                "Total_30N50N": {
                    "ANN": 0.1429903418285161,
                    "CalendarMonths": {
                        "1": 0.1429903418285161,
                        "2": 0.1429903418285161,
                        "3": 0.1429903418285161,
                        "4": 0.1429903418285161,
                        "5": 0.1429903418285161,
                        "6": 0.1429903418285161,
                        "7": 0.1429903418285161,
                        "8": 0.1429903418285161,
                        "9": 0.1429903418285161,
                        "10": 0.1429903418285161,
                        "11": 0.1429903418285161,
                        "12": 0.1429903418285161
                    },
                    "DJF": 0.14605169874957968,
                    "JJA": 0.1429903418285161,
                    "MAM": 0.1429903418285161,
                    "SON": 0.1429903418285161
                },
                "Total_30S30N": {
                    "ANN": 0.20099982392440385,
                    "CalendarMonths": {
                        "1": 0.20099982392440385,
                        "2": 0.20099982392440385,
                        "3": 0.20099982392440385,
                        "4": 0.20099982392440385,
                        "5": 0.20099982392440385,
                        "6": 0.20099982392440385,
                        "7": 0.20099982392440385,
                        "8": 0.20099982392440385,
                        "9": 0.20099982392440385,
                        "10": 0.20099982392440385,
                        "11": 0.20099982392440385,
                        "12": 0.20099982392440385
                    },
                    "DJF": 0.2025680535803177,
                    "JJA": 0.20099982392440385,
                    "MAM": 0.20099982392440385,
                    "SON": 0.20099982392440385
                },
                "Total_50S30S": {
                    "ANN": 0.10610912553555907,
                    "CalendarMonths": {
                        "1": 0.10610912553555907,
                        "2": 0.10610912553555907,
                        "3": 0.10610912553555907,
                        "4": 0.10610912553555907,
                        "5": 0.10610912553555907,
                        "6": 0.10610912553555907,
                        "7": 0.10610912553555907,
                        "8": 0.10610912553555907,
                        "9": 0.10610912553555907,
                        "10": 0.10610912553555907,
                        "11": 0.10610912553555907,
                        "12": 0.10610912553555907
                    },
                    "DJF": 0.10618508407982796,
                    "JJA": 0.10610912553555907,
                    "MAM": 0.10610912553555907,
                    "SON": 0.10610912553555907
                },
                "Total_50S50N": {
                    "ANN": 0.19346116116987366,
                    "CalendarMonths": {
                        "1": 0.19346116116987366,
                        "2": 0.19346116116987366,
                        "3": 0.19346116116987366,
                        "4": 0.19346116116987366,
                        "5": 0.19346116116987366,
                        "6": 0.19346116116987366,
                        "7": 0.19346116116987366,
                        "8": 0.19346116116987366,
                        "9": 0.19346116116987366,
                        "10": 0.19346116116987366,
                        "11": 0.19346116116987366,
                        "12": 0.19346116116987366
                    },
                    "DJF": 0.19444126629958436,
                    "JJA": 0.19346116116987366,
                    "MAM": 0.19346116116987366,
                    "SON": 0.19346116116987366
                }
            },
            "amtP90": {
                "Land_30N50N": {
                    "ANN": 0.08944399863652219,
                    "CalendarMonths": {
                        "1": 0.08944399863652219,
                        "2": 0.08944399863652219,
                        "3": 0.08944399863652219,
                        "4": 0.08944399863652219,
                        "5": 0.08944399863652219,
                        "6": 0.08944399863652219,
                        "7": 0.08944399863652219,
                        "8": 0.08944399863652219,
                        "9": 0.08944399863652219,
                        "10": 0.08944399863652219,
                        "11": 0.08944399863652219,
                        "12": 0.08944399863652219
                    },
                    "DJF": 0.10964533035035495,
                    "JJA": 0.08944399863652219,
                    "MAM": 0.08944399863652219,
                    "SON": 0.08944399863652219
                },
                "Land_30S30N": {
                    "ANN": 0.08743111413997406,
                    "CalendarMonths": {
                        "1": 0.08743111413997406,
                        "2": 0.08743111413997406,
                        "3": 0.08743111413997406,
                        "4": 0.08743111413997406,
                        "5": 0.08743111413997406,
                        "6": 0.08743111413997406,
                        "7": 0.08743111413997406,
                        "8": 0.08743111413997406,
                        "9": 0.08743111413997406,
                        "10": 0.08743111413997406,
                        "11": 0.08743111413997406,
                        "12": 0.08743111413997406
                    },
                    "DJF": 0.09174696912708358,
                    "JJA": 0.08743111413997406,
                    "MAM": 0.08743111413997406,
                    "SON": 0.08743111413997406
                },
                "Land_50S30S": {
                    "ANN": 0.03065263103731042,
                    "CalendarMonths": {
                        "1": 0.03065263103731042,
                        "2": 0.03065263103731042,
                        "3": 0.03065263103731042,
                        "4": 0.03065263103731042,
                        "5": 0.03065263103731042,
                        "6": 0.03065263103731042,
                        "7": 0.03065263103731042,
                        "8": 0.03065263103731042,
                        "9": 0.03065263103731042,
                        "10": 0.03065263103731042,
                        "11": 0.03065263103731042,
                        "12": 0.03065263103731042
                    },
                    "DJF": 0.029889678723793445,
                    "JJA": 0.03065263103731042,
                    "MAM": 0.03065263103731042,
                    "SON": 0.03065263103731042
                },
                "Land_50S50N": {
                    "ANN": 0.08051764104044923,
                    "CalendarMonths": {
                        "1": 0.08051764104044923,
                        "2": 0.08051764104044923,
                        "3": 0.08051764104044923,
                        "4": 0.08051764104044923,
                        "5": 0.08051764104044923,
                        "6": 0.08051764104044923,
                        "7": 0.08051764104044923,
                        "8": 0.08051764104044923,
                        "9": 0.08051764104044923,
                        "10": 0.08051764104044923,
                        "11": 0.08051764104044923,
                        "12": 0.08051764104044923
                    },
                    "DJF": 0.09935459635971022,
                    "JJA": 0.08051764104044923,
                    "MAM": 0.08051764104044923,
                    "SON": 0.08051764104044923
                },
                "Ocean_30N50N": {
                    "ANN": 0.057415618574730765,
                    "CalendarMonths": {
                        "1": 0.057415618574730765,
                        "2": 0.057415618574730765,
                        "3": 0.057415618574730765,
                        "4": 0.057415618574730765,
                        "5": 0.057415618574730765,
                        "6": 0.057415618574730765,
                        "7": 0.057415618574730765,
                        "8": 0.057415618574730765,
                        "9": 0.057415618574730765,
                        "10": 0.057415618574730765,
                        "11": 0.057415618574730765,
                        "12": 0.057415618574730765
                    },
                    "DJF": 0.07346437446591447,
                    "JJA": 0.057415618574730765,
                    "MAM": 0.057415618574730765,
                    "SON": 0.057415618574730765
                },
                "Ocean_30S30N": {
                    "ANN": 0.12359511041819815,
                    "CalendarMonths": {
                        "1": 0.12359511041819815,
                        "2": 0.12359511041819815,
                        "3": 0.12359511041819815,
                        "4": 0.12359511041819815,
                        "5": 0.12359511041819815,
                        "6": 0.12359511041819815,
                        "7": 0.12359511041819815,
                        "8": 0.12359511041819815,
                        "9": 0.12359511041819815,
                        "10": 0.12359511041819815,
                        "11": 0.12359511041819815,
                        "12": 0.12359511041819815
                    },
                    "DJF": 0.1243951500899404,
                    "JJA": 0.12359511041819815,
                    "MAM": 0.12359511041819815,
                    "SON": 0.12359511041819815
                },
                "Ocean_50S30S": {
                    "ANN": 0.05407421978696403,
                    "CalendarMonths": {
                        "1": 0.05407421978696403,
                        "2": 0.05407421978696403,
                        "3": 0.05407421978696403,
                        "4": 0.05407421978696403,
                        "5": 0.05407421978696403,
                        "6": 0.05407421978696403,
                        "7": 0.05407421978696403,
                        "8": 0.05407421978696403,
                        "9": 0.05407421978696403,
                        "10": 0.05407421978696403,
                        "11": 0.05407421978696403,
                        "12": 0.05407421978696403
                    },
                    "DJF": 0.04336965387136238,
                    "JJA": 0.05407421978696403,
                    "MAM": 0.05407421978696403,
                    "SON": 0.05407421978696403
                },
                "Ocean_50S50N": {
                    "ANN": 0.1191918493701336,
                    "CalendarMonths": {
                        "1": 0.1191918493701336,
                        "2": 0.1191918493701336,
                        "3": 0.1191918493701336,
                        "4": 0.1191918493701336,
                        "5": 0.1191918493701336,
                        "6": 0.1191918493701336,
                        "7": 0.1191918493701336,
                        "8": 0.1191918493701336,
                        "9": 0.1191918493701336,
                        "10": 0.1191918493701336,
                        "11": 0.1191918493701336,
                        "12": 0.1191918493701336
                    },
                    "DJF": 0.11959283817952393,
                    "JJA": 0.1191918493701336,
                    "MAM": 0.1191918493701336,
                    "SON": 0.1191918493701336
                },
                "Total_30N50N": {
                    "ANN": 0.0689138214987367,
                    "CalendarMonths": {
                        "1": 0.0689138214987367,
                        "2": 0.0689138214987367,
                        "3": 0.0689138214987367,
                        "4": 0.0689138214987367,
                        "5": 0.0689138214987367,
                        "6": 0.0689138214987367,
                        "7": 0.0689138214987367,
                        "8": 0.0689138214987367,
                        "9": 0.0689138214987367,
                        "10": 0.0689138214987367,
                        "11": 0.0689138214987367,
                        "12": 0.0689138214987367
                    },
                    "DJF": 0.0869666331594161,
                    "JJA": 0.0689138214987367,
                    "MAM": 0.0689138214987367,
                    "SON": 0.0689138214987367
                },
                "Total_30S30N": {
                    "ANN": 0.11884428860435636,
                    "CalendarMonths": {
                        "1": 0.11884428860435636,
                        "2": 0.11884428860435636,
                        "3": 0.11884428860435636,
                        "4": 0.11884428860435636,
                        "5": 0.11884428860435636,
                        "6": 0.11884428860435636,
                        "7": 0.11884428860435636,
                        "8": 0.11884428860435636,
                        "9": 0.11884428860435636,
                        "10": 0.11884428860435636,
                        "11": 0.11884428860435636,
                        "12": 0.11884428860435636
                    },
                    "DJF": 0.12054285233659834,
                    "JJA": 0.11884428860435636,
                    "MAM": 0.11884428860435636,
                    "SON": 0.11884428860435636
                },
                "Total_50S30S": {
                    "ANN": 0.048208958450975614,
                    "CalendarMonths": {
                        "1": 0.048208958450975614,
                        "2": 0.048208958450975614,
                        "3": 0.048208958450975614,
                        "4": 0.048208958450975614,
                        "5": 0.048208958450975614,
                        "6": 0.048208958450975614,
                        "7": 0.048208958450975614,
                        "8": 0.048208958450975614,
                        "9": 0.048208958450975614,
                        "10": 0.048208958450975614,
                        "11": 0.048208958450975614,
                        "12": 0.048208958450975614
                    },
                    "DJF": 0.048195244626079825,
                    "JJA": 0.048208958450975614,
                    "MAM": 0.048208958450975614,
                    "SON": 0.048208958450975614
                },
                "Total_50S50N": {
                    "ANN": 0.09683702858901078,
                    "CalendarMonths": {
                        "1": 0.09683702858901078,
                        "2": 0.09683702858901078,
                        "3": 0.09683702858901078,
                        "4": 0.09683702858901078,
                        "5": 0.09683702858901078,
                        "6": 0.09683702858901078,
                        "7": 0.09683702858901078,
                        "8": 0.09683702858901078,
                        "9": 0.09683702858901078,
                        "10": 0.09683702858901078,
                        "11": 0.09683702858901078,
                        "12": 0.09683702858901078
                    },
                    "DJF": 0.09810800359319083,
                    "JJA": 0.09683702858901078,
                    "MAM": 0.09683702858901078,
                    "SON": 0.09683702858901078
                }
            },
            "amtpeak": {
                "Land_30N50N": {
                    "ANN": 15.332487549212512,
                    "CalendarMonths": {
                        "1": 15.332487549212512,
                        "2": 15.332487549212512,
                        "3": 15.332487549212512,
                        "4": 15.332487549212512,
                        "5": 15.332487549212512,
                        "6": 15.332487549212512,
                        "7": 15.332487549212512,
                        "8": 15.332487549212512,
                        "9": 15.332487549212512,
                        "10": 15.332487549212512,
                        "11": 15.332487549212512,
                        "12": 15.332487549212512
                    },
                    "DJF": 15.332487549212512,
                    "JJA": 15.332487549212512,
                    "MAM": 15.332487549212512,
                    "SON": 15.332487549212512
                },
                "Land_30S30N": {
                    "ANN": 17.773627765703264,
                    "CalendarMonths": {
                        "1": 17.773627765703264,
                        "2": 17.773627765703264,
                        "3": 17.773627765703264,
                        "4": 17.773627765703264,
                        "5": 17.773627765703264,
                        "6": 17.773627765703264,
                        "7": 17.773627765703264,
                        "8": 17.773627765703264,
                        "9": 17.773627765703264,
                        "10": 17.773627765703264,
                        "11": 17.773627765703264,
                        "12": 17.773627765703264
                    },
                    "DJF": 17.773627765703264,
                    "JJA": 17.773627765703264,
                    "MAM": 17.773627765703264,
                    "SON": 17.773627765703264
                },
                "Land_50S30S": {
                    "ANN": 20.603430652712508,
                    "CalendarMonths": {
                        "1": 20.603430652712508,
                        "2": 20.603430652712508,
                        "3": 20.603430652712508,
                        "4": 20.603430652712508,
                        "5": 20.603430652712508,
                        "6": 20.603430652712508,
                        "7": 20.603430652712508,
                        "8": 20.603430652712508,
                        "9": 20.603430652712508,
                        "10": 20.603430652712508,
                        "11": 20.603430652712508,
                        "12": 20.603430652712508
                    },
                    "DJF": 20.603430652712508,
                    "JJA": 20.603430652712508,
                    "MAM": 20.603430652712508,
                    "SON": 20.603430652712508
                },
                "Land_50S50N": {
                    "ANN": 17.773627765703264,
                    "CalendarMonths": {
                        "1": 17.773627765703264,
                        "2": 17.773627765703264,
                        "3": 17.773627765703264,
                        "4": 17.773627765703264,
                        "5": 17.773627765703264,
                        "6": 17.773627765703264,
                        "7": 17.773627765703264,
                        "8": 17.773627765703264,
                        "9": 17.773627765703264,
                        "10": 17.773627765703264,
                        "11": 17.773627765703264,
                        "12": 17.773627765703264
                    },
                    "DJF": 17.773627765703264,
                    "JJA": 17.773627765703264,
                    "MAM": 17.773627765703264,
                    "SON": 17.773627765703264
                },
                "Ocean_30N50N": {
                    "ANN": 14.240685351820252,
                    "CalendarMonths": {
                        "1": 14.240685351820252,
                        "2": 14.240685351820252,
                        "3": 14.240685351820252,
                        "4": 14.240685351820252,
                        "5": 14.240685351820252,
                        "6": 14.240685351820252,
                        "7": 14.240685351820252,
                        "8": 14.240685351820252,
                        "9": 14.240685351820252,
                        "10": 14.240685351820252,
                        "11": 14.240685351820252,
                        "12": 14.240685351820252
                    },
                    "DJF": 14.240685351820252,
                    "JJA": 14.240685351820252,
                    "MAM": 14.240685351820252,
                    "SON": 14.240685351820252
                },
                "Ocean_30S30N": {
                    "ANN": 23.883776585006974,
                    "CalendarMonths": {
                        "1": 23.883776585006974,
                        "2": 23.883776585006974,
                        "3": 23.883776585006974,
                        "4": 23.883776585006974,
                        "5": 23.883776585006974,
                        "6": 23.883776585006974,
                        "7": 23.883776585006974,
                        "8": 23.883776585006974,
                        "9": 23.883776585006974,
                        "10": 23.883776585006974,
                        "11": 23.883776585006974,
                        "12": 23.883776585006974
                    },
                    "DJF": 23.883776585006974,
                    "JJA": 23.883776585006974,
                    "MAM": 23.883776585006974,
                    "SON": 23.883776585006974
                },
                "Ocean_50S30S": {
                    "ANN": 11.41000149000947,
                    "CalendarMonths": {
                        "1": 11.41000149000947,
                        "2": 11.41000149000947,
                        "3": 11.41000149000947,
                        "4": 11.41000149000947,
                        "5": 11.41000149000947,
                        "6": 11.41000149000947,
                        "7": 11.41000149000947,
                        "8": 11.41000149000947,
                        "9": 11.41000149000947,
                        "10": 11.41000149000947,
                        "11": 11.41000149000947,
                        "12": 11.41000149000947
                    },
                    "DJF": 12.284781347247801,
                    "JJA": 11.41000149000947,
                    "MAM": 11.41000149000947,
                    "SON": 11.41000149000947
                },
                "Ocean_50S50N": {
                    "ANN": 22.183050615144673,
                    "CalendarMonths": {
                        "1": 22.183050615144673,
                        "2": 22.183050615144673,
                        "3": 22.183050615144673,
                        "4": 22.183050615144673,
                        "5": 22.183050615144673,
                        "6": 22.183050615144673,
                        "7": 22.183050615144673,
                        "8": 22.183050615144673,
                        "9": 22.183050615144673,
                        "10": 22.183050615144673,
                        "11": 22.183050615144673,
                        "12": 22.183050615144673
                    },
                    "DJF": 22.183050615144673,
                    "JJA": 22.183050615144673,
                    "MAM": 22.183050615144673,
                    "SON": 22.183050615144673
                },
                "Total_30N50N": {
                    "ANN": 14.240685351820252,
                    "CalendarMonths": {
                        "1": 14.240685351820252,
                        "2": 14.240685351820252,
                        "3": 14.240685351820252,
                        "4": 14.240685351820252,
                        "5": 14.240685351820252,
                        "6": 14.240685351820252,
                        "7": 14.240685351820252,
                        "8": 14.240685351820252,
                        "9": 14.240685351820252,
                        "10": 14.240685351820252,
                        "11": 14.240685351820252,
                        "12": 14.240685351820252
                    },
                    "DJF": 14.240685351820252,
                    "JJA": 14.240685351820252,
                    "MAM": 14.240685351820252,
                    "SON": 14.240685351820252
                },
                "Total_30S30N": {
                    "ANN": 22.183050615144673,
                    "CalendarMonths": {
                        "1": 22.183050615144673,
                        "2": 22.183050615144673,
                        "3": 22.183050615144673,
                        "4": 22.183050615144673,
                        "5": 22.183050615144673,
                        "6": 22.183050615144673,
                        "7": 22.183050615144673,
                        "8": 22.183050615144673,
                        "9": 22.183050615144673,
                        "10": 22.183050615144673,
                        "11": 22.183050615144673,
                        "12": 22.183050615144673
                    },
                    "DJF": 22.183050615144673,
                    "JJA": 22.183050615144673,
                    "MAM": 22.183050615144673,
                    "SON": 22.183050615144673
                },
                "Total_50S30S": {
                    "ANN": 11.41000149000947,
                    "CalendarMonths": {
                        "1": 11.41000149000947,
                        "2": 11.41000149000947,
                        "3": 11.41000149000947,
                        "4": 11.41000149000947,
                        "5": 11.41000149000947,
                        "6": 11.41000149000947,
                        "7": 11.41000149000947,
                        "8": 11.41000149000947,
                        "9": 11.41000149000947,
                        "10": 11.41000149000947,
                        "11": 11.41000149000947,
                        "12": 11.41000149000947
                    },
                    "DJF": 11.41000149000947,
                    "JJA": 11.41000149000947,
                    "MAM": 11.41000149000947,
                    "SON": 11.41000149000947
                },
                "Total_50S50N": {
                    "ANN": 19.136292930392564,
                    "CalendarMonths": {
                        "1": 19.136292930392564,
                        "2": 19.136292930392564,
                        "3": 19.136292930392564,
                        "4": 19.136292930392564,
                        "5": 19.136292930392564,
                        "6": 19.136292930392564,
                        "7": 19.136292930392564,
                        "8": 19.136292930392564,
                        "9": 19.136292930392564,
                        "10": 19.136292930392564,
                        "11": 19.136292930392564,
                        "12": 19.136292930392564
                    },
                    "DJF": 19.136292930392564,
                    "JJA": 19.136292930392564,
                    "MAM": 19.136292930392564,
                    "SON": 19.136292930392564
                }
            },
            "amtwidth": {
                "Land_30N50N": {
                    "ANN": 2.535233693319106,
                    "CalendarMonths": {
                        "1": 2.535233693319106,
                        "2": 2.535233693319106,
                        "3": 2.535233693319106,
                        "4": 2.535233693319106,
                        "5": 2.535233693319106,
                        "6": 2.535233693319106,
                        "7": 2.535233693319106,
                        "8": 2.535233693319106,
                        "9": 2.535233693319106,
                        "10": 2.535233693319106,
                        "11": 2.535233693319106,
                        "12": 2.535233693319106
                    },
                    "DJF": 2.4947798551425215,
                    "JJA": 2.535233693319106,
                    "MAM": 2.535233693319106,
                    "SON": 2.535233693319106
                },
                "Land_30S30N": {
                    "ANN": 1.9871343693365082,
                    "CalendarMonths": {
                        "1": 1.9871343693365082,
                        "2": 1.9871343693365082,
                        "3": 1.9871343693365082,
                        "4": 1.9871343693365082,
                        "5": 1.9871343693365082,
                        "6": 1.9871343693365082,
                        "7": 1.9871343693365082,
                        "8": 1.9871343693365082,
                        "9": 1.9871343693365082,
                        "10": 1.9871343693365082,
                        "11": 1.9871343693365082,
                        "12": 1.9871343693365082
                    },
                    "DJF": 1.9933231319802047,
                    "JJA": 1.9871343693365082,
                    "MAM": 1.9871343693365082,
                    "SON": 1.9871343693365082
                },
                "Land_50S30S": {
                    "ANN": 2.1734156809951575,
                    "CalendarMonths": {
                        "1": 2.1734156809951575,
                        "2": 2.1734156809951575,
                        "3": 2.1734156809951575,
                        "4": 2.1734156809951575,
                        "5": 2.1734156809951575,
                        "6": 2.1734156809951575,
                        "7": 2.1734156809951575,
                        "8": 2.1734156809951575,
                        "9": 2.1734156809951575,
                        "10": 2.1734156809951575,
                        "11": 2.1734156809951575,
                        "12": 2.1734156809951575
                    },
                    "DJF": 2.190243886725746,
                    "JJA": 2.1734156809951575,
                    "MAM": 2.1734156809951575,
                    "SON": 2.1734156809951575
                },
                "Land_50S50N": {
                    "ANN": 2.0688980015196528,
                    "CalendarMonths": {
                        "1": 2.0688980015196528,
                        "2": 2.0688980015196528,
                        "3": 2.0688980015196528,
                        "4": 2.0688980015196528,
                        "5": 2.0688980015196528,
                        "6": 2.0688980015196528,
                        "7": 2.0688980015196528,
                        "8": 2.0688980015196528,
                        "9": 2.0688980015196528,
                        "10": 2.0688980015196528,
                        "11": 2.0688980015196528,
                        "12": 2.0688980015196528
                    },
                    "DJF": 2.084041318418206,
                    "JJA": 2.0688980015196528,
                    "MAM": 2.0688980015196528,
                    "SON": 2.0688980015196528
                },
                "Ocean_30N50N": {
                    "ANN": 2.3596034640574595,
                    "CalendarMonths": {
                        "1": 2.3596034640574595,
                        "2": 2.3596034640574595,
                        "3": 2.3596034640574595,
                        "4": 2.3596034640574595,
                        "5": 2.3596034640574595,
                        "6": 2.3596034640574595,
                        "7": 2.3596034640574595,
                        "8": 2.3596034640574595,
                        "9": 2.3596034640574595,
                        "10": 2.3596034640574595,
                        "11": 2.3596034640574595,
                        "12": 2.3596034640574595
                    },
                    "DJF": 2.3699530701376488,
                    "JJA": 2.3596034640574595,
                    "MAM": 2.3596034640574595,
                    "SON": 2.3596034640574595
                },
                "Ocean_30S30N": {
                    "ANN": 2.185318970340515,
                    "CalendarMonths": {
                        "1": 2.185318970340515,
                        "2": 2.185318970340515,
                        "3": 2.185318970340515,
                        "4": 2.185318970340515,
                        "5": 2.185318970340515,
                        "6": 2.185318970340515,
                        "7": 2.185318970340515,
                        "8": 2.185318970340515,
                        "9": 2.185318970340515,
                        "10": 2.185318970340515,
                        "11": 2.185318970340515,
                        "12": 2.185318970340515
                    },
                    "DJF": 2.1911949817865053,
                    "JJA": 2.185318970340515,
                    "MAM": 2.185318970340515,
                    "SON": 2.185318970340515
                },
                "Ocean_50S30S": {
                    "ANN": 2.4308357128270695,
                    "CalendarMonths": {
                        "1": 2.4308357128270695,
                        "2": 2.4308357128270695,
                        "3": 2.4308357128270695,
                        "4": 2.4308357128270695,
                        "5": 2.4308357128270695,
                        "6": 2.4308357128270695,
                        "7": 2.4308357128270695,
                        "8": 2.4308357128270695,
                        "9": 2.4308357128270695,
                        "10": 2.4308357128270695,
                        "11": 2.4308357128270695,
                        "12": 2.4308357128270695
                    },
                    "DJF": 2.415518090689826,
                    "JJA": 2.4308357128270695,
                    "MAM": 2.4308357128270695,
                    "SON": 2.4308357128270695
                },
                "Ocean_50S50N": {
                    "ANN": 2.39949831043429,
                    "CalendarMonths": {
                        "1": 2.39949831043429,
                        "2": 2.39949831043429,
                        "3": 2.39949831043429,
                        "4": 2.39949831043429,
                        "5": 2.39949831043429,
                        "6": 2.39949831043429,
                        "7": 2.39949831043429,
                        "8": 2.39949831043429,
                        "9": 2.39949831043429,
                        "10": 2.39949831043429,
                        "11": 2.39949831043429,
                        "12": 2.39949831043429
                    },
                    "DJF": 2.401156563843962,
                    "JJA": 2.39949831043429,
                    "MAM": 2.39949831043429,
                    "SON": 2.39949831043429
                },
                "Total_30N50N": {
                    "ANN": 2.416998150245379,
                    "CalendarMonths": {
                        "1": 2.416998150245379,
                        "2": 2.416998150245379,
                        "3": 2.416998150245379,
                        "4": 2.416998150245379,
                        "5": 2.416998150245379,
                        "6": 2.416998150245379,
                        "7": 2.416998150245379,
                        "8": 2.416998150245379,
                        "9": 2.416998150245379,
                        "10": 2.416998150245379,
                        "11": 2.416998150245379,
                        "12": 2.416998150245379
                    },
                    "DJF": 2.420260534081807,
                    "JJA": 2.416998150245379,
                    "MAM": 2.416998150245379,
                    "SON": 2.416998150245379
                },
                "Total_30S30N": {
                    "ANN": 2.181371308315568,
                    "CalendarMonths": {
                        "1": 2.181371308315568,
                        "2": 2.181371308315568,
                        "3": 2.181371308315568,
                        "4": 2.181371308315568,
                        "5": 2.181371308315568,
                        "6": 2.181371308315568,
                        "7": 2.181371308315568,
                        "8": 2.181371308315568,
                        "9": 2.181371308315568,
                        "10": 2.181371308315568,
                        "11": 2.181371308315568,
                        "12": 2.181371308315568
                    },
                    "DJF": 2.186232558838237,
                    "JJA": 2.181371308315568,
                    "MAM": 2.181371308315568,
                    "SON": 2.181371308315568
                },
                "Total_50S30S": {
                    "ANN": 2.4439022974997187,
                    "CalendarMonths": {
                        "1": 2.4439022974997187,
                        "2": 2.4439022974997187,
                        "3": 2.4439022974997187,
                        "4": 2.4439022974997187,
                        "5": 2.4439022974997187,
                        "6": 2.4439022974997187,
                        "7": 2.4439022974997187,
                        "8": 2.4439022974997187,
                        "9": 2.4439022974997187,
                        "10": 2.4439022974997187,
                        "11": 2.4439022974997187,
                        "12": 2.4439022974997187
                    },
                    "DJF": 2.425329744954338,
                    "JJA": 2.4439022974997187,
                    "MAM": 2.4439022974997187,
                    "SON": 2.4439022974997187
                },
                "Total_50S50N": {
                    "ANN": 2.3250378822930395,
                    "CalendarMonths": {
                        "1": 2.3250378822930395,
                        "2": 2.3250378822930395,
                        "3": 2.3250378822930395,
                        "4": 2.3250378822930395,
                        "5": 2.3250378822930395,
                        "6": 2.3250378822930395,
                        "7": 2.3250378822930395,
                        "8": 2.3250378822930395,
                        "9": 2.3250378822930395,
                        "10": 2.3250378822930395,
                        "11": 2.3250378822930395,
                        "12": 2.3250378822930395
                    },
                    "DJF": 2.3314430039636163,
                    "JJA": 2.3250378822930395,
                    "MAM": 2.3250378822930395,
                    "SON": 2.3250378822930395
                }
            },
            "bimod": {
                "Land_30N50N": {
                    "ANN": 0,
                    "CalendarMonths": {
                        "1": 0,
                        "2": 0,
                        "3": 0,
                        "4": 0,
                        "5": 0,
                        "6": 0,
                        "7": 0,
                        "8": 0,
                        "9": 0,
                        "10": 0,
                        "11": 0,
                        "12": 0
                    },
                    "DJF": 0,
                    "JJA": 0,
                    "MAM": 0,
                    "SON": 0
                },
                "Land_30S30N": {
                    "ANN": -0.19153668440442473,
                    "CalendarMonths": {
                        "1": -0.19153668440442473,
                        "2": -0.19153668440442473,
                        "3": -0.19153668440442473,
                        "4": -0.19153668440442473,
                        "5": -0.19153668440442473,
                        "6": -0.19153668440442473,
                        "7": -0.19153668440442473,
                        "8": -0.19153668440442473,
                        "9": -0.19153668440442473,
                        "10": -0.19153668440442473,
                        "11": -0.19153668440442473,
                        "12": -0.19153668440442473
                    },
                    "DJF": -0.17196615143194127,
                    "JJA": -0.19153668440442473,
                    "MAM": -0.19153668440442473,
                    "SON": -0.19153668440442473
                },
                "Land_50S30S": {
                    "ANN": 0,
                    "CalendarMonths": {
                        "1": 0,
                        "2": 0,
                        "3": 0,
                        "4": 0,
                        "5": 0,
                        "6": 0,
                        "7": 0,
                        "8": 0,
                        "9": 0,
                        "10": 0,
                        "11": 0,
                        "12": 0
                    },
                    "DJF": 0.0018589157817941603,
                    "JJA": 0,
                    "MAM": 0,
                    "SON": 0
                },
                "Land_50S50N": {
                    "ANN": -0.02556429150118154,
                    "CalendarMonths": {
                        "1": -0.02556429150118154,
                        "2": -0.02556429150118154,
                        "3": -0.02556429150118154,
                        "4": -0.02556429150118154,
                        "5": -0.02556429150118154,
                        "6": -0.02556429150118154,
                        "7": -0.02556429150118154,
                        "8": -0.02556429150118154,
                        "9": -0.02556429150118154,
                        "10": -0.02556429150118154,
                        "11": -0.02556429150118154,
                        "12": -0.02556429150118154
                    },
                    "DJF": -0.024955202320298728,
                    "JJA": -0.02556429150118154,
                    "MAM": -0.02556429150118154,
                    "SON": -0.02556429150118154
                },
                "Ocean_30N50N": {
                    "ANN": 0,
                    "CalendarMonths": {
                        "1": 0,
                        "2": 0,
                        "3": 0,
                        "4": 0,
                        "5": 0,
                        "6": 0,
                        "7": 0,
                        "8": 0,
                        "9": 0,
                        "10": 0,
                        "11": 0,
                        "12": 0
                    },
                    "DJF": 0,
                    "JJA": 0,
                    "MAM": 0,
                    "SON": 0
                },
                "Ocean_30S30N": {
                    "ANN": 0,
                    "CalendarMonths": {
                        "1": 0,
                        "2": 0,
                        "3": 0,
                        "4": 0,
                        "5": 0,
                        "6": 0,
                        "7": 0,
                        "8": 0,
                        "9": 0,
                        "10": 0,
                        "11": 0,
                        "12": 0
                    },
                    "DJF": 0,
                    "JJA": 0,
                    "MAM": 0,
                    "SON": 0
                },
                "Ocean_50S30S": {
                    "ANN": 0,
                    "CalendarMonths": {
                        "1": 0,
                        "2": 0,
                        "3": 0,
                        "4": 0,
                        "5": 0,
                        "6": 0,
                        "7": 0,
                        "8": 0,
                        "9": 0,
                        "10": 0,
                        "11": 0,
                        "12": 0
                    },
                    "DJF": 0,
                    "JJA": 0,
                    "MAM": 0,
                    "SON": 0
                },
                "Ocean_50S50N": {
                    "ANN": 0,
                    "CalendarMonths": {
                        "1": 0,
                        "2": 0,
                        "3": 0,
                        "4": 0,
                        "5": 0,
                        "6": 0,
                        "7": 0,
                        "8": 0,
                        "9": 0,
                        "10": 0,
                        "11": 0,
                        "12": 0
                    },
                    "DJF": 0,
                    "JJA": 0,
                    "MAM": 0,
                    "SON": 0
                },
                "Total_30N50N": {
                    "ANN": 0,
                    "CalendarMonths": {
                        "1": 0,
                        "2": 0,
                        "3": 0,
                        "4": 0,
                        "5": 0,
                        "6": 0,
                        "7": 0,
                        "8": 0,
                        "9": 0,
                        "10": 0,
                        "11": 0,
                        "12": 0
                    },
                    "DJF": 0,
                    "JJA": 0,
                    "MAM": 0,
                    "SON": 0
                },
                "Total_30S30N": {
                    "ANN": -0.0013676541613270555,
                    "CalendarMonths": {
                        "1": -0.0013676541613270555,
                        "2": -0.0013676541613270555,
                        "3": -0.0013676541613270555,
                        "4": -0.0013676541613270555,
                        "5": -0.0013676541613270555,
                        "6": -0.0013676541613270555,
                        "7": -0.0013676541613270555,
                        "8": -0.0013676541613270555,
                        "9": -0.0013676541613270555,
                        "10": -0.0013676541613270555,
                        "11": -0.0013676541613270555,
                        "12": -0.0013676541613270555
                    },
                    "DJF": -0.0005267324775520821,
                    "JJA": -0.0013676541613270555,
                    "MAM": -0.0013676541613270555,
                    "SON": -0.0013676541613270555
                },
                "Total_50S30S": {
                    "ANN": 0,
                    "CalendarMonths": {
                        "1": 0,
                        "2": 0,
                        "3": 0,
                        "4": 0,
                        "5": 0,
                        "6": 0,
                        "7": 0,
                        "8": 0,
                        "9": 0,
                        "10": 0,
                        "11": 0,
                        "12": 0
                    },
                    "DJF": 0,
                    "JJA": 0,
                    "MAM": 0,
                    "SON": 0
                },
                "Total_50S50N": {
                    "ANN": 0,
                    "CalendarMonths": {
                        "1": 0,
                        "2": 0,
                        "3": 0,
                        "4": 0,
                        "5": 0,
                        "6": 0,
                        "7": 0,
                        "8": 0,
                        "9": 0,
                        "10": 0,
                        "11": 0,
                        "12": 0
                    },
                    "DJF": 0,
                    "JJA": 0,
                    "MAM": 0,
                    "SON": 0
                }
            },
            "frqP10": {
                "Land_30N50N": {
                    "ANN": 0.6882279544266834,
                    "CalendarMonths": {
                        "1": 0.6882279544266834,
                        "2": 0.6882279544266834,
                        "3": 0.6882279544266834,
                        "4": 0.6882279544266834,
                        "5": 0.6882279544266834,
                        "6": 0.6882279544266834,
                        "7": 0.6882279544266834,
                        "8": 0.6882279544266834,
                        "9": 0.6882279544266834,
                        "10": 0.6882279544266834,
                        "11": 0.6882279544266834,
                        "12": 0.6882279544266834
                    },
                    "DJF": 0.6863458911815481,
                    "JJA": 0.6882279544266834,
                    "MAM": 0.6882279544266834,
                    "SON": 0.6882279544266834
                },
                "Land_30S30N": {
                    "ANN": 0.6886343067564191,
                    "CalendarMonths": {
                        "1": 0.6886343067564191,
                        "2": 0.6886343067564191,
                        "3": 0.6886343067564191,
                        "4": 0.6886343067564191,
                        "5": 0.6886343067564191,
                        "6": 0.6886343067564191,
                        "7": 0.6886343067564191,
                        "8": 0.6886343067564191,
                        "9": 0.6886343067564191,
                        "10": 0.6886343067564191,
                        "11": 0.6886343067564191,
                        "12": 0.6886343067564191
                    },
                    "DJF": 0.6945634985503046,
                    "JJA": 0.6886343067564191,
                    "MAM": 0.6886343067564191,
                    "SON": 0.6886343067564191
                },
                "Land_50S30S": {
                    "ANN": 0.7328093552705415,
                    "CalendarMonths": {
                        "1": 0.7328093552705415,
                        "2": 0.7328093552705415,
                        "3": 0.7328093552705415,
                        "4": 0.7328093552705415,
                        "5": 0.7328093552705415,
                        "6": 0.7328093552705415,
                        "7": 0.7328093552705415,
                        "8": 0.7328093552705415,
                        "9": 0.7328093552705415,
                        "10": 0.7328093552705415,
                        "11": 0.7328093552705415,
                        "12": 0.7328093552705415
                    },
                    "DJF": 0.7295708481514184,
                    "JJA": 0.7328093552705415,
                    "MAM": 0.7328093552705415,
                    "SON": 0.7328093552705415
                },
                "Land_50S50N": {
                    "ANN": 0.6994484677679902,
                    "CalendarMonths": {
                        "1": 0.6994484677679902,
                        "2": 0.6994484677679902,
                        "3": 0.6994484677679902,
                        "4": 0.6994484677679902,
                        "5": 0.6994484677679902,
                        "6": 0.6994484677679902,
                        "7": 0.6994484677679902,
                        "8": 0.6994484677679902,
                        "9": 0.6994484677679902,
                        "10": 0.6994484677679902,
                        "11": 0.6994484677679902,
                        "12": 0.6994484677679902
                    },
                    "DJF": 0.7022286130134051,
                    "JJA": 0.6994484677679902,
                    "MAM": 0.6994484677679902,
                    "SON": 0.6994484677679902
                },
                "Ocean_30N50N": {
                    "ANN": 0.6940412817204371,
                    "CalendarMonths": {
                        "1": 0.6940412817204371,
                        "2": 0.6940412817204371,
                        "3": 0.6940412817204371,
                        "4": 0.6940412817204371,
                        "5": 0.6940412817204371,
                        "6": 0.6940412817204371,
                        "7": 0.6940412817204371,
                        "8": 0.6940412817204371,
                        "9": 0.6940412817204371,
                        "10": 0.6940412817204371,
                        "11": 0.6940412817204371,
                        "12": 0.6940412817204371
                    },
                    "DJF": 0.6935954900916368,
                    "JJA": 0.6940412817204371,
                    "MAM": 0.6940412817204371,
                    "SON": 0.6940412817204371
                },
                "Ocean_30S30N": {
                    "ANN": 0.732080594583956,
                    "CalendarMonths": {
                        "1": 0.732080594583956,
                        "2": 0.732080594583956,
                        "3": 0.732080594583956,
                        "4": 0.732080594583956,
                        "5": 0.732080594583956,
                        "6": 0.732080594583956,
                        "7": 0.732080594583956,
                        "8": 0.732080594583956,
                        "9": 0.732080594583956,
                        "10": 0.732080594583956,
                        "11": 0.732080594583956,
                        "12": 0.732080594583956
                    },
                    "DJF": 0.7329802386735255,
                    "JJA": 0.732080594583956,
                    "MAM": 0.732080594583956,
                    "SON": 0.732080594583956
                },
                "Ocean_50S30S": {
                    "ANN": 0.6810507673553186,
                    "CalendarMonths": {
                        "1": 0.6810507673553186,
                        "2": 0.6810507673553186,
                        "3": 0.6810507673553186,
                        "4": 0.6810507673553186,
                        "5": 0.6810507673553186,
                        "6": 0.6810507673553186,
                        "7": 0.6810507673553186,
                        "8": 0.6810507673553186,
                        "9": 0.6810507673553186,
                        "10": 0.6810507673553186,
                        "11": 0.6810507673553186,
                        "12": 0.6810507673553186
                    },
                    "DJF": 0.669149587396355,
                    "JJA": 0.6810507673553186,
                    "MAM": 0.6810507673553186,
                    "SON": 0.6810507673553186
                },
                "Ocean_50S50N": {
                    "ANN": 0.7141407603528545,
                    "CalendarMonths": {
                        "1": 0.7141407603528545,
                        "2": 0.7141407603528545,
                        "3": 0.7141407603528545,
                        "4": 0.7141407603528545,
                        "5": 0.7141407603528545,
                        "6": 0.7141407603528545,
                        "7": 0.7141407603528545,
                        "8": 0.7141407603528545,
                        "9": 0.7141407603528545,
                        "10": 0.7141407603528545,
                        "11": 0.7141407603528545,
                        "12": 0.7141407603528545
                    },
                    "DJF": 0.7141454814121793,
                    "JJA": 0.7141407603528545,
                    "MAM": 0.7141407603528545,
                    "SON": 0.7141407603528545
                },
                "Total_30N50N": {
                    "ANN": 0.6914281157135591,
                    "CalendarMonths": {
                        "1": 0.6914281157135591,
                        "2": 0.6914281157135591,
                        "3": 0.6914281157135591,
                        "4": 0.6914281157135591,
                        "5": 0.6914281157135591,
                        "6": 0.6914281157135591,
                        "7": 0.6914281157135591,
                        "8": 0.6914281157135591,
                        "9": 0.6914281157135591,
                        "10": 0.6914281157135591,
                        "11": 0.6914281157135591,
                        "12": 0.6914281157135591
                    },
                    "DJF": 0.6996702559615311,
                    "JJA": 0.6914281157135591,
                    "MAM": 0.6914281157135591,
                    "SON": 0.6914281157135591
                },
                "Total_30S30N": {
                    "ANN": 0.7295761400603852,
                    "CalendarMonths": {
                        "1": 0.7295761400603852,
                        "2": 0.7295761400603852,
                        "3": 0.7295761400603852,
                        "4": 0.7295761400603852,
                        "5": 0.7295761400603852,
                        "6": 0.7295761400603852,
                        "7": 0.7295761400603852,
                        "8": 0.7295761400603852,
                        "9": 0.7295761400603852,
                        "10": 0.7295761400603852,
                        "11": 0.7295761400603852,
                        "12": 0.7295761400603852
                    },
                    "DJF": 0.7315439050617013,
                    "JJA": 0.7295761400603852,
                    "MAM": 0.7295761400603852,
                    "SON": 0.7295761400603852
                },
                "Total_50S30S": {
                    "ANN": 0.6835184818744088,
                    "CalendarMonths": {
                        "1": 0.6835184818744088,
                        "2": 0.6835184818744088,
                        "3": 0.6835184818744088,
                        "4": 0.6835184818744088,
                        "5": 0.6835184818744088,
                        "6": 0.6835184818744088,
                        "7": 0.6835184818744088,
                        "8": 0.6835184818744088,
                        "9": 0.6835184818744088,
                        "10": 0.6835184818744088,
                        "11": 0.6835184818744088,
                        "12": 0.6835184818744088
                    },
                    "DJF": 0.6721319584673067,
                    "JJA": 0.6835184818744088,
                    "MAM": 0.6835184818744088,
                    "SON": 0.6835184818744088
                },
                "Total_50S50N": {
                    "ANN": 0.710956475778618,
                    "CalendarMonths": {
                        "1": 0.710956475778618,
                        "2": 0.710956475778618,
                        "3": 0.710956475778618,
                        "4": 0.710956475778618,
                        "5": 0.710956475778618,
                        "6": 0.710956475778618,
                        "7": 0.710956475778618,
                        "8": 0.710956475778618,
                        "9": 0.710956475778618,
                        "10": 0.710956475778618,
                        "11": 0.710956475778618,
                        "12": 0.710956475778618
                    },
                    "DJF": 0.711558231175795,
                    "JJA": 0.710956475778618,
                    "MAM": 0.710956475778618,
                    "SON": 0.710956475778618
                }
            },
            "frqP20": {
                "Land_30N50N": {
                    "ANN": 0.7871559985078423,
                    "CalendarMonths": {
                        "1": 0.7871559985078423,
                        "2": 0.7871559985078423,
                        "3": 0.7871559985078423,
                        "4": 0.7871559985078423,
                        "5": 0.7871559985078423,
                        "6": 0.7871559985078423,
                        "7": 0.7871559985078423,
                        "8": 0.7871559985078423,
                        "9": 0.7871559985078423,
                        "10": 0.7871559985078423,
                        "11": 0.7871559985078423,
                        "12": 0.7871559985078423
                    },
                    "DJF": 0.7836872810548552,
                    "JJA": 0.7871559985078423,
                    "MAM": 0.7871559985078423,
                    "SON": 0.7871559985078423
                },
                "Land_30S30N": {
                    "ANN": 0.7688031559921793,
                    "CalendarMonths": {
                        "1": 0.7688031559921793,
                        "2": 0.7688031559921793,
                        "3": 0.7688031559921793,
                        "4": 0.7688031559921793,
                        "5": 0.7688031559921793,
                        "6": 0.7688031559921793,
                        "7": 0.7688031559921793,
                        "8": 0.7688031559921793,
                        "9": 0.7688031559921793,
                        "10": 0.7688031559921793,
                        "11": 0.7688031559921793,
                        "12": 0.7688031559921793
                    },
                    "DJF": 0.7734014111571289,
                    "JJA": 0.7688031559921793,
                    "MAM": 0.7688031559921793,
                    "SON": 0.7688031559921793
                },
                "Land_50S30S": {
                    "ANN": 0.8172954095258388,
                    "CalendarMonths": {
                        "1": 0.8172954095258388,
                        "2": 0.8172954095258388,
                        "3": 0.8172954095258388,
                        "4": 0.8172954095258388,
                        "5": 0.8172954095258388,
                        "6": 0.8172954095258388,
                        "7": 0.8172954095258388,
                        "8": 0.8172954095258388,
                        "9": 0.8172954095258388,
                        "10": 0.8172954095258388,
                        "11": 0.8172954095258388,
                        "12": 0.8172954095258388
                    },
                    "DJF": 0.8158723808390903,
                    "JJA": 0.8172954095258388,
                    "MAM": 0.8172954095258388,
                    "SON": 0.8172954095258388
                },
                "Land_50S50N": {
                    "ANN": 0.786830498016063,
                    "CalendarMonths": {
                        "1": 0.786830498016063,
                        "2": 0.786830498016063,
                        "3": 0.786830498016063,
                        "4": 0.786830498016063,
                        "5": 0.786830498016063,
                        "6": 0.786830498016063,
                        "7": 0.786830498016063,
                        "8": 0.786830498016063,
                        "9": 0.786830498016063,
                        "10": 0.786830498016063,
                        "11": 0.786830498016063,
                        "12": 0.786830498016063
                    },
                    "DJF": 0.7886943059537193,
                    "JJA": 0.786830498016063,
                    "MAM": 0.786830498016063,
                    "SON": 0.786830498016063
                },
                "Ocean_30N50N": {
                    "ANN": 0.7994795640614479,
                    "CalendarMonths": {
                        "1": 0.7994795640614479,
                        "2": 0.7994795640614479,
                        "3": 0.7994795640614479,
                        "4": 0.7994795640614479,
                        "5": 0.7994795640614479,
                        "6": 0.7994795640614479,
                        "7": 0.7994795640614479,
                        "8": 0.7994795640614479,
                        "9": 0.7994795640614479,
                        "10": 0.7994795640614479,
                        "11": 0.7994795640614479,
                        "12": 0.7994795640614479
                    },
                    "DJF": 0.8087994914367349,
                    "JJA": 0.7994795640614479,
                    "MAM": 0.7994795640614479,
                    "SON": 0.7994795640614479
                },
                "Ocean_30S30N": {
                    "ANN": 0.8131205688850665,
                    "CalendarMonths": {
                        "1": 0.8131205688850665,
                        "2": 0.8131205688850665,
                        "3": 0.8131205688850665,
                        "4": 0.8131205688850665,
                        "5": 0.8131205688850665,
                        "6": 0.8131205688850665,
                        "7": 0.8131205688850665,
                        "8": 0.8131205688850665,
                        "9": 0.8131205688850665,
                        "10": 0.8131205688850665,
                        "11": 0.8131205688850665,
                        "12": 0.8131205688850665
                    },
                    "DJF": 0.8139222946947967,
                    "JJA": 0.8131205688850665,
                    "MAM": 0.8131205688850665,
                    "SON": 0.8131205688850665
                },
                "Ocean_50S30S": {
                    "ANN": 0.7932431627310594,
                    "CalendarMonths": {
                        "1": 0.7932431627310594,
                        "2": 0.7932431627310594,
                        "3": 0.7932431627310594,
                        "4": 0.7932431627310594,
                        "5": 0.7932431627310594,
                        "6": 0.7932431627310594,
                        "7": 0.7932431627310594,
                        "8": 0.7932431627310594,
                        "9": 0.7932431627310594,
                        "10": 0.7932431627310594,
                        "11": 0.7932431627310594,
                        "12": 0.7932431627310594
                    },
                    "DJF": 0.7847916222148726,
                    "JJA": 0.7932431627310594,
                    "MAM": 0.7932431627310594,
                    "SON": 0.7932431627310594
                },
                "Ocean_50S50N": {
                    "ANN": 0.8105333468625447,
                    "CalendarMonths": {
                        "1": 0.8105333468625447,
                        "2": 0.8105333468625447,
                        "3": 0.8105333468625447,
                        "4": 0.8105333468625447,
                        "5": 0.8105333468625447,
                        "6": 0.8105333468625447,
                        "7": 0.8105333468625447,
                        "8": 0.8105333468625447,
                        "9": 0.8105333468625447,
                        "10": 0.8105333468625447,
                        "11": 0.8105333468625447,
                        "12": 0.8105333468625447
                    },
                    "DJF": 0.8106856331027223,
                    "JJA": 0.8105333468625447,
                    "MAM": 0.8105333468625447,
                    "SON": 0.8105333468625447
                },
                "Total_30N50N": {
                    "ANN": 0.8008506839957733,
                    "CalendarMonths": {
                        "1": 0.8008506839957733,
                        "2": 0.8008506839957733,
                        "3": 0.8008506839957733,
                        "4": 0.8008506839957733,
                        "5": 0.8008506839957733,
                        "6": 0.8008506839957733,
                        "7": 0.8008506839957733,
                        "8": 0.8008506839957733,
                        "9": 0.8008506839957733,
                        "10": 0.8008506839957733,
                        "11": 0.8008506839957733,
                        "12": 0.8008506839957733
                    },
                    "DJF": 0.8055711679062558,
                    "JJA": 0.8008506839957733,
                    "MAM": 0.8008506839957733,
                    "SON": 0.8008506839957733
                },
                "Total_30S30N": {
                    "ANN": 0.8013764161726292,
                    "CalendarMonths": {
                        "1": 0.8013764161726292,
                        "2": 0.8013764161726292,
                        "3": 0.8013764161726292,
                        "4": 0.8013764161726292,
                        "5": 0.8013764161726292,
                        "6": 0.8013764161726292,
                        "7": 0.8013764161726292,
                        "8": 0.8013764161726292,
                        "9": 0.8013764161726292,
                        "10": 0.8013764161726292,
                        "11": 0.8013764161726292,
                        "12": 0.8013764161726292
                    },
                    "DJF": 0.8029955661856187,
                    "JJA": 0.8013764161726292,
                    "MAM": 0.8013764161726292,
                    "SON": 0.8013764161726292
                },
                "Total_50S30S": {
                    "ANN": 0.7934540925405106,
                    "CalendarMonths": {
                        "1": 0.7934540925405106,
                        "2": 0.7934540925405106,
                        "3": 0.7934540925405106,
                        "4": 0.7934540925405106,
                        "5": 0.7934540925405106,
                        "6": 0.7934540925405106,
                        "7": 0.7934540925405106,
                        "8": 0.7934540925405106,
                        "9": 0.7934540925405106,
                        "10": 0.7934540925405106,
                        "11": 0.7934540925405106,
                        "12": 0.7934540925405106
                    },
                    "DJF": 0.7854029889382746,
                    "JJA": 0.7934540925405106,
                    "MAM": 0.7934540925405106,
                    "SON": 0.7934540925405106
                },
                "Total_50S50N": {
                    "ANN": 0.8053961897094764,
                    "CalendarMonths": {
                        "1": 0.8053961897094764,
                        "2": 0.8053961897094764,
                        "3": 0.8053961897094764,
                        "4": 0.8053961897094764,
                        "5": 0.8053961897094764,
                        "6": 0.8053961897094764,
                        "7": 0.8053961897094764,
                        "8": 0.8053961897094764,
                        "9": 0.8053961897094764,
                        "10": 0.8053961897094764,
                        "11": 0.8053961897094764,
                        "12": 0.8053961897094764
                    },
                    "DJF": 0.8059111349325055,
                    "JJA": 0.8053961897094764,
                    "MAM": 0.8053961897094764,
                    "SON": 0.8053961897094764
                }
            },
            "frqP80": {
                "Land_30N50N": {
                    "ANN": 0.014138729509857173,
                    "CalendarMonths": {
                        "1": 0.014138729509857173,
                        "2": 0.014138729509857173,
                        "3": 0.014138729509857173,
                        "4": 0.014138729509857173,
                        "5": 0.014138729509857173,
                        "6": 0.014138729509857173,
                        "7": 0.014138729509857173,
                        "8": 0.014138729509857173,
                        "9": 0.014138729509857173,
                        "10": 0.014138729509857173,
                        "11": 0.014138729509857173,
                        "12": 0.014138729509857173
                    },
                    "DJF": 0.017676783683832964,
                    "JJA": 0.014138729509857173,
                    "MAM": 0.014138729509857173,
                    "SON": 0.014138729509857173
                },
                "Land_30S30N": {
                    "ANN": 0.015295672445290287,
                    "CalendarMonths": {
                        "1": 0.015295672445290287,
                        "2": 0.015295672445290287,
                        "3": 0.015295672445290287,
                        "4": 0.015295672445290287,
                        "5": 0.015295672445290287,
                        "6": 0.015295672445290287,
                        "7": 0.015295672445290287,
                        "8": 0.015295672445290287,
                        "9": 0.015295672445290287,
                        "10": 0.015295672445290287,
                        "11": 0.015295672445290287,
                        "12": 0.015295672445290287
                    },
                    "DJF": 0.015579836168425176,
                    "JJA": 0.015295672445290287,
                    "MAM": 0.015295672445290287,
                    "SON": 0.015295672445290287
                },
                "Land_50S30S": {
                    "ANN": 0.006401225158681356,
                    "CalendarMonths": {
                        "1": 0.006401225158681356,
                        "2": 0.006401225158681356,
                        "3": 0.006401225158681356,
                        "4": 0.006401225158681356,
                        "5": 0.006401225158681356,
                        "6": 0.006401225158681356,
                        "7": 0.006401225158681356,
                        "8": 0.006401225158681356,
                        "9": 0.006401225158681356,
                        "10": 0.006401225158681356,
                        "11": 0.006401225158681356,
                        "12": 0.006401225158681356
                    },
                    "DJF": 0.004769612849172988,
                    "JJA": 0.006401225158681356,
                    "MAM": 0.006401225158681356,
                    "SON": 0.006401225158681356
                },
                "Land_50S50N": {
                    "ANN": 0.012546473841721806,
                    "CalendarMonths": {
                        "1": 0.012546473841721806,
                        "2": 0.012546473841721806,
                        "3": 0.012546473841721806,
                        "4": 0.012546473841721806,
                        "5": 0.012546473841721806,
                        "6": 0.012546473841721806,
                        "7": 0.012546473841721806,
                        "8": 0.012546473841721806,
                        "9": 0.012546473841721806,
                        "10": 0.012546473841721806,
                        "11": 0.012546473841721806,
                        "12": 0.012546473841721806
                    },
                    "DJF": 0.016105327972585903,
                    "JJA": 0.012546473841721806,
                    "MAM": 0.012546473841721806,
                    "SON": 0.012546473841721806
                },
                "Ocean_30N50N": {
                    "ANN": 0.012140801074187135,
                    "CalendarMonths": {
                        "1": 0.012140801074187135,
                        "2": 0.012140801074187135,
                        "3": 0.012140801074187135,
                        "4": 0.012140801074187135,
                        "5": 0.012140801074187135,
                        "6": 0.012140801074187135,
                        "7": 0.012140801074187135,
                        "8": 0.012140801074187135,
                        "9": 0.012140801074187135,
                        "10": 0.012140801074187135,
                        "11": 0.012140801074187135,
                        "12": 0.012140801074187135
                    },
                    "DJF": 0.01175634603401321,
                    "JJA": 0.012140801074187135,
                    "MAM": 0.012140801074187135,
                    "SON": 0.012140801074187135
                },
                "Ocean_30S30N": {
                    "ANN": 0.01918771943800912,
                    "CalendarMonths": {
                        "1": 0.01918771943800912,
                        "2": 0.01918771943800912,
                        "3": 0.01918771943800912,
                        "4": 0.01918771943800912,
                        "5": 0.01918771943800912,
                        "6": 0.01918771943800912,
                        "7": 0.01918771943800912,
                        "8": 0.01918771943800912,
                        "9": 0.01918771943800912,
                        "10": 0.01918771943800912,
                        "11": 0.01918771943800912,
                        "12": 0.01918771943800912
                    },
                    "DJF": 0.01914833828757001,
                    "JJA": 0.01918771943800912,
                    "MAM": 0.01918771943800912,
                    "SON": 0.01918771943800912
                },
                "Ocean_50S30S": {
                    "ANN": 0.010619043508597437,
                    "CalendarMonths": {
                        "1": 0.010619043508597437,
                        "2": 0.010619043508597437,
                        "3": 0.010619043508597437,
                        "4": 0.010619043508597437,
                        "5": 0.010619043508597437,
                        "6": 0.010619043508597437,
                        "7": 0.010619043508597437,
                        "8": 0.010619043508597437,
                        "9": 0.010619043508597437,
                        "10": 0.010619043508597437,
                        "11": 0.010619043508597437,
                        "12": 0.010619043508597437
                    },
                    "DJF": 0.011020909320816896,
                    "JJA": 0.010619043508597437,
                    "MAM": 0.010619043508597437,
                    "SON": 0.010619043508597437
                },
                "Ocean_50S50N": {
                    "ANN": 0.017865172886310177,
                    "CalendarMonths": {
                        "1": 0.017865172886310177,
                        "2": 0.017865172886310177,
                        "3": 0.017865172886310177,
                        "4": 0.017865172886310177,
                        "5": 0.017865172886310177,
                        "6": 0.017865172886310177,
                        "7": 0.017865172886310177,
                        "8": 0.017865172886310177,
                        "9": 0.017865172886310177,
                        "10": 0.017865172886310177,
                        "11": 0.017865172886310177,
                        "12": 0.017865172886310177
                    },
                    "DJF": 0.01782033826256957,
                    "JJA": 0.017865172886310177,
                    "MAM": 0.017865172886310177,
                    "SON": 0.017865172886310177
                },
                "Total_30N50N": {
                    "ANN": 0.011906031861008026,
                    "CalendarMonths": {
                        "1": 0.011906031861008026,
                        "2": 0.011906031861008026,
                        "3": 0.011906031861008026,
                        "4": 0.011906031861008026,
                        "5": 0.011906031861008026,
                        "6": 0.011906031861008026,
                        "7": 0.011906031861008026,
                        "8": 0.011906031861008026,
                        "9": 0.011906031861008026,
                        "10": 0.011906031861008026,
                        "11": 0.011906031861008026,
                        "12": 0.011906031861008026
                    },
                    "DJF": 0.011927486525726172,
                    "JJA": 0.011906031861008026,
                    "MAM": 0.011906031861008026,
                    "SON": 0.011906031861008026
                },
                "Total_30S30N": {
                    "ANN": 0.018379242071443813,
                    "CalendarMonths": {
                        "1": 0.018379242071443813,
                        "2": 0.018379242071443813,
                        "3": 0.018379242071443813,
                        "4": 0.018379242071443813,
                        "5": 0.018379242071443813,
                        "6": 0.018379242071443813,
                        "7": 0.018379242071443813,
                        "8": 0.018379242071443813,
                        "9": 0.018379242071443813,
                        "10": 0.018379242071443813,
                        "11": 0.018379242071443813,
                        "12": 0.018379242071443813
                    },
                    "DJF": 0.0184059677413817,
                    "JJA": 0.018379242071443813,
                    "MAM": 0.018379242071443813,
                    "SON": 0.018379242071443813
                },
                "Total_50S30S": {
                    "ANN": 0.008953963325577963,
                    "CalendarMonths": {
                        "1": 0.008953963325577963,
                        "2": 0.008953963325577963,
                        "3": 0.008953963325577963,
                        "4": 0.008953963325577963,
                        "5": 0.008953963325577963,
                        "6": 0.008953963325577963,
                        "7": 0.008953963325577963,
                        "8": 0.008953963325577963,
                        "9": 0.008953963325577963,
                        "10": 0.008953963325577963,
                        "11": 0.008953963325577963,
                        "12": 0.008953963325577963
                    },
                    "DJF": 0.009215318437417852,
                    "JJA": 0.008953963325577963,
                    "MAM": 0.008953963325577963,
                    "SON": 0.008953963325577963
                },
                "Total_50S50N": {
                    "ANN": 0.017421053288509514,
                    "CalendarMonths": {
                        "1": 0.017421053288509514,
                        "2": 0.017421053288509514,
                        "3": 0.017421053288509514,
                        "4": 0.017421053288509514,
                        "5": 0.017421053288509514,
                        "6": 0.017421053288509514,
                        "7": 0.017421053288509514,
                        "8": 0.017421053288509514,
                        "9": 0.017421053288509514,
                        "10": 0.017421053288509514,
                        "11": 0.017421053288509514,
                        "12": 0.017421053288509514
                    },
                    "DJF": 0.017447995409591965,
                    "JJA": 0.017421053288509514,
                    "MAM": 0.017421053288509514,
                    "SON": 0.017421053288509514
                }
            },
            "frqP90": {
                "Land_30N50N": {
                    "ANN": 0.0047836255148450135,
                    "CalendarMonths": {
                        "1": 0.0047836255148450135,
                        "2": 0.0047836255148450135,
                        "3": 0.0047836255148450135,
                        "4": 0.0047836255148450135,
                        "5": 0.0047836255148450135,
                        "6": 0.0047836255148450135,
                        "7": 0.0047836255148450135,
                        "8": 0.0047836255148450135,
                        "9": 0.0047836255148450135,
                        "10": 0.0047836255148450135,
                        "11": 0.0047836255148450135,
                        "12": 0.0047836255148450135
                    },
                    "DJF": 0.0063235556672017745,
                    "JJA": 0.0047836255148450135,
                    "MAM": 0.0047836255148450135,
                    "SON": 0.0047836255148450135
                },
                "Land_30S30N": {
                    "ANN": 0.006120074032266665,
                    "CalendarMonths": {
                        "1": 0.006120074032266665,
                        "2": 0.006120074032266665,
                        "3": 0.006120074032266665,
                        "4": 0.006120074032266665,
                        "5": 0.006120074032266665,
                        "6": 0.006120074032266665,
                        "7": 0.006120074032266665,
                        "8": 0.006120074032266665,
                        "9": 0.006120074032266665,
                        "10": 0.006120074032266665,
                        "11": 0.006120074032266665,
                        "12": 0.006120074032266665
                    },
                    "DJF": 0.00633944400997688,
                    "JJA": 0.006120074032266665,
                    "MAM": 0.006120074032266665,
                    "SON": 0.006120074032266665
                },
                "Land_50S30S": {
                    "ANN": 0.001265481868154672,
                    "CalendarMonths": {
                        "1": 0.001265481868154672,
                        "2": 0.001265481868154672,
                        "3": 0.001265481868154672,
                        "4": 0.001265481868154672,
                        "5": 0.001265481868154672,
                        "6": 0.001265481868154672,
                        "7": 0.001265481868154672,
                        "8": 0.001265481868154672,
                        "9": 0.001265481868154672,
                        "10": 0.001265481868154672,
                        "11": 0.001265481868154672,
                        "12": 0.001265481868154672
                    },
                    "DJF": 0.0012257686717606076,
                    "JJA": 0.001265481868154672,
                    "MAM": 0.001265481868154672,
                    "SON": 0.001265481868154672
                },
                "Land_50S50N": {
                    "ANN": 0.00491553032003611,
                    "CalendarMonths": {
                        "1": 0.00491553032003611,
                        "2": 0.00491553032003611,
                        "3": 0.00491553032003611,
                        "4": 0.00491553032003611,
                        "5": 0.00491553032003611,
                        "6": 0.00491553032003611,
                        "7": 0.00491553032003611,
                        "8": 0.00491553032003611,
                        "9": 0.00491553032003611,
                        "10": 0.00491553032003611,
                        "11": 0.00491553032003611,
                        "12": 0.00491553032003611
                    },
                    "DJF": 0.006430622145502718,
                    "JJA": 0.00491553032003611,
                    "MAM": 0.00491553032003611,
                    "SON": 0.00491553032003611
                },
                "Ocean_30N50N": {
                    "ANN": 0.003968453650020964,
                    "CalendarMonths": {
                        "1": 0.003968453650020964,
                        "2": 0.003968453650020964,
                        "3": 0.003968453650020964,
                        "4": 0.003968453650020964,
                        "5": 0.003968453650020964,
                        "6": 0.003968453650020964,
                        "7": 0.003968453650020964,
                        "8": 0.003968453650020964,
                        "9": 0.003968453650020964,
                        "10": 0.003968453650020964,
                        "11": 0.003968453650020964,
                        "12": 0.003968453650020964
                    },
                    "DJF": 0.00529566868127751,
                    "JJA": 0.003968453650020964,
                    "MAM": 0.003968453650020964,
                    "SON": 0.003968453650020964
                },
                "Ocean_30S30N": {
                    "ANN": 0.008925062307845621,
                    "CalendarMonths": {
                        "1": 0.008925062307845621,
                        "2": 0.008925062307845621,
                        "3": 0.008925062307845621,
                        "4": 0.008925062307845621,
                        "5": 0.008925062307845621,
                        "6": 0.008925062307845621,
                        "7": 0.008925062307845621,
                        "8": 0.008925062307845621,
                        "9": 0.008925062307845621,
                        "10": 0.008925062307845621,
                        "11": 0.008925062307845621,
                        "12": 0.008925062307845621
                    },
                    "DJF": 0.008950965308747616,
                    "JJA": 0.008925062307845621,
                    "MAM": 0.008925062307845621,
                    "SON": 0.008925062307845621
                },
                "Ocean_50S30S": {
                    "ANN": 0.003636419267071145,
                    "CalendarMonths": {
                        "1": 0.003636419267071145,
                        "2": 0.003636419267071145,
                        "3": 0.003636419267071145,
                        "4": 0.003636419267071145,
                        "5": 0.003636419267071145,
                        "6": 0.003636419267071145,
                        "7": 0.003636419267071145,
                        "8": 0.003636419267071145,
                        "9": 0.003636419267071145,
                        "10": 0.003636419267071145,
                        "11": 0.003636419267071145,
                        "12": 0.003636419267071145
                    },
                    "DJF": 0.002796432994748632,
                    "JJA": 0.003636419267071145,
                    "MAM": 0.003636419267071145,
                    "SON": 0.003636419267071145
                },
                "Ocean_50S50N": {
                    "ANN": 0.008648901102354611,
                    "CalendarMonths": {
                        "1": 0.008648901102354611,
                        "2": 0.008648901102354611,
                        "3": 0.008648901102354611,
                        "4": 0.008648901102354611,
                        "5": 0.008648901102354611,
                        "6": 0.008648901102354611,
                        "7": 0.008648901102354611,
                        "8": 0.008648901102354611,
                        "9": 0.008648901102354611,
                        "10": 0.008648901102354611,
                        "11": 0.008648901102354611,
                        "12": 0.008648901102354611
                    },
                    "DJF": 0.008673401802726022,
                    "JJA": 0.008648901102354611,
                    "MAM": 0.008648901102354611,
                    "SON": 0.008648901102354611
                },
                "Total_30N50N": {
                    "ANN": 0.004315469991604259,
                    "CalendarMonths": {
                        "1": 0.004315469991604259,
                        "2": 0.004315469991604259,
                        "3": 0.004315469991604259,
                        "4": 0.004315469991604259,
                        "5": 0.004315469991604259,
                        "6": 0.004315469991604259,
                        "7": 0.004315469991604259,
                        "8": 0.004315469991604259,
                        "9": 0.004315469991604259,
                        "10": 0.004315469991604259,
                        "11": 0.004315469991604259,
                        "12": 0.004315469991604259
                    },
                    "DJF": 0.005734617287255661,
                    "JJA": 0.004315469991604259,
                    "MAM": 0.004315469991604259,
                    "SON": 0.004315469991604259
                },
                "Total_30S30N": {
                    "ANN": 0.00866741462239995,
                    "CalendarMonths": {
                        "1": 0.00866741462239995,
                        "2": 0.00866741462239995,
                        "3": 0.00866741462239995,
                        "4": 0.00866741462239995,
                        "5": 0.00866741462239995,
                        "6": 0.00866741462239995,
                        "7": 0.00866741462239995,
                        "8": 0.00866741462239995,
                        "9": 0.00866741462239995,
                        "10": 0.00866741462239995,
                        "11": 0.00866741462239995,
                        "12": 0.00866741462239995
                    },
                    "DJF": 0.008731297650012793,
                    "JJA": 0.00866741462239995,
                    "MAM": 0.00866741462239995,
                    "SON": 0.00866741462239995
                },
                "Total_50S30S": {
                    "ANN": 0.0030434469513048734,
                    "CalendarMonths": {
                        "1": 0.0030434469513048734,
                        "2": 0.0030434469513048734,
                        "3": 0.0030434469513048734,
                        "4": 0.0030434469513048734,
                        "5": 0.0030434469513048734,
                        "6": 0.0030434469513048734,
                        "7": 0.0030434469513048734,
                        "8": 0.0030434469513048734,
                        "9": 0.0030434469513048734,
                        "10": 0.0030434469513048734,
                        "11": 0.0030434469513048734,
                        "12": 0.0030434469513048734
                    },
                    "DJF": 0.003122079121044452,
                    "JJA": 0.0030434469513048734,
                    "MAM": 0.0030434469513048734,
                    "SON": 0.0030434469513048734
                },
                "Total_50S50N": {
                    "ANN": 0.00647965616237034,
                    "CalendarMonths": {
                        "1": 0.00647965616237034,
                        "2": 0.00647965616237034,
                        "3": 0.00647965616237034,
                        "4": 0.00647965616237034,
                        "5": 0.00647965616237034,
                        "6": 0.00647965616237034,
                        "7": 0.00647965616237034,
                        "8": 0.00647965616237034,
                        "9": 0.00647965616237034,
                        "10": 0.00647965616237034,
                        "11": 0.00647965616237034,
                        "12": 0.00647965616237034
                    },
                    "DJF": 0.006541725634550244,
                    "JJA": 0.00647965616237034,
                    "MAM": 0.00647965616237034,
                    "SON": 0.00647965616237034
                }
            },
            "frqpeak": {
                "Land_30N50N": {
                    "ANN": 0.4422721432883659,
                    "CalendarMonths": {
                        "1": 0.4422721432883659,
                        "2": 0.4422721432883659,
                        "3": 0.4422721432883659,
                        "4": 0.4422721432883659,
                        "5": 0.4422721432883659,
                        "6": 0.4422721432883659,
                        "7": 0.4422721432883659,
                        "8": 0.4422721432883659,
                        "9": 0.4422721432883659,
                        "10": 0.4422721432883659,
                        "11": 0.4422721432883659,
                        "12": 0.4422721432883659
                    },
                    "DJF": 0.38152774547341195,
                    "JJA": 0.4422721432883659,
                    "MAM": 0.4422721432883659,
                    "SON": 0.4422721432883659
                },
                "Land_30S30N": {
                    "ANN": 0.32912635981035737,
                    "CalendarMonths": {
                        "1": 0.32912635981035737,
                        "2": 0.32912635981035737,
                        "3": 0.32912635981035737,
                        "4": 0.32912635981035737,
                        "5": 0.32912635981035737,
                        "6": 0.32912635981035737,
                        "7": 0.32912635981035737,
                        "8": 0.32912635981035737,
                        "9": 0.32912635981035737,
                        "10": 0.32912635981035737,
                        "11": 0.32912635981035737,
                        "12": 0.32912635981035737
                    },
                    "DJF": 0.32912635981035737,
                    "JJA": 0.32912635981035737,
                    "MAM": 0.32912635981035737,
                    "SON": 0.32912635981035737
                },
                "Land_50S30S": {
                    "ANN": 0.7417570713140809,
                    "CalendarMonths": {
                        "1": 0.7417570713140809,
                        "2": 0.7417570713140809,
                        "3": 0.7417570713140809,
                        "4": 0.7417570713140809,
                        "5": 0.7417570713140809,
                        "6": 0.7417570713140809,
                        "7": 0.7417570713140809,
                        "8": 0.7417570713140809,
                        "9": 0.7417570713140809,
                        "10": 0.7417570713140809,
                        "11": 0.7417570713140809,
                        "12": 0.7417570713140809
                    },
                    "DJF": 0.7417570713140809,
                    "JJA": 0.7417570713140809,
                    "MAM": 0.7417570713140809,
                    "SON": 0.7417570713140809
                },
                "Land_50S50N": {
                    "ANN": 0.38152774547341195,
                    "CalendarMonths": {
                        "1": 0.38152774547341195,
                        "2": 0.38152774547341195,
                        "3": 0.38152774547341195,
                        "4": 0.38152774547341195,
                        "5": 0.38152774547341195,
                        "6": 0.38152774547341195,
                        "7": 0.38152774547341195,
                        "8": 0.38152774547341195,
                        "9": 0.38152774547341195,
                        "10": 0.38152774547341195,
                        "11": 0.38152774547341195,
                        "12": 0.38152774547341195
                    },
                    "DJF": 0.32912635981035737,
                    "JJA": 0.38152774547341195,
                    "MAM": 0.38152774547341195,
                    "SON": 0.38152774547341195
                },
                "Ocean_30N50N": {
                    "ANN": 0.7986259635327014,
                    "CalendarMonths": {
                        "1": 0.7986259635327014,
                        "2": 0.7986259635327014,
                        "3": 0.7986259635327014,
                        "4": 0.7986259635327014,
                        "5": 0.7986259635327014,
                        "6": 0.7986259635327014,
                        "7": 0.7986259635327014,
                        "8": 0.7986259635327014,
                        "9": 0.7986259635327014,
                        "10": 0.7986259635327014,
                        "11": 0.7986259635327014,
                        "12": 0.7986259635327014
                    },
                    "DJF": 0.7986259635327014,
                    "JJA": 0.7986259635327014,
                    "MAM": 0.7986259635327014,
                    "SON": 0.7986259635327014
                },
                "Ocean_30S30N": {
                    "ANN": 0.8598548693288723,
                    "CalendarMonths": {
                        "1": 0.8598548693288723,
                        "2": 0.8598548693288723,
                        "3": 0.8598548693288723,
                        "4": 0.8598548693288723,
                        "5": 0.8598548693288723,
                        "6": 0.8598548693288723,
                        "7": 0.8598548693288723,
                        "8": 0.8598548693288723,
                        "9": 0.8598548693288723,
                        "10": 0.8598548693288723,
                        "11": 0.8598548693288723,
                        "12": 0.8598548693288723
                    },
                    "DJF": 0.8598548693288723,
                    "JJA": 0.8598548693288723,
                    "MAM": 0.8598548693288723,
                    "SON": 0.8598548693288723
                },
                "Ocean_50S30S": {
                    "ANN": 0.8598548693288723,
                    "CalendarMonths": {
                        "1": 0.8598548693288723,
                        "2": 0.8598548693288723,
                        "3": 0.8598548693288723,
                        "4": 0.8598548693288723,
                        "5": 0.8598548693288723,
                        "6": 0.8598548693288723,
                        "7": 0.8598548693288723,
                        "8": 0.8598548693288723,
                        "9": 0.8598548693288723,
                        "10": 0.8598548693288723,
                        "11": 0.8598548693288723,
                        "12": 0.8598548693288723
                    },
                    "DJF": 0.9257780614069626,
                    "JJA": 0.8598548693288723,
                    "MAM": 0.8598548693288723,
                    "SON": 0.8598548693288723
                },
                "Ocean_50S50N": {
                    "ANN": 0.8598548693288723,
                    "CalendarMonths": {
                        "1": 0.8598548693288723,
                        "2": 0.8598548693288723,
                        "3": 0.8598548693288723,
                        "4": 0.8598548693288723,
                        "5": 0.8598548693288723,
                        "6": 0.8598548693288723,
                        "7": 0.8598548693288723,
                        "8": 0.8598548693288723,
                        "9": 0.8598548693288723,
                        "10": 0.8598548693288723,
                        "11": 0.8598548693288723,
                        "12": 0.8598548693288723
                    },
                    "DJF": 0.8598548693288723,
                    "JJA": 0.8598548693288723,
                    "MAM": 0.8598548693288723,
                    "SON": 0.8598548693288723
                },
                "Total_30N50N": {
                    "ANN": 0.7986259635327014,
                    "CalendarMonths": {
                        "1": 0.7986259635327014,
                        "2": 0.7986259635327014,
                        "3": 0.7986259635327014,
                        "4": 0.7986259635327014,
                        "5": 0.7986259635327014,
                        "6": 0.7986259635327014,
                        "7": 0.7986259635327014,
                        "8": 0.7986259635327014,
                        "9": 0.7986259635327014,
                        "10": 0.7986259635327014,
                        "11": 0.7986259635327014,
                        "12": 0.7986259635327014
                    },
                    "DJF": 0.7986259635327014,
                    "JJA": 0.7986259635327014,
                    "MAM": 0.7986259635327014,
                    "SON": 0.7986259635327014
                },
                "Total_30S30N": {
                    "ANN": 0.6889377229994265,
                    "CalendarMonths": {
                        "1": 0.6889377229994265,
                        "2": 0.6889377229994265,
                        "3": 0.6889377229994265,
                        "4": 0.6889377229994265,
                        "5": 0.6889377229994265,
                        "6": 0.6889377229994265,
                        "7": 0.6889377229994265,
                        "8": 0.6889377229994265,
                        "9": 0.6889377229994265,
                        "10": 0.6889377229994265,
                        "11": 0.6889377229994265,
                        "12": 0.6889377229994265
                    },
                    "DJF": 0.6889377229994265,
                    "JJA": 0.6889377229994265,
                    "MAM": 0.6889377229994265,
                    "SON": 0.6889377229994265
                },
                "Total_50S30S": {
                    "ANN": 0.8598548693288723,
                    "CalendarMonths": {
                        "1": 0.8598548693288723,
                        "2": 0.8598548693288723,
                        "3": 0.8598548693288723,
                        "4": 0.8598548693288723,
                        "5": 0.8598548693288723,
                        "6": 0.8598548693288723,
                        "7": 0.8598548693288723,
                        "8": 0.8598548693288723,
                        "9": 0.8598548693288723,
                        "10": 0.8598548693288723,
                        "11": 0.8598548693288723,
                        "12": 0.8598548693288723
                    },
                    "DJF": 0.9257780614069626,
                    "JJA": 0.8598548693288723,
                    "MAM": 0.8598548693288723,
                    "SON": 0.8598548693288723
                },
                "Total_50S50N": {
                    "ANN": 0.7986259635327014,
                    "CalendarMonths": {
                        "1": 0.7986259635327014,
                        "2": 0.7986259635327014,
                        "3": 0.7986259635327014,
                        "4": 0.7986259635327014,
                        "5": 0.7986259635327014,
                        "6": 0.7986259635327014,
                        "7": 0.7986259635327014,
                        "8": 0.7986259635327014,
                        "9": 0.7986259635327014,
                        "10": 0.7986259635327014,
                        "11": 0.7986259635327014,
                        "12": 0.7986259635327014
                    },
                    "DJF": 0.8598548693288723,
                    "JJA": 0.7986259635327014,
                    "MAM": 0.7986259635327014,
                    "SON": 0.7986259635327014
                }
            },
            "frqwidth": {
                "Land_30N50N": {
                    "ANN": 3.6460213411370055,
                    "CalendarMonths": {
                        "1": 3.6460213411370055,
                        "2": 3.6460213411370055,
                        "3": 3.6460213411370055,
                        "4": 3.6460213411370055,
                        "5": 3.6460213411370055,
                        "6": 3.6460213411370055,
                        "7": 3.6460213411370055,
                        "8": 3.6460213411370055,
                        "9": 3.6460213411370055,
                        "10": 3.6460213411370055,
                        "11": 3.6460213411370055,
                        "12": 3.6460213411370055
                    },
                    "DJF": 3.5455221789267335,
                    "JJA": 3.6460213411370055,
                    "MAM": 3.6460213411370055,
                    "SON": 3.6460213411370055
                },
                "Land_30S30N": {
                    "ANN": 6.13329883023559,
                    "CalendarMonths": {
                        "1": 6.13329883023559,
                        "2": 6.13329883023559,
                        "3": 6.13329883023559,
                        "4": 6.13329883023559,
                        "5": 6.13329883023559,
                        "6": 6.13329883023559,
                        "7": 6.13329883023559,
                        "8": 6.13329883023559,
                        "9": 6.13329883023559,
                        "10": 6.13329883023559,
                        "11": 6.13329883023559,
                        "12": 6.13329883023559
                    },
                    "DJF": 6.127138806003981,
                    "JJA": 6.13329883023559,
                    "MAM": 6.13329883023559,
                    "SON": 6.13329883023559
                },
                "Land_50S30S": {
                    "ANN": 3.558365683724612,
                    "CalendarMonths": {
                        "1": 3.558365683724612,
                        "2": 3.558365683724612,
                        "3": 3.558365683724612,
                        "4": 3.558365683724612,
                        "5": 3.558365683724612,
                        "6": 3.558365683724612,
                        "7": 3.558365683724612,
                        "8": 3.558365683724612,
                        "9": 3.558365683724612,
                        "10": 3.558365683724612,
                        "11": 3.558365683724612,
                        "12": 3.558365683724612
                    },
                    "DJF": 3.7480502146713053,
                    "JJA": 3.558365683724612,
                    "MAM": 3.558365683724612,
                    "SON": 3.558365683724612
                },
                "Land_50S50N": {
                    "ANN": 3.4977425232321107,
                    "CalendarMonths": {
                        "1": 3.4977425232321107,
                        "2": 3.4977425232321107,
                        "3": 3.4977425232321107,
                        "4": 3.4977425232321107,
                        "5": 3.4977425232321107,
                        "6": 3.4977425232321107,
                        "7": 3.4977425232321107,
                        "8": 3.4977425232321107,
                        "9": 3.4977425232321107,
                        "10": 3.4977425232321107,
                        "11": 3.4977425232321107,
                        "12": 3.4977425232321107
                    },
                    "DJF": 3.429441644955577,
                    "JJA": 3.4977425232321107,
                    "MAM": 3.4977425232321107,
                    "SON": 3.4977425232321107
                },
                "Ocean_30N50N": {
                    "ANN": 3.8533225647080833,
                    "CalendarMonths": {
                        "1": 3.8533225647080833,
                        "2": 3.8533225647080833,
                        "3": 3.8533225647080833,
                        "4": 3.8533225647080833,
                        "5": 3.8533225647080833,
                        "6": 3.8533225647080833,
                        "7": 3.8533225647080833,
                        "8": 3.8533225647080833,
                        "9": 3.8533225647080833,
                        "10": 3.8533225647080833,
                        "11": 3.8533225647080833,
                        "12": 3.8533225647080833
                    },
                    "DJF": 3.609133483752277,
                    "JJA": 3.8533225647080833,
                    "MAM": 3.8533225647080833,
                    "SON": 3.8533225647080833
                },
                "Ocean_30S30N": {
                    "ANN": 3.0757674855875887,
                    "CalendarMonths": {
                        "1": 3.0757674855875887,
                        "2": 3.0757674855875887,
                        "3": 3.0757674855875887,
                        "4": 3.0757674855875887,
                        "5": 3.0757674855875887,
                        "6": 3.0757674855875887,
                        "7": 3.0757674855875887,
                        "8": 3.0757674855875887,
                        "9": 3.0757674855875887,
                        "10": 3.0757674855875887,
                        "11": 3.0757674855875887,
                        "12": 3.0757674855875887
                    },
                    "DJF": 3.0754847083111034,
                    "JJA": 3.0757674855875887,
                    "MAM": 3.0757674855875887,
                    "SON": 3.0757674855875887
                },
                "Ocean_50S30S": {
                    "ANN": 3.421691798650265,
                    "CalendarMonths": {
                        "1": 3.421691798650265,
                        "2": 3.421691798650265,
                        "3": 3.421691798650265,
                        "4": 3.421691798650265,
                        "5": 3.421691798650265,
                        "6": 3.421691798650265,
                        "7": 3.421691798650265,
                        "8": 3.421691798650265,
                        "9": 3.421691798650265,
                        "10": 3.421691798650265,
                        "11": 3.421691798650265,
                        "12": 3.421691798650265
                    },
                    "DJF": 3.585168979237172,
                    "JJA": 3.421691798650265,
                    "MAM": 3.421691798650265,
                    "SON": 3.421691798650265
                },
                "Ocean_50S50N": {
                    "ANN": 3.1144550222235914,
                    "CalendarMonths": {
                        "1": 3.1144550222235914,
                        "2": 3.1144550222235914,
                        "3": 3.1144550222235914,
                        "4": 3.1144550222235914,
                        "5": 3.1144550222235914,
                        "6": 3.1144550222235914,
                        "7": 3.1144550222235914,
                        "8": 3.1144550222235914,
                        "9": 3.1144550222235914,
                        "10": 3.1144550222235914,
                        "11": 3.1144550222235914,
                        "12": 3.1144550222235914
                    },
                    "DJF": 3.11308774308346,
                    "JJA": 3.1144550222235914,
                    "MAM": 3.1144550222235914,
                    "SON": 3.1144550222235914
                },
                "Total_30N50N": {
                    "ANN": 3.9223958763045887,
                    "CalendarMonths": {
                        "1": 3.9223958763045887,
                        "2": 3.9223958763045887,
                        "3": 3.9223958763045887,
                        "4": 3.9223958763045887,
                        "5": 3.9223958763045887,
                        "6": 3.9223958763045887,
                        "7": 3.9223958763045887,
                        "8": 3.9223958763045887,
                        "9": 3.9223958763045887,
                        "10": 3.9223958763045887,
                        "11": 3.9223958763045887,
                        "12": 3.9223958763045887
                    },
                    "DJF": 3.71953973975667,
                    "JJA": 3.9223958763045887,
                    "MAM": 3.9223958763045887,
                    "SON": 3.9223958763045887
                },
                "Total_30S30N": {
                    "ANN": 3.235272136936872,
                    "CalendarMonths": {
                        "1": 3.235272136936872,
                        "2": 3.235272136936872,
                        "3": 3.235272136936872,
                        "4": 3.235272136936872,
                        "5": 3.235272136936872,
                        "6": 3.235272136936872,
                        "7": 3.235272136936872,
                        "8": 3.235272136936872,
                        "9": 3.235272136936872,
                        "10": 3.235272136936872,
                        "11": 3.235272136936872,
                        "12": 3.235272136936872
                    },
                    "DJF": 3.2277998111769666,
                    "JJA": 3.235272136936872,
                    "MAM": 3.235272136936872,
                    "SON": 3.235272136936872
                },
                "Total_50S30S": {
                    "ANN": 3.4513849155700056,
                    "CalendarMonths": {
                        "1": 3.4513849155700056,
                        "2": 3.4513849155700056,
                        "3": 3.4513849155700056,
                        "4": 3.4513849155700056,
                        "5": 3.4513849155700056,
                        "6": 3.4513849155700056,
                        "7": 3.4513849155700056,
                        "8": 3.4513849155700056,
                        "9": 3.4513849155700056,
                        "10": 3.4513849155700056,
                        "11": 3.4513849155700056,
                        "12": 3.4513849155700056
                    },
                    "DJF": 3.6055298206138433,
                    "JJA": 3.4513849155700056,
                    "MAM": 3.4513849155700056,
                    "SON": 3.4513849155700056
                },
                "Total_50S50N": {
                    "ANN": 3.29276491438828,
                    "CalendarMonths": {
                        "1": 3.29276491438828,
                        "2": 3.29276491438828,
                        "3": 3.29276491438828,
                        "4": 3.29276491438828,
                        "5": 3.29276491438828,
                        "6": 3.29276491438828,
                        "7": 3.29276491438828,
                        "8": 3.29276491438828,
                        "9": 3.29276491438828,
                        "10": 3.29276491438828,
                        "11": 3.29276491438828,
                        "12": 3.29276491438828
                    },
                    "DJF": 3.291237401357821,
                    "JJA": 3.29276491438828,
                    "MAM": 3.29276491438828,
                    "SON": 3.29276491438828
                }
            },
            "pscore": {
                "Land_30N50N": {
                    "ANN": 0.5882151321417525,
                    "CalendarMonths": {
                        "1": 0.5882151321417525,
                        "2": 0.5882151321417525,
                        "3": 0.5882151321417525,
                        "4": 0.5882151321417525,
                        "5": 0.5882151321417525,
                        "6": 0.5882151321417525,
                        "7": 0.5882151321417525,
                        "8": 0.5882151321417525,
                        "9": 0.5882151321417525,
                        "10": 0.5882151321417525,
                        "11": 0.5882151321417525,
                        "12": 0.5882151321417525
                    },
                    "DJF": 0.5943430397981045,
                    "JJA": 0.5882151321417525,
                    "MAM": 0.5882151321417525,
                    "SON": 0.5882151321417525
                },
                "Land_30S30N": {
                    "ANN": 0.6716173790834727,
                    "CalendarMonths": {
                        "1": 0.6716173790834727,
                        "2": 0.6716173790834727,
                        "3": 0.6716173790834727,
                        "4": 0.6716173790834727,
                        "5": 0.6716173790834727,
                        "6": 0.6716173790834727,
                        "7": 0.6716173790834727,
                        "8": 0.6716173790834727,
                        "9": 0.6716173790834727,
                        "10": 0.6716173790834727,
                        "11": 0.6716173790834727,
                        "12": 0.6716173790834727
                    },
                    "DJF": 0.6671706393142967,
                    "JJA": 0.6716173790834727,
                    "MAM": 0.6716173790834727,
                    "SON": 0.6716173790834727
                },
                "Land_50S30S": {
                    "ANN": 0.5848892041400571,
                    "CalendarMonths": {
                        "1": 0.5848892041400571,
                        "2": 0.5848892041400571,
                        "3": 0.5848892041400571,
                        "4": 0.5848892041400571,
                        "5": 0.5848892041400571,
                        "6": 0.5848892041400571,
                        "7": 0.5848892041400571,
                        "8": 0.5848892041400571,
                        "9": 0.5848892041400571,
                        "10": 0.5848892041400571,
                        "11": 0.5848892041400571,
                        "12": 0.5848892041400571
                    },
                    "DJF": 0.5775953463785286,
                    "JJA": 0.5848892041400571,
                    "MAM": 0.5848892041400571,
                    "SON": 0.5848892041400571
                },
                "Land_50S50N": {
                    "ANN": 0.6433773119547374,
                    "CalendarMonths": {
                        "1": 0.6433773119547374,
                        "2": 0.6433773119547374,
                        "3": 0.6433773119547374,
                        "4": 0.6433773119547374,
                        "5": 0.6433773119547374,
                        "6": 0.6433773119547374,
                        "7": 0.6433773119547374,
                        "8": 0.6433773119547374,
                        "9": 0.6433773119547374,
                        "10": 0.6433773119547374,
                        "11": 0.6433773119547374,
                        "12": 0.6433773119547374
                    },
                    "DJF": 0.6431770646771976,
                    "JJA": 0.6433773119547374,
                    "MAM": 0.6433773119547374,
                    "SON": 0.6433773119547374
                },
                "Ocean_30N50N": {
                    "ANN": 0.6258286511029698,
                    "CalendarMonths": {
                        "1": 0.6258286511029698,
                        "2": 0.6258286511029698,
                        "3": 0.6258286511029698,
                        "4": 0.6258286511029698,
                        "5": 0.6258286511029698,
                        "6": 0.6258286511029698,
                        "7": 0.6258286511029698,
                        "8": 0.6258286511029698,
                        "9": 0.6258286511029698,
                        "10": 0.6258286511029698,
                        "11": 0.6258286511029698,
                        "12": 0.6258286511029698
                    },
                    "DJF": 0.6260067455049916,
                    "JJA": 0.6258286511029698,
                    "MAM": 0.6258286511029698,
                    "SON": 0.6258286511029698
                },
                "Ocean_30S30N": {
                    "ANN": 0.5290342347799636,
                    "CalendarMonths": {
                        "1": 0.5290342347799636,
                        "2": 0.5290342347799636,
                        "3": 0.5290342347799636,
                        "4": 0.5290342347799636,
                        "5": 0.5290342347799636,
                        "6": 0.5290342347799636,
                        "7": 0.5290342347799636,
                        "8": 0.5290342347799636,
                        "9": 0.5290342347799636,
                        "10": 0.5290342347799636,
                        "11": 0.5290342347799636,
                        "12": 0.5290342347799636
                    },
                    "DJF": 0.5295986353825355,
                    "JJA": 0.5290342347799636,
                    "MAM": 0.5290342347799636,
                    "SON": 0.5290342347799636
                },
                "Ocean_50S30S": {
                    "ANN": 0.6087868160881962,
                    "CalendarMonths": {
                        "1": 0.6087868160881962,
                        "2": 0.6087868160881962,
                        "3": 0.6087868160881962,
                        "4": 0.6087868160881962,
                        "5": 0.6087868160881962,
                        "6": 0.6087868160881962,
                        "7": 0.6087868160881962,
                        "8": 0.6087868160881962,
                        "9": 0.6087868160881962,
                        "10": 0.6087868160881962,
                        "11": 0.6087868160881962,
                        "12": 0.6087868160881962
                    },
                    "DJF": 0.6061215746651318,
                    "JJA": 0.6087868160881962,
                    "MAM": 0.6087868160881962,
                    "SON": 0.6087868160881962
                },
                "Ocean_50S50N": {
                    "ANN": 0.5647570965209372,
                    "CalendarMonths": {
                        "1": 0.5647570965209372,
                        "2": 0.5647570965209372,
                        "3": 0.5647570965209372,
                        "4": 0.5647570965209372,
                        "5": 0.5647570965209372,
                        "6": 0.5647570965209372,
                        "7": 0.5647570965209372,
                        "8": 0.5647570965209372,
                        "9": 0.5647570965209372,
                        "10": 0.5647570965209372,
                        "11": 0.5647570965209372,
                        "12": 0.5647570965209372
                    },
                    "DJF": 0.5645270012107262,
                    "JJA": 0.5647570965209372,
                    "MAM": 0.5647570965209372,
                    "SON": 0.5647570965209372
                },
                "Total_30N50N": {
                    "ANN": 0.6142961668325833,
                    "CalendarMonths": {
                        "1": 0.6142961668325833,
                        "2": 0.6142961668325833,
                        "3": 0.6142961668325833,
                        "4": 0.6142961668325833,
                        "5": 0.6142961668325833,
                        "6": 0.6142961668325833,
                        "7": 0.6142961668325833,
                        "8": 0.6142961668325833,
                        "9": 0.6142961668325833,
                        "10": 0.6142961668325833,
                        "11": 0.6142961668325833,
                        "12": 0.6142961668325833
                    },
                    "DJF": 0.6184619582074076,
                    "JJA": 0.6142961668325833,
                    "MAM": 0.6142961668325833,
                    "SON": 0.6142961668325833
                },
                "Total_30S30N": {
                    "ANN": 0.5742541460367315,
                    "CalendarMonths": {
                        "1": 0.5742541460367315,
                        "2": 0.5742541460367315,
                        "3": 0.5742541460367315,
                        "4": 0.5742541460367315,
                        "5": 0.5742541460367315,
                        "6": 0.5742541460367315,
                        "7": 0.5742541460367315,
                        "8": 0.5742541460367315,
                        "9": 0.5742541460367315,
                        "10": 0.5742541460367315,
                        "11": 0.5742541460367315,
                        "12": 0.5742541460367315
                    },
                    "DJF": 0.573898798228939,
                    "JJA": 0.5742541460367315,
                    "MAM": 0.5742541460367315,
                    "SON": 0.5742541460367315
                },
                "Total_50S30S": {
                    "ANN": 0.6115235766068682,
                    "CalendarMonths": {
                        "1": 0.6115235766068682,
                        "2": 0.6115235766068682,
                        "3": 0.6115235766068682,
                        "4": 0.6115235766068682,
                        "5": 0.6115235766068682,
                        "6": 0.6115235766068682,
                        "7": 0.6115235766068682,
                        "8": 0.6115235766068682,
                        "9": 0.6115235766068682,
                        "10": 0.6115235766068682,
                        "11": 0.6115235766068682,
                        "12": 0.6115235766068682
                    },
                    "DJF": 0.6084997602229751,
                    "JJA": 0.6115235766068682,
                    "MAM": 0.6115235766068682,
                    "SON": 0.6115235766068682
                },
                "Total_50S50N": {
                    "ANN": 0.5911464499945153,
                    "CalendarMonths": {
                        "1": 0.5911464499945153,
                        "2": 0.5911464499945153,
                        "3": 0.5911464499945153,
                        "4": 0.5911464499945153,
                        "5": 0.5911464499945153,
                        "6": 0.5911464499945153,
                        "7": 0.5911464499945153,
                        "8": 0.5911464499945153,
                        "9": 0.5911464499945153,
                        "10": 0.5911464499945153,
                        "11": 0.5911464499945153,
                        "12": 0.5911464499945153
                    },
                    "DJF": 0.5907959432449978,
                    "JJA": 0.5911464499945153,
                    "MAM": 0.5911464499945153,
                    "SON": 0.5911464499945153
                }
            }
        }
    },
    "json_structure": [
        "model + realization",
        "metrics",
        "domain",
        "month"
    ],
    "provenance": {
        "commandLine": "/Users/lee1043/mambaforge/envs/pmp_devel_20250908/bin/precip_distribution_driver.py --mip cmip5 --mod GISS-E2-H --exp historical --var pr --frq day --modpath demo_data_tmp/CMIP5_demo_timeseries/historical/atmos/day/pr --mod pr_day_GISS-E2-H_historical_r6i1p1_20000101-20051231.nc --results_dir demo_output_tmp/precip_distribution/ --case_id pr_distribution_GISS-E2-H --prd 2000 2001 --fac 86400 --res 2 2 --ref GPCP-1-3 --ref_dir demo_output_tmp/precip_distribution/",
        "conda": {
            "Platform": "osx-64",
            "PythonVersion": "3.10.13.final.0",
            "Version": "25.3.1",
            "buildVersion": "not installed"
        },
        "date": "2025-09-09 15:38:45",
        "openGL": {
            "GLX": {
                "client": {},
                "server": {}
            }
        },
        "osAccess": false,
        "packages": {
            "PMP": "3.9.1",
            "PMPObs": "See 'References' key below, for detailed obs provenance information.",
            "cdat_info": null,
            "cdp": "1.7.0",
            "esmf": "0.8.10",
            "esmpy": "8.9.0",
            "matplotlib": "3.10.6",
            "numpy": "2.0.2",
            "python": "3.10.10",
            "scipy": "1.15.2",
            "xarray": "2024.9.0",
            "xcdat": "0.10.0"
        },
        "platform": {
            "Name": "ml-9713657",
            "OS": "Darwin",
            "Version": "24.6.0"
        },
        "userId": "lee1043"
    }
}