I am writing netcdf files and I was wondering if it is possible to import the global attributes straight from the csv file metadata instead of typing them in manually.
This is the conventional way how I used to do it
f.long_name = 'longitude of measurements'
f.standard_name = 'longitude'
f.units = 'degrees_east'
now I would like to skip this manual typing and just insert all the information at once from the csv file.
Somebody has an idea or experience with that? Or does it have to be typed in maunally?
Thanks in advance!