[netcdf-java] how to write in-memory netcdfdataset as an nc file?
John Caron
caron at unidata.ucar.edu
Thu Nov 29 08:36:50 MST 2007
Hi Nick:
create the NetcdfFile, then use FileWriter.writeToFile() to copy it to
a disk file.
Nick Bower wrote:
> Maybe this is too obvious for me to see right now, but I can't find a
> way to simply write down an in-memory NcML document to a NetCDF file.
> The issue seems to be that although I can create NetcdfDataset from ncml
> and this inherits NetcdfFile, there appears no way to create
> NetcdfFileWriteable from either.
>
> I have so far;
>
>
> public void persistNcml(String ncml, String filePath) {
>
> InputStream ins = new ByteArrayInputStream(ncml.getBytes());
> NetcdfDataset netcdfDataset = NcMLReader.readNcML(ins, null);
>
> ??? [need way to persist netcdfDataset as an nc file]
>
> }
>
>
> Thanks, Nick
>
> _______________________________________________
> netcdf-java mailing list
> netcdf-java at unidata.ucar.edu
> For list information or to unsubscribe, visit: http://www.unidata.ucar.edu/mailing_lists/
>
More information about the netcdf-java
mailing list