FILE_ALIAS_DICT

climpred.tutorial.FILE_ALIAS_DICT = {'CESM-DP-SSS': 'CESM-DP-LE.SSS.global', 'CESM-DP-SST': 'CESM-DP-LE.SST.global', 'CESM-DP-SST-3D': 'CESM-DP-LE.SST.eastern_pacific', 'CESM-LE': 'CESM-LE.global_mean.SST.1955-2015', 'ERSST': 'ERSSTv4.global.mean', 'FOSI-SSS': 'FOSI.SSS.global', 'FOSI-SST': 'FOSI.SST.global', 'FOSI-SST-3D': 'FOSI.SST.eastern_pacific', 'MPI-PM-DP-1D': 'PM_MPI-ESM-LR_ds', 'MPI-PM-DP-3D': 'PM_MPI-ESM-LR_ds3d', 'MPI-control-1D': 'PM_MPI-ESM-LR_control', 'MPI-control-3D': 'PM_MPI-ESM-LR_control3d', 'MPIESM_miklip_baseline1-assim-SST-global': 'MPIESM_miklip_baseline1-assim-SST-global', 'MPIESM_miklip_baseline1-hind-SST-global': 'MPIESM_miklip_baseline1-hind-SST-global', 'MPIESM_miklip_baseline1-hist-SST-global': 'MPIESM_miklip_baseline1-hist-SST-global'}

dict() -> new empty dictionary dict(mapping) -> new dictionary initialized from a mapping object’s

(key, value) pairs
dict(iterable) -> new dictionary initialized as if via:

d = {} for k, v in iterable:

d[k] = v
dict(**kwargs) -> new dictionary initialized with the name=value pairs
in the keyword argument list. For example: dict(one=1, two=2)