全部
按主题我有一个具有某些全局属性的netcdf文件:
// global attributes:
featureType = "trajectory"; //string
geospatial_lon_max = -5.111992566750814; // double
...
如何遍历所有属性并在netcdf文件中获取属性的每个名称,值和类型(而不是python变量类型)? 像这样:
nc = Dataset(self._nc_file)
for name in nc.ncattrs():
value = getattr(nc, name)
type_ = ??? #should be string, double, etc
谢谢