Hi,
I am making API requests to the ERA5-Land time series dataset, but I noticed that the variable names required for the API request differ from the column names in the downloaded dataset. For example, soil_temperature_level_1, used as a variable name in the API request, becomes stl1 in the downloaded dataset.
This is an issue for me because I would like to automate the process as much as possible, so I need a way to map these variable names. Is there a Python dictionary or any resource that provides these correspondences?
I have started defining my own dictionary in my code (e.g., {'soil_temperature_level_1': 'stl1'}), but it would be quite time-consuming to download all variables and manually fill in the rest.
Thank you for your help.