有什么方法可以在 Nim 中处理 NetCDF 文件吗?
Is there any way to work with NetCDF files in Nim?
几天前我发现了 Nim,并且对它非常感兴趣。
但是,我需要知道我是否能够使用 NetCDF 文件(或至少 GRB 文件)来查看它是否适合我的日常生活。
我在网上搜索了一些库或代码,但找不到任何东西,所以如果有人知道这样做的方法,请告诉我。
使用 nim 处理 netcdf 文件的可能选项(截至 2020 年 9 月):
- 因为 netcdf4 是基于 hdf5,也许 nimhdf5 可能有用
- 使用 nimpy bridge to access python libraries that access netcdf, such as netcdf4-python(您的本地 python 环境将成为依赖项)
- 换行netcdf C api using tools like c2nim or nimterop
几天前我发现了 Nim,并且对它非常感兴趣。
但是,我需要知道我是否能够使用 NetCDF 文件(或至少 GRB 文件)来查看它是否适合我的日常生活。
我在网上搜索了一些库或代码,但找不到任何东西,所以如果有人知道这样做的方法,请告诉我。
使用 nim 处理 netcdf 文件的可能选项(截至 2020 年 9 月):
- 因为 netcdf4 是基于 hdf5,也许 nimhdf5 可能有用
- 使用 nimpy bridge to access python libraries that access netcdf, such as netcdf4-python(您的本地 python 环境将成为依赖项)
- 换行netcdf C api using tools like c2nim or nimterop