ucar.nc2.dataset
Class CoordinateAxis1DTime
java.lang.Object
ucar.nc2.Variable
ucar.nc2.dataset.VariableDS
ucar.nc2.dataset.CoordinateAxis
ucar.nc2.dataset.CoordinateAxis1D
ucar.nc2.dataset.CoordinateAxis1DTime
- All Implemented Interfaces:
- java.lang.Comparable, Enhancements, EnhanceScaleMissing, VariableEnhanced, VariableIF, VariableSimpleIF
public class CoordinateAxis1DTime
- extends CoordinateAxis1D
A 1-dimensional Coordinate Axis representing Calendar time.
Its coordinate values can be represented as Dates.
May use udunit dates, or ISO Strings.
- Version:
- $Revision: 70 $ $Date: 2006-07-13 15:16:05Z $
- Author:
- caron
| Fields inherited from class ucar.nc2.Variable |
attributes, cache, dataType, debugCaching, defaultSizeToCache, dimensions, elementSize, group, isCoordinateAxis, isMetadata, isSection, isSlice, isVlen, ncfile, orgVar, parent, scalarIndex, sectionRanges, shape, shortName, sizeToCache, sliceDim, sliceRanges |
| Methods inherited from class ucar.nc2.dataset.CoordinateAxis1D |
findCoordElement, findCoordElement, findCoordElementBounded, findCoordElementBounded, getBound1, getBound2, getCoordEdge, getCoordEdges, getCoordEdges, getCoordName, getCoordValue, getCoordValues, getIncrement, getIndex, getMaxValue, getMinValue, getNames, getStart, isLayer, isRegular, section, setLayer |
| Methods inherited from class ucar.nc2.dataset.CoordinateAxis |
cacheOK, compareTo, equals, factory, getAxisType, getBoundaryRef, getInfo, getPositive, getUnitsString, hashCode, isContiguous, isNumeric, setAxisType, setBoundaryRef, setContiguous, setPositive |
| Methods inherited from class ucar.nc2.dataset.VariableDS |
_read, _read, _readMemberData, addCoordinateSystem, convertScaleOffsetMissing, convertScaleOffsetMissing, convertScaleOffsetMissing, convertScaleOffsetMissing, convertScaleOffsetMissing, enhance, getCoordinateSystems, getDescription, getOriginalDataType, getOriginalVariable, getProxyReader, getUnitString, getValidMax, getValidMin, hasFillValue, hasInvalidData, hasMissing, hasMissingValue, hasScaleOffset, isEnhanced, isFillValue, isInvalidData, isMissing, isMissingValue, removeCoordinateSystem, setFillValueIsMissing, setInvalidDataIsMissing, setMissingDataIsMissing, setProxyReader, setUnitsString, setUseNaNs, slice |
| Methods inherited from class ucar.nc2.Variable |
addAttribute, attributes, calcIsCoordinateVariable, extraInfo, findAttribute, findAttributeIgnoreCase, findDimensionIndex, getAttributes, getCoordinateDimension, getDataType, getDimension, getDimensions, getDimensionsAll, getDimensionsString, getElementSize, getIOVar, getName, getNameAndDimensions, getNameAndDimensions, getParentGroup, getParentStructure, getRanges, getRank, getSectionRanges, getShape, getShortName, getSize, getSizeToCache, getSPobject, hasCachedData, invalidateCache, isCaching, isMemberOfStructure, isMetadata, isScalar, isSection, isUnknownLength, isUnlimited, isUnsigned, isVariableLength, makeSection, makeSectionAddParents, makeSectionRanges, makeSectionWithParents, makeSlice, makeSliceRanges, read, read, read, read, readAllStructures, readAllStructuresSpec, readScalarByte, readScalarDouble, readScalarFloat, readScalarInt, readScalarLong, readScalarShort, readScalarString, remove, replaceDimension, setCachedData, setCaching, setDataType, setDimension, setDimensions, setDimensions, setDimensionsAnonymous, setElementSize, setIOVar, setIsCoordinateAxis, setName, setParentGroup, setParentStructure, setSizeToCache, setSPobject, toString, toStringDebug, writeCDL |
| Methods inherited from class java.lang.Object |
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
| Methods inherited from interface ucar.nc2.VariableIF |
findAttribute, findAttributeIgnoreCase, findDimensionIndex, getAttributes, getCoordinateDimension, getDataType, getDimension, getDimensions, getDimensionsAll, getElementSize, getName, getNameAndDimensions, getParentGroup, getParentStructure, getRanges, getRank, getShape, getShortName, getSize, isMemberOfStructure, isMetadata, isScalar, isUnlimited, isUnsigned, isVariableLength, read, read, read, read, readAllStructures, readAllStructuresSpec, readScalarByte, readScalarDouble, readScalarFloat, readScalarInt, readScalarLong, readScalarShort, readScalarString, toStringDebug |
factory
public static CoordinateAxis1DTime factory(VariableDS org,
java.lang.StringBuffer errMessages)
throws java.io.IOException
- Throws:
java.io.IOException
getTimeDates
public java.util.Date[] getTimeDates()
- Get the list of times as Dates.
- Returns:
- array of java.util.Date, or null.
getTimeDate
public java.util.Date getTimeDate(int idx)
getDateRange
public DateRange getDateRange()
getTimeResolution
public TimeUnit getTimeResolution()
throws java.lang.Exception
- only if isRegular() LOOK REDO
- Throws:
java.lang.Exception
findTimeIndexFromDate
public int findTimeIndexFromDate(java.util.Date d)
- Given a Date, find the corresponding time index on the time coordinate axis.
Can only call this is hasDate() is true.
This will return
- i, if time(i) <= d < time(i+1).
- -1, if d < time(0)
- n-1, if d > time(n-1), where n is length of time coordinates
- Parameters:
d - date to look for
- Returns:
- corresponding time index on the time coordinate axis
- Throws:
java.lang.UnsupportedOperationException - is no time axis or isDate() false
hasTime
public boolean hasTime(java.util.Date date)
- See if the given Date appears is a coordinate
- Parameters:
date - test this
- Returns:
- true if equals a coordinate
section
public Variable section(java.util.List section)
throws InvalidRangeException
- Description copied from class:
Variable
- Create a new Variable that is a logical subsection of this Variable.
No data is read until a read method is called on it.
- Specified by:
section in interface VariableIF- Overrides:
section in class CoordinateAxis1D
- Parameters:
section - List of type ucar.ma2.Range, with size equal to getRank().
Each Range corresponds to a Dimension, and specifies the section of data to read in that Dimension.
A Range object may be null, which means use the entire dimension.
- Returns:
- a new Variable which is a logical section of this Variable.
- Throws:
InvalidRangeException