java netcdf 4 tutorial

我与影子孤独终老i 提交于 2019-12-05 09:41:40

I'm currently also working on a project using NetCDF.

Unfortunately, the NetCDF API for Java only supports reading from NetCDF-4 files, not writing. This API on support writing to NetCDF-3 files.

As for tutorials or help about using it in Java, you can find the API javadoc here: http://www.unidata.ucar.edu/software/netcdf-java/v4.0/javadoc/overview-summary.html

and tutorial: http://www.unidata.ucar.edu/software/netcdf-java/tutorial/

I sure hope this helps you. NetCDF seems like a great way to store scientific data, but NetCDF-3 lacks a tons of features (multiple unlimited dimensions are only available from 4). My best advice for you is to read every documentation you can find on Unidata website. Not just documentation for the Java API, but documentation on NetCDF in general. Check sample files, small examples of code as well. And play a bit with the netCDF Java utils they distribute in the Java download section.

Just a note that the netCDF-Java library (as of 4.3.13) has netCDF-4 write support via the netCDF C library. It's still in beta, but it does work and feedback is certainly appreciated!

Please see the netCDF-Java reference docs for more details.

Have you looked into the Nujan library? It's for writing netcdf4 files

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!