Codota Logo
GridCoordSys.isRegularSpatial
Code IndexAdd Codota to your IDE (free)

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

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

  • Common ways to obtain GridCoordSys
private void myMethod () {
GridCoordSys g =
  • Codota IconCoordinateSystem cs;new GridCoordSys(cs, null)
  • Codota IconCoordinateSystem cs;Formatter sbuff;new GridCoordSys(cs, sbuff)
  • Codota IconFormatter sbuff;CoordinateSystem cs;VariableEnhanced v;GridCoordSys.makeGridCoordSys(sbuff, cs, v)
  • Smart code suggestions by Codota
}
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;
}
ucar.nc2.dt.gridGridCoordSysisRegularSpatial

Javadoc

true if x and y axes are CoordinateAxis1D and are regular

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

  • Parsing JSON documents to java classes using gson
  • requestLocationUpdates (LocationManager)
  • scheduleAtFixedRate (ScheduledExecutorService)
    Creates and executes a periodic action that becomes enabled first after the given initial delay, and
  • onCreateOptionsMenu (Activity)
  • Point (java.awt)
    A point representing a location in (x, y) coordinate space, specified in integer precision.
  • URI (java.net)
    Represents a Uniform Resource Identifier (URI) reference. Aside from some minor deviations noted bel
  • ArrayList (java.util)
    Resizable-array implementation of the List interface. Implements all optional list operations, and p
  • BlockingQueue (java.util.concurrent)
    A java.util.Queue that additionally supports operations that wait for the queue to become non-empty
  • JLabel (javax.swing)
  • Logger (org.apache.log4j)
    This is the central class in the log4j package. Most logging operations, except configuration, are d
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now