使用 xarray 导入时,netCDF 文件在 python 中没有变量

netCDF files has no variables in python when importing with xarray

我是 xarray 的新手,我尝试使用 xarray 将卫星 netcdf 文件导入 python 使用此文件:https://tropomi.gesdisc.eosdis.nasa.gov/data//S5P_TROPOMI_Level2/S5P_L2__NO2____HiR.1/2020/003/S5P_OFFL_L2__NO2____20200103T170946_20200103T185116_11525_01_010302_20200105T100506.nc

这是我使用的代码:

import xarray as xr
import numpy as np
import pandas as pd

tropomi = xr.open_dataset('test2.nc', engine = 'netcdf4')
tropomi 

输出:

但是输出不显示任何变量,并且有 53 个属性 - 为什么会这样?

谢谢!

我明白了。当您在没有定义组的情况下打开文件时,您将获得没有变量的全局属性。您需要包含一个 group='PRODUCT' 来获取数据产品,如下所示:


tropomi = xr.open_dataset('test2.nc', group='PRODUCT')