我正在尝试使用 Python 将 netCDF 文件转换为 CSV 或文本文件。我已经阅读了这篇文章,但我仍然缺少一步(我是 Python 新手)。它是一个包含纬度、经度、时间和降水数据的数据集。
到目前为止,这是我的代码:
import netCDF4
import pandas as pd
precip_nc_file = 'file_path'
nc = netCDF4.Dataset(precip_nc_file, mode='r')
nc.variables.keys()
lat = nc.variables['lat'][:]
lon = nc.variables['lon'][:]
time_var = nc.variables['time']
dtime = netCDF4.num2date(time_var[:],time_var.units)
precip = nc.variables['precip'][:]
我不知道如何从这里开始,尽管我知道这是用熊猫创建数据框的问题。