Import netCDF file to Pandas dataframe

后端 未结 3 1262
梦如初夏
梦如初夏 2020-12-14 02:16

Merry Christmas! I am still very new to Python and Pandas, so any help is appreciated. I am trying to read in a netCDF file, which I can do and then import that into a Pand

3条回答
  •  半阙折子戏
    2020-12-14 02:55

    You can use a library like PyNIO to read your file into p.e. numpy arrays and feed them to pandas.
    PyNIO allows reading several file formats including classic netCDF3 and netCDF4.
    netcdf4-python can also read these netCDF formats and is py3.3 compatible

提交回复
热议问题