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

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

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

origin: Unidata/thredds

@Override
public List<CalendarDate> getCalendarDates() {
 if (timeTaxis != null)
  return timeTaxis.getCalendarDates();
 else if (getRunTimeAxis() != null)
  return makeCalendarDates2D();
 else
  return new ArrayList<>();
}
origin: edu.ucar/netcdf

@Override
public CalendarDateRange getCalendarDateRange() {
 if (timeTaxis != null)
  return timeTaxis.getCalendarDateRange();
 else if (getRunTimeAxis() != null) {
  List<CalendarDate>  cd = makeCalendarDates2D();
  int last = cd.size();
  return (last > 0) ? CalendarDateRange.of(cd.get(0), cd.get(last-1)) : null;
 } else
  return null;
}
origin: edu.ucar/cdm

@Override
public List<CalendarDate> getCalendarDates() {
 if (timeTaxis != null)
  return timeTaxis.getCalendarDates();
 else if (getRunTimeAxis() != null)
  return makeCalendarDates2D();
 else
  return new ArrayList<>();
}
origin: edu.ucar/cdm

@Override
public CalendarDateRange getCalendarDateRange() {
 if (timeTaxis != null)
  return timeTaxis.getCalendarDateRange();
 else if (getRunTimeAxis() != null) {
  List<CalendarDate>  cd = makeCalendarDates2D();
  int last = cd.size();
  return (last > 0) ? CalendarDateRange.of(cd.get(0), cd.get(last-1)) : null;
 } else
  return null;
}
origin: Unidata/thredds

@Override
public CalendarDateRange getCalendarDateRange() {
 if (timeTaxis != null)
  return timeTaxis.getCalendarDateRange();
 else if (getRunTimeAxis() != null) {
  List<CalendarDate>  cd = makeCalendarDates2D();
  int last = cd.size();
  return (last > 0) ? CalendarDateRange.of(cd.get(0), cd.get(last-1)) : null;
 } else
  return null;
}
origin: edu.ucar/netcdf

@Override
public List<CalendarDate> getCalendarDates() {
 if (timeTaxis != null)
  return timeTaxis.getCalendarDates();
 else if (getRunTimeAxis() != null)
  return makeCalendarDates2D();
 else
  return null;
}
ucar.nc2.dt.gridGridCoordSysmakeCalendarDates2D

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 plugins for Eclipse
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