在Python3中读取NetCDF文件

时间:2018-09-05 07:16:25

标签: python-3.x netcdf python-xarray

我已使用ArcMap10.5将多个栅格文件转换为NetCDF文件。现在我想在python 3.6中打开netcdf文件。

%matplotlib inline
import numpy as np
import matplotlib.pyplot as plt
import pandas as pd
import netCDF4
import xarray as xr
import h5py
import glob

allfiles = glob.glob('\folder*.nc')
for file in allfiles:
    file = xr.open_dataset(file).to_dataframe()
    list_of_dfs.append(file)
    print(file)

出现以下错误:

SError: [Errno -101] NetCDF: HDF error:'file.nc'

我尝试按照建议here设置环境变量HDF5_USE_FILE_LOCKING = FALSE 但是,仍然出现该错误。有谁可以帮忙吗?谢谢

0 个答案:

没有答案