Tabnine Logo
GridCoordSys.getRangesFromLatLonRect
Code IndexAdd Tabnine to your IDE (free)

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

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

origin: edu.ucar/cdm

/**
 * Get Index Ranges for the given lat, lon bounding box.
 *
 * @deprecated use getRangesFromLatLonRect.
 */
public List<Range> getLatLonBoundingBox(LatLonRect rect) throws InvalidRangeException {
 return getRangesFromLatLonRect(rect);
}
origin: Unidata/thredds

/**
 * Get Index Ranges for the given lat, lon bounding box.
 *
 * @deprecated use getRangesFromLatLonRect.
 */
public List<Range> getLatLonBoundingBox(LatLonRect rect) throws InvalidRangeException {
 return getRangesFromLatLonRect(rect);
}
origin: edu.ucar/netcdf

/**
 * Get Index Ranges for the given lat, lon bounding box.
 *
 * @deprecated use getRangesFromLatLonRect.
 */
public List<Range> getLatLonBoundingBox(LatLonRect rect) throws InvalidRangeException {
 return getRangesFromLatLonRect(rect);
}
origin: edu.ucar/cdm

List yx_ranges = gcs.getRangesFromLatLonRect(bbox);
y_range = (Range) yx_ranges.get(0);
x_range = (Range) yx_ranges.get(1);
origin: edu.ucar/netcdf

List yx_ranges = gcs.getRangesFromLatLonRect(bbox);
y_range = (Range) yx_ranges.get(0);
x_range = (Range) yx_ranges.get(1);
origin: Unidata/thredds

List yx_ranges = gcs.getRangesFromLatLonRect(bbox);
y_range = (Range) yx_ranges.get(0);
x_range = (Range) yx_ranges.get(1);
ucar.nc2.dt.gridGridCoordSysgetRangesFromLatLonRect

Javadoc

Get Index Ranges for the given lat, lon bounding box. For projection, only an approximation based on latlon corners. Must have CoordinateAxis1D or 2D for x and y axis.

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,
  • getRunTimeAxis,
  • getTimeAxis,
  • getTimeAxis1D

Popular in Java

  • Making http post requests using okhttp
  • setScale (BigDecimal)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • getResourceAsStream (ClassLoader)
  • BufferedImage (java.awt.image)
    The BufferedImage subclass describes an java.awt.Image with an accessible buffer of image data. All
  • SocketException (java.net)
    This SocketException may be thrown during socket creation or setting options, and is the superclass
  • SecureRandom (java.security)
    This class generates cryptographically secure pseudo-random numbers. It is best to invoke SecureRand
  • MessageFormat (java.text)
    Produces concatenated messages in language-neutral way. New code should probably use java.util.Forma
  • Reflections (org.reflections)
    Reflections one-stop-shop objectReflections scans your classpath, indexes the metadata, allows you t
  • Option (scala)
  • 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