我尝试从数据集模型编写Netcdf-4文件,遵循此http://www.unidata.ucar.edu/software/thredds/current/netcdf-java/tutorial/NetcdfWriting.html会产生以下代码:
NetcdfDataset model = NcMLReader.readNcML(ncmlStream, null);
Nc4Chunking chunker = Nc4ChunkingStrategy.factory(Strategy.standard, 1, true);
NetcdfFileWriter.Version version = NetcdfFileWriter.Version.netcdf4;
FileWriter2 writer = new FileWriter2(model,OUPTPUT_NETCDF_PATH, version, chunker);
NetcdfFile ncfileOut = writer.write();
model.close();
ncfileOut.close();
但它产生的全部是权限被拒绝错误。有了这个块,我希望从填充的数据集中编写.nc4文件。我不知道如何写它。我使用Netcdf nc_inq_libvers = 4.4.1.1
谢谢!
答案 0 :(得分:0)
我能够通过更改输出文件路径来修复代码: 文件:/ d:/output.nc4 至: d:/output.nc4
所以网站上的代码有效!