package org.autoplot.netCDF; import java.io.File; import java.io.IOException; import java.util.ArrayList; import java.util.Arrays; import java.util.HashMap; import java.util.LinkedHashMap; import java.util.List; import java.util.Map; import java.util.Map.Entry; import java.util.logging.Level; import java.util.logging.Logger; import org.das2.datum.Units; import org.das2.datum.UnitsUtil; import org.das2.util.LoggerManager; import org.das2.util.monitor.ProgressMonitor; import org.das2.qds.ArrayDataSet; import org.das2.qds.DDataSet; import org.das2.qds.DataSetIterator; import org.das2.qds.DataSetOps; import org.das2.qds.DataSetUtil; import org.das2.qds.MutablePropertyDataSet; import org.das2.qds.QDataSet; import org.das2.qds.QubeDataSetIterator; import org.das2.qds.SemanticOps; import org.autoplot.datasource.AbstractDataSourceFormat; import ucar.ma2.Array; import ucar.ma2.DataType; import ucar.ma2.InvalidRangeException; import ucar.nc2.Attribute; import ucar.nc2.Dimension; import ucar.nc2.Group; import ucar.nc2.NetcdfFile; import ucar.nc2.NetcdfFileWriteable; import ucar.nc2.Variable; /** * Format HDF5 files using the NetCDF library. These files do not work with Matlab. * * @author jbf */ public class HDF5DataSourceFormat extends AbstractDataSourceFormat { Map names= new HashMap(); private static final Logger logger= LoggerManager.getLogger("apdss.netcdf"); private synchronized String nameFor(QDataSet dep0) { String name= names.get(dep0); if ( name!=null ) { return name; } name = (String) dep0.property(QDataSet.NAME); Units units = (Units) dep0.property(QDataSet.UNITS); if (name == null) { if ( units!=null && UnitsUtil.isTimeLocation(units)) { name = "Epoch"; } else { name = "Variable_" + names.size(); } } if ( names.containsValue(name) ) { name= name+"_"+names.size(); // safety. We should really never get here for other reasons. } names.put(dep0, name); return name; } private synchronized DataType typeFor( QDataSet dep0, String suggest ) { Units units = (Units) dep0.property(QDataSet.UNITS); if ( units!=null && UnitsUtil.isTimeLocation(units)) { return DataType.DOUBLE; } else { if ( suggest.equals("double") ) { return DataType.DOUBLE; } else if ( suggest.equals("float") ) { return DataType.FLOAT; } else if ( suggest.equals("long") ) { return DataType.LONG; } else if ( suggest.equals("int") ) { return DataType.INT; } else if ( suggest.equals("short") ) { return DataType.SHORT; } else { return DataType.DOUBLE; } } } private static Object getProperty( QDataSet src, String name, Object deft ) { Object o= src.property(name); if ( o==null ) return deft; else return o; } private void copy( NetcdfFile in, NetcdfFileWriteable out ) { for ( Dimension d : in.getDimensions() ) { logger.log(Level.FINER, "out.addDimension({0})", d.getName()); out.addDimension( out.getRootGroup(), d ); } for ( Variable v : in.getVariables() ) { logger.log(Level.FINER, "out.addVariable({0})", v.getShortName()); out.addVariable( out.getRootGroup(), v ); names.put( DDataSet.create( new int[0] ), v.getShortName() ); } } private Dimension getDimension( NetcdfFile ncfile, String name ) { try { logger.log(Level.FINER, "ncfile.getDimensions() (looking for {0})", name); for ( Dimension d: ncfile.getDimensions() ) { if ( d.getName().equals(name) ) { return d; } } } catch ( NullPointerException ex ) { } return null; } @Override public void formatData(String uri, QDataSet data, ProgressMonitor mon) throws Exception { setUri(uri); maybeMkdirs(); String typeSuggest= getParam( "type", "double" ); File file= new File( getResourceURI().toURL().getFile() ); NetcdfFileWriteable ncfile; NetcdfFile oldfile; List dims= new ArrayList(); //TODO: rank2 DEPEND_1. Map dim= new HashMap(); Map dimss= new HashMap(); String name1= getParam( "arg_0", null ); if ( name1!=null ) { names.put(data,name1); } String doDep= getParam("doDep", ""); if ( doDep.length()>0 && doDep.toUpperCase().charAt(0)=='F' ) { MutablePropertyDataSet mpds= DataSetOps.makePropertiesMutable(data); mpds.putProperty( QDataSet.DEPEND_0, null ); mpds.putProperty( QDataSet.DEPEND_1, null ); mpds.putProperty( QDataSet.DEPEND_2, null ); mpds.putProperty( QDataSet.DEPEND_3, null ); mpds.putProperty( QDataSet.BUNDLE_1, null ); data= mpds; } // append is here as a placeholder and is not implemented! boolean append= "T".equals( getParam("append","F") ) ; String tempFileName= file.toString() + ".temp"; if ( ! append ) { if ( file.exists() && !file.delete() ) { throw new IllegalArgumentException("Unable to delete file"+file); } logger.log(Level.FINE, "create HDF5 file {0}", file); logger.log(Level.FINER, "NetcdfFileWriteable.createNew( {0}, true )", tempFileName); ncfile= NetcdfFileWriteable.createNew( tempFileName, true ); oldfile= null; } else { //throw new IllegalArgumentException("append is not supported"); // this is more complex than expected. //ncfile= NetcdfFileWriteable.openExisting( file.toString(), true ); logger.log(Level.FINER, "oldfile= NetcdfFile.open( {0} );", file.toString()); oldfile= NetcdfFile.open( file.toString() ); //oldfile= NetcdfFileWriteable.openExisting( file.toString(),true ); logger.log(Level.FINER, "ncfile=NetcdfFileWriteable.createNew( {0}, true )", tempFileName); ncfile= NetcdfFileWriteable.createNew( tempFileName, true ); copy( oldfile, ncfile ); for ( Dimension d: oldfile.getDimensions() ) { dim.put( d.getName(), d ); } dims.addAll( oldfile.getDimensions() ); } int[] qube= DataSetUtil.qubeDims(data); if ( qube==null ) { throw new IllegalArgumentException("data is not a qube"); } for ( int i=0; i dataStore= new LinkedHashMap(); if ( append ) { assert oldfile!=null; //ncfile.create(); logger.log(Level.FINER,"oldFile.getVariables()"); for ( Variable v : oldfile.getVariables() ) { //logger.log(Level.FINER, "ncfile.findVariable({0})", v.getName()); //Variable newVariable= ncfile.findVariable(v.getName()); logger.log(Level.FINER, "v.getShape()" ); v.getShape(); logger.log(Level.FINER, "v.read()" ); Array a= v.read(); logger.log(Level.FINE, "a={0}", a); dataStore.put( v.getName(), a ); //logger.log(Level.FINER, "ncfile.write({0},a)", v.getName()); //ncfile.write( v.getName(), a ); } oldfile.close(); ncfile.create(); for ( Entry var: dataStore.entrySet() ) { ncfile.write( var.getKey(), var.getValue() ); } } else { ncfile.create(); } for ( int i=0; i)", new Object[]{varName, t}); Variable var= ncfile.addVariable( varName, t, dims ); double fill; Number nfill= (Number)data.property(QDataSet.FILL_VALUE); if ( nfill==null ) { fill= -1e38; } else { fill= nfill.doubleValue(); } String meta= getParam( "metadata", "" ); if ( meta.equals("istp") ) { logger.finer("adding ISTP metadata"); var.addAttribute( new Attribute("FIELDNAM", varName ) ); var.addAttribute( new Attribute("UNITS", SemanticOps.getUnits(data).toString() ) ); var.addAttribute( new Attribute("VAR_TYPE", "data" ) ); var.addAttribute( new Attribute("FILLVAL", fill ) ); var.addAttribute( new Attribute("VALIDMIN", (Double) getProperty( data, QDataSet.VALID_MIN, -1e38 ) ) ); var.addAttribute( new Attribute("VALIDMAX", (Double) getProperty( data, QDataSet.VALID_MAX, 1e38 ) ) ); if ( data.property(QDataSet.TYPICAL_MIN)!=null ) { var.addAttribute( new Attribute("SCALEMIN", (Double) getProperty( data, QDataSet.TYPICAL_MIN, -1e38 ) ) ); // -1e38 will not be used } if ( data.property(QDataSet.TYPICAL_MAX)!=null ) { var.addAttribute( new Attribute("SCALEMAX", (Double) getProperty( data, QDataSet.TYPICAL_MAX, 1e38 ) ) ); // -1e38 will not be used } if ( data.property(QDataSet.SCALE_TYPE)!=null ) { var.addAttribute( new Attribute("SCALETYP", (String) getProperty( data, QDataSet.SCALE_TYPE, "linear" ) ) ); } if ( data.property(QDataSet.TITLE)!=null ) { var.addAttribute( new Attribute("CATDESC", (String) getProperty( data, QDataSet.TITLE, "" ) ) ); } if ( data.property(QDataSet.LABEL)!=null ) { var.addAttribute( new Attribute("LABLAXIS", (String) getProperty( data, QDataSet.LABEL, "" ) ) ); } } else { var.addAttribute( new Attribute("_FillValue", fill ) ); if ( UnitsUtil.isTimeLocation( SemanticOps.getUnits(data) ) ) { //data= Ops.putProperty( Ops.convertUnitsTo( data, Units.cdfTT2000 ), QDataSet.UNITS, null ); // data should really be converted to account for leap seconds. //data= Ops.divide( data, 1e9 ); Units u= SemanticOps.getUnits(data); String unitsStr= u.getOffsetUnits().toString() + " " + u.getBasis().getDescription(); var.addAttribute( new Attribute("units",unitsStr)); } } } private void formatDataOne( NetcdfFileWriteable ncfile, QDataSet data, String typeSuggest) throws IllegalArgumentException, InvalidRangeException, IOException { String varName= nameFor(data); int[] qube= DataSetUtil.qubeDims(data); if ( qube==null ) { throw new IllegalArgumentException("data is not a qube"); } ArrayDataSet ads= ArrayDataSet.copy(data); DataType dataType= typeFor(data,typeSuggest); logger.log(Level.FINER, "ddata= Array.factory( {0}, qube );", dataType ); Array ddata= Array.factory( dataType, qube ); DataSetIterator it= new QubeDataSetIterator(ads); int i=0; while ( it.hasNext() ) { it.next(); ddata.setDouble( i, it.getValue(ads) ); i++; } logger.log(Level.FINER, "ncfile.write({0},ddata)", varName); ncfile.write( varName, ddata ); } // public static void main( String[] args ) throws Exception { // QDataSet out= Ops.rand(100); // new HDF5DataSourceFormat().formatData("file:///home/jbf/foo.nc", out, new NullProgressMonitor() ); // } @Override public boolean canFormat(QDataSet ds) { int[] qube= DataSetUtil.qubeDims(ds); return qube!=null; } @Override public String getDescription() { return "HDF5"; } }