I have a YAML file in which I want to store the variables from a netCDF file and access the latter.
files:
- path: "file.nc"
variables:
radiance: radiance
groups:
location:
lon: lon
I am able to access radiance, but when I access location, i spits out the following error:
ERROR: LoadError: NetCDF error: Variable 'location' not found in file
It is still treating “location” as a variable, how do i fix it?