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

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

import ucar.nc2.dataset.CoordinateAxis2D;
import ucar.nc2.dataset.CoordinateSystem;
import ucar.nc2.dataset.NetcdfDataset;
import ucar.nc2.ft.grid.SwathCS;

/**
 * Description
 *
 * @author John
 * @since 12/25/12
 */
public class SwathCSImpl extends CoverageCSImpl implements SwathCS {

  protected SwathCSImpl(NetcdfDataset ds, CoordinateSystem cs, CoverageCSFactory fac) {
    super(ds, cs, fac);
  }

  @Override
  public CoordinateAxis2D getLatAxis() {
    return (CoordinateAxis2D) cs.getLatAxis();
  }

  @Override
  public CoordinateAxis2D getLonAxis() {
    return (CoordinateAxis2D) cs.getLonAxis();
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy