diff --git a/video_prediction_tools/data_preprocess/era5_varmapping_template.json b/video_prediction_tools/data_preprocess/era5_varmapping_template.json new file mode 100644 index 0000000000000000000000000000000000000000..cb83066c939ef9564e5d11960f3eb81376395b65 --- /dev/null +++ b/video_prediction_tools/data_preprocess/era5_varmapping_template.json @@ -0,0 +1,23 @@ +# NOTE: Please configure this JSON-files according your needs. Any line starting with # will be removed +# when editing is invoked from generate_runscript.py. +# +# Explanation: In the following, the mapping of known variable names from the ERA5-data (grib2-files) is defined +# The keys of the dictionary 'surface' (for 2D surface varibales) denote the variable names +# in the target netCDF-file while the values denote the name of the variable in the ERA5 grib file. +# For the dictionary 'multi' (used for 3D variables), the keys denote both, +# the variable name in the target netCDF-file and in the ERA5 grib file. +# The value of the 'pl'-key denotes the pressure level (in Pa) onto which the data is interpolated +# !!! This file should be only adapted if you are familiar with the ERA5 grib files!!! +{ +"surface":{ + ["2t", "tcc","msl","10u","10v"] + }, + +"multi":{ + "t" : { + "pl": 85000 + } + + } +} +