Hello everyone, I downloaded the ERA-5 total colon water vapor data of the last three years in netcdf format. I want to convert them to CSV format. But when I run the code below, it gives an error. How can I fix this error? By the way, I'm very new to this.
time_dim, lat_dim, lon_dim = t2m.get_dims ()
time_var = f.variables [time_dim.name]
times = num2date (time_var [:), time_var.units)
latitudes = f.variables [lat_dim.name] [:]
longitudes = f.variables [lon_dim.name] [:]
output_dir = './'

ValueError: too many values to unpack (expected 3)