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

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

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

origin: Unidata/thredds

/**
 * Get the date range
 * @return date range
 * @deprecated  use getCalendarDateRange
 */
public DateRange getDateRange() {
 Date[] dates = getTimeDates();
 if (dates.length > 0)
  return new DateRange(dates[0], dates[dates.length - 1]);
 return null;
}
origin: edu.ucar/netcdf

/**
 * Get the date range
 * @return date range
 * @deprecated  use getCalendarDateRange
 */
public DateRange getDateRange() {
 Date[] dates = getTimeDates();
 if (dates.length > 0)
  return new DateRange(dates[0], dates[dates.length - 1]);
 return null;
}
origin: edu.ucar/cdm

/**
 * Get the date range
 * @return date range
 * @deprecated  use getCalendarDateRange
 */
public DateRange getDateRange() {
 Date[] dates = getTimeDates();
 if (dates.length > 0)
  return new DateRange(dates[0], dates[dates.length - 1]);
 return null;
}
ucar.nc2.dt.gridGridCoordSysgetTimeDates

Javadoc

Get the list of times as Dates. If 2D, return list of unique dates.

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
  • onRequestPermissionsResult (Fragment)
  • getSupportFragmentManager (FragmentActivity)
  • getSystemService (Context)
  • BigInteger (java.math)
    An immutable arbitrary-precision signed integer.FAST CRYPTOGRAPHY This implementation is efficient f
  • Properties (java.util)
    A Properties object is a Hashtable where the keys and values must be Strings. Each property can have
  • Set (java.util)
    A Set is a data structure which does not allow duplicate elements.
  • TimeUnit (java.util.concurrent)
    A TimeUnit represents time durations at a given unit of granularity and provides utility methods to
  • JLabel (javax.swing)
  • Get (org.apache.hadoop.hbase.client)
    Used to perform Get operations on a single row. To get everything for a row, instantiate a Get objec
  • Top 12 Jupyter Notebook extensions
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