I'm following code here:
https://climate-cms.org/2019/01/18/using-opendap.html
run:
import xarray as xr
aggr_url = "https://thredds.jpl.nasa.gov/thredds/dodsC/OceanTemperature/MUR-JPL-L4-GLOB-v4.1.nc"
data = xr.open_dataset(aggr_url)
returns:
OSError: [Errno -45] NetCDF: Not a valid data type or _FillValue type mismatch: b'https://thredds.jpl.nasa.gov/thredds/dodsC/OceanTemperature/MUR-JPL-L4-GLOB-v4.1.nc'
I tried
data = xr.open_dataset(aggr_url,decode_cf=False)
returns same error as above
suggestions?
thanks, chelle