Tabnine Logo
GridCoordSys.isRegularSpatial
Code IndexAdd Tabnine 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)

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

  • Making http post requests using okhttp
  • getSharedPreferences (Context)
  • runOnUiThread (Activity)
  • setContentView (Activity)
  • SocketTimeoutException (java.net)
    This exception is thrown when a timeout expired on a socket read or accept operation.
  • DateFormat (java.text)
    Formats or parses dates and times.This class provides factories for obtaining instances configured f
  • DecimalFormat (java.text)
    A concrete subclass of NumberFormat that formats decimal numbers. It has a variety of features desig
  • ZipFile (java.util.zip)
    This class provides random read access to a zip file. You pay more to read the zip file's central di
  • HttpServletRequest (javax.servlet.http)
    Extends the javax.servlet.ServletRequest interface to provide request information for HTTP servlets.
  • Project (org.apache.tools.ant)
    Central representation of an Ant project. This class defines an Ant project with all of its targets,
  • Best IntelliJ plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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