All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ucar.nc2.write.Nc4Chunking Maven / Gradle / Ivy

Go to download

The NetCDF-Java Library is a Java interface to NetCDF files, as well as to many other types of scientific data formats.

The newest version!
package ucar.nc2.write;

import ucar.nc2.Variable;

/**
 * Pluggable component for deciding how to chunk netcdf-4 variables.
 *
 * @author caron
 * @since 11/14/12
 */
public interface Nc4Chunking {

  public enum Strategy {standard, grib, none }

  public boolean isChunked(Variable v);

  public long[] computeChunking(Variable v);

  public int getDeflateLevel(Variable v);

  public boolean isShuffle(Variable v);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy