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

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

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

origin: edu.ucar/netcdf

/**
 * Get the list of times as Dates.
 * If 2D, return list of unique dates.
 *
 * @return array of java.util.Date, or Date[0].
 * @deprecated  use getCalendarDates
 */
public java.util.Date[] getTimeDates() {
 if ((timeTaxis != null) && (timeTaxis.getSize() > 0)) {
  return timeTaxis.getTimeDates();
 } else if ((tAxis != null) && (tAxis.getSize() > 0))  {
  return makeTimes2D();
 }
 return new Date[0];
}
origin: Unidata/thredds

/**
 * Get the list of times as Dates.
 * If 2D, return list of unique dates.
 *
 * @return array of java.util.Date, or Date[0].
 * @deprecated  use getCalendarDates
 */
public java.util.Date[] getTimeDates() {
 if ((timeTaxis != null) && (timeTaxis.getSize() > 0)) {
  return timeTaxis.getTimeDates();
 } else if ((tAxis != null) && (tAxis.getSize() > 0))  {
  return makeTimes2D();
 }
 return new Date[0];
}
origin: edu.ucar/cdm

/**
 * Get the list of times as Dates.
 * If 2D, return list of unique dates.
 *
 * @return array of java.util.Date, or Date[0].
 * @deprecated  use getCalendarDates
 */
public java.util.Date[] getTimeDates() {
 if ((timeTaxis != null) && (timeTaxis.getSize() > 0)) {
  return timeTaxis.getTimeDates();
 } else if ((tAxis != null) && (tAxis.getSize() > 0))  {
  return makeTimes2D();
 }
 return new Date[0];
}
ucar.nc2.dt.gridGridCoordSysmakeTimes2D

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,
  • Github Copilot alternatives
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