congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
GridCoordSys.getYHorizAxis
Code IndexAdd Tabnine to your IDE (free)

How to use
getYHorizAxis
method
in
ucar.nc2.dt.grid.GridCoordSys

Best Java code snippets using ucar.nc2.dt.grid.GridCoordSys.getYHorizAxis (Showing top 18 results out of 315)

origin: edu.ucar/cdm

/**
 * true if x and y axes are CoordinateAxis1D and are regular
 */
@Override
public boolean isRegularSpatial() {
 if (!isRegularSpatial(getXHorizAxis())) return false;
 if (!isRegularSpatial(getYHorizAxis())) return false;
 //if (!isRegularSpatial(getVerticalAxis())) return false; LOOK removed July 30, 2006 for WCS
 return true;
}
origin: Unidata/thredds

/**
 * true if x and y axes are CoordinateAxis1D and are regular
 */
@Override
public boolean isRegularSpatial() {
 if (!isRegularSpatial(getXHorizAxis())) return false;
 if (!isRegularSpatial(getYHorizAxis())) return false;
 //if (!isRegularSpatial(getVerticalAxis())) return false; LOOK removed July 30, 2006 for WCS
 return true;
}
origin: edu.ucar/netcdf

/**
 * true if x and y axes are CoordinateAxis1D and are regular
 */
@Override
public boolean isRegularSpatial() {
 if (!isRegularSpatial(getXHorizAxis())) return false;
 if (!isRegularSpatial(getYHorizAxis())) return false;
 //if (!isRegularSpatial(getVerticalAxis())) return false; LOOK removed July 30, 2006 for WCS
 return true;
}
origin: Unidata/thredds

 f.format("%n");
if (getYHorizAxis() != null) {
 f.format(" y=%s (%s)", horizYaxis.getNameAndDimensions(), horizYaxis.getClass().getName());
 if (showCoords) showCoords(horizYaxis, f);
origin: edu.ucar/netcdf

 f.format("%n");
if (getYHorizAxis() != null) {
 f.format("y=%s (%s)", horizYaxis.getFullName(), horizYaxis.getClass().getName());
 if (showCoords) showCoords(horizYaxis, f);
origin: edu.ucar/cdm

 f.format("%n");
if (getYHorizAxis() != null) {
 f.format("y=%s (%s)", horizYaxis.getFullName(), horizYaxis.getClass().getName());
 if (showCoords) showCoords(horizYaxis, f);
origin: edu.ucar/cdm

CoordinateAxis yaxis = from.getYHorizAxis();
origin: edu.ucar/netcdf

CoordinateAxis yaxis = from.getYHorizAxis();
origin: Unidata/thredds

CoordinateAxis yaxis = from.getYHorizAxis();
origin: edu.ucar/netcdf

CoordinateAxis yaxis = getYHorizAxis();
origin: edu.ucar/cdm

CoordinateAxis yaxis = getYHorizAxis();
origin: Unidata/thredds

CoordinateAxis yaxis = getYHorizAxis();
origin: edu.ucar/cdm

if (xaxis instanceof CoordinateAxis1D) {
 xDimOrgIndex = findDimension(gcs.getXHorizAxis().getDimension(0));
 yDimOrgIndex = findDimension(gcs.getYHorizAxis().getDimension(0));
origin: Unidata/thredds

if (xaxis instanceof CoordinateAxis1D) {
 xDimOrgIndex = findDimension(gcs.getXHorizAxis().getDimension(0));
 yDimOrgIndex = findDimension(gcs.getYHorizAxis().getDimension(0));
origin: edu.ucar/netcdf

if (xaxis instanceof CoordinateAxis1D) {
 xDimOrgIndex = findDimension(gcs.getXHorizAxis().getDimension(0));
 yDimOrgIndex = findDimension(gcs.getYHorizAxis().getDimension(0));
origin: edu.ucar/cdm

csElem.setAttribute("name", cs.getName());
csElem.setAttribute("horizX", gcs.getXHorizAxis().getFullName());
csElem.setAttribute("horizY", gcs.getYHorizAxis().getFullName());
if (gcs.hasVerticalAxis())
 csElem.setAttribute("vertical", gcs.getVerticalAxis().getFullName());
origin: edu.ucar/netcdf

csElem.setAttribute("name", cs.getName());
csElem.setAttribute("horizX", gcs.getXHorizAxis().getFullName());
csElem.setAttribute("horizY", gcs.getYHorizAxis().getFullName());
if (gcs.hasVerticalAxis())
 csElem.setAttribute("vertical", gcs.getVerticalAxis().getFullName());
origin: Unidata/thredds

csElem.setAttribute("name", cs.getName());
csElem.setAttribute("horizX", gcs.getXHorizAxis().getFullName());
csElem.setAttribute("horizY", gcs.getYHorizAxis().getFullName());
if (gcs.hasVerticalAxis())
 csElem.setAttribute("vertical", gcs.getVerticalAxis().getFullName());
ucar.nc2.dt.gridGridCoordSysgetYHorizAxis

Javadoc

get the Y Horizontal axis (either GeoY or Lat)

Popular methods of GridCoordSys

  • hasVerticalAxis
  • <init>
    Create a GridCoordSys as a section of an existing GridCoordSys. This will create sections of the cor
  • convertUnits
  • findXYindexFromCoord
    Given a point in x,y coordinate space, find the x,y index in the coordinate system.
  • findXYindexFromCoordBounded
    Given a point in x,y coordinate space, find the x,y index in the coordinate system. If outside the r
  • getBoundingBox
    Get the x,y bounding box in projection coordinates.
  • getCalendarDates
  • getCoordinateTransforms
  • getEnsembleAxis
    get the Ensemble axis, else null
  • getHorizStaggerType
  • getLatLon
    Get the Lat/Lon coordinates of the midpoint of a grid cell, using the x,y indices
  • getLatLonBoundingBox
  • getLatLon,
  • getLatLonBoundingBox,
  • getLevels,
  • getMinOrMaxLon,
  • getName,
  • getProjection,
  • getRangesFromLatLonRect,
  • getRunTimeAxis,
  • getTimeAxis,
  • getTimeAxis1D

Popular in Java

  • Start an intent from android
  • getExternalFilesDir (Context)
  • putExtra (Intent)
  • setScale (BigDecimal)
  • Format (java.text)
    The base class for all formats. This is an abstract base class which specifies the protocol for clas
  • Scanner (java.util)
    A parser that parses a text string of primitive types and strings with the help of regular expressio
  • Notification (javax.management)
  • Reference (javax.naming)
  • JFrame (javax.swing)
  • BasicDataSource (org.apache.commons.dbcp)
    Basic implementation of javax.sql.DataSource that is configured via JavaBeans properties. This is no
  • 14 Best Plugins for Eclipse
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now