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

ucar.nc2.ft.grid.IsMissingEvaluator 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.ft.grid;

/**
 * Description
 *
 * @author John
 * @since 12/27/12
 */
public interface IsMissingEvaluator {

  /**
   * true if there may be missing data
   * @return true if there may be missing data
   */
  public boolean hasMissing();

  /**
   * if val is a missing data value
   * @param val test this value
   * @return true if val is missing data
   */
  public boolean isMissing(double val);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy