ucar.nc2.ft.grid.SwathCS Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cdm Show documentation
Show all versions of cdm Show documentation
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;
import ucar.nc2.dataset.CoordinateAxis2D;
/**
* Description
*
* @author John
* @since 12/23/12
*/
public interface SwathCS extends CoverageCS {
/**
* Get the lat axis. Must be 2 dimensional.
*
* @return X CoordinateAxis, may not be null.
*/
public CoordinateAxis2D getLatAxis();
/**
* Get the lon axis. Must be 2 dimensional.
*
* @return Y CoordinateAxis, may not be null.
*/
public CoordinateAxis2D getLonAxis();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy