Reputation: 2093
I have several folders in a directory containing .nc
files. While reading, I am getting an error:
NETCDF can not read unsupported file
Since there are more than 5 thousand files, I don't know which file is corrupted or unsupported. Is there any way to read files by jumping into another supported file?
The code that I am using is:
import xarray as xr
import numpy as np
import pandas as pd
ncfile = glob.glob('mydata/****/se*')
frame = pd.DataFrame()
for i in np.arange(len(ncfile)):
frame = frame
for j in np.arange(len(ds.variables['time'])):
ds1 = xr.open_dataset(ncfile[i])
prec = np.ravel(ds.variables['precipitation_amount'][j,:,:])
frame[dates] = prec
ds = xr.open_dataset(ncfile[i])
Upvotes: 0
Views: 55
Reputation: 3397
You could do this using exception handling. I've shown this with a simple example based on your code:
import xarray as xr
import numpy as np
import pandas as pd
ncfile = glob.glob('mydata/****/se*')
frame = pd.DataFrame()
errors = []
for i in np.arange(len(ncfile)):
frame = frame
try:
ds = xr.open_dataset(ncfile[i])
except:
errors.append(ncfile[i])
Upvotes: 1