Uses of Class
ucar.ma2.Range

Packages that use Range
thredds.wcs.v1_0_0_1   
thredds.wcs.v1_0_0_Plus   
ucar.ma2 Multidimensional arrays of primitives and objects with data stored in memory. 
ucar.nc2 The public API to the Java-NetCDF library. 
ucar.nc2.dataset An extension to the netCDF API which provides support for coordinate systems, scale/offset/missing data, and NcML. 
ucar.nc2.dods OpenDAP-netCDF library. 
ucar.nc2.dt Scientific data types package. 
ucar.nc2.dt.grid Scientific data type "Grid", uses cartesian coordinate system. 
ucar.nc2.ft.grid   
ucar.nc2.iosp.bufr I/O Service Provider for BUFR format files 
ucar.nc2.iosp.cinrad I/O Service Provider for chinese met radar files 
ucar.nc2.iosp.nexrad2 I/O Service Provider for NEXRAD level 2 format files 
ucar.nc2.iosp.sigmet   
ucar.nc2.iosp.uf   
ucar.nc2.ncml Netcdf Markup Language (NcML) Implementation classes see NcML home page 
ucar.unidata.geoloc.vertical Implementations of vertical coordinate transformations. 
 

Uses of Range in thredds.wcs.v1_0_0_1
 

Methods in thredds.wcs.v1_0_0_1 that return Range
 Range WcsCoverage.VerticalRange.getRange(GridCoordSystem gcs)
           
 Range WcsCoverage.getRangeSetAxisRange(double minValue, double maxValue)
           
 

Uses of Range in thredds.wcs.v1_0_0_Plus
 

Methods in thredds.wcs.v1_0_0_Plus that return Range
 Range AxisSubset.getRange()
           
 

Uses of Range in ucar.ma2
 

Fields in ucar.ma2 declared as Range
static Range Range.EMPTY
           
static Range Range.VLEN
           
 

Methods in ucar.ma2 that return Range
 Range Range.compact()
          Create a new Range by compacting this Range by removing the stride.
 Range Range.compose(Range r)
          Create a new Range by composing a Range that is reletive to this Range.
 Range Section.find(String rangeName)
          Find a Range by its name.
 Range Section.getRange(int i)
          Get the ith Range
 Range Range.intersect(Range r)
          Create a new Range by intersecting with a Range using same interval as this Range.
 Range Range.shiftOrigin(int origin)
          Create a new Range shifting this range by a constant factor.
static Range[] Range.toArray(List ranges)
          Deprecated. use Section.getRanges()
 Range Range.union(Range r)
          Create a new Range by making the union with a Range using same interval as this Range.
 

Methods in ucar.ma2 that return types with arguments of type Range
 List<Range> Section.getRanges()
          Get the list of Ranges.
 

Methods in ucar.ma2 with parameters of type Range
 Section Section.appendRange(Range r)
          Append a Range to the Section
 Range Range.compose(Range r)
          Create a new Range by composing a Range that is reletive to this Range.
 Section Section.insertRange(int index, Range r)
          Insert a range at the specified index in the list.
 Range Range.intersect(Range r)
          Create a new Range by intersecting with a Range using same interval as this Range.
 boolean Range.intersects(Range r)
          Determine if a given Range intersects this one.
 boolean Range.past(Range want)
          If this range is completely past the wanted range
 Section Section.replaceRange(int index, Range r)
          Replace a range at the specified index in the list.
 Section Section.setRange(int index, Range r)
          Set the range at the specified index in the list, previous Range is discarded
static List Range.toList(Range[] ranges)
          Deprecated. use Section.getRanges()
 Range Range.union(Range r)
          Create a new Range by making the union with a Range using same interval as this Range.
 

Method parameters in ucar.ma2 with type arguments of type Range
 IndexIterator Array.getRangeIterator(List<Range> ranges)
          Get an index iterator for traversing a section of the array in canonical order.
 Array Array.section(List<Range> ranges)
          Create a new Array as a subsection of this Array, with rank reduction.
 Array Array.sectionNoReduce(List<Range> ranges)
          Create a new Array as a subsection of this Array, without rank reduction.
 

Constructors in ucar.ma2 with parameters of type Range
Range(Range r)
          Copy Constructor
Range(String name, Range r)
          Copy Constructor with name
 

Constructor parameters in ucar.ma2 with type arguments of type Range
Section(List<Range> from)
          Create Section from a List.
Section(List<Range> from, int[] shape)
          Create Section from a List.
 

Uses of Range in ucar.nc2
 

Methods in ucar.nc2 that return types with arguments of type Range
 List<Range> VariableIF.getRanges()
           
 List<Range> Variable.getRanges()
          Get shape as an List of Range objects.
 

Method parameters in ucar.nc2 with type arguments of type Range
static String ParsedSectionSpec.makeSectionSpecString(Variable v, List<Range> ranges)
          Make section specification String from a range list for a Variable.
static String NCdump.makeSectionString(VariableIF v, List<Range> ranges)
          Deprecated. Make section specification String from a range list for a Variable.
 Array Sequence.read(List<Range> ranges)
          UnsupportedOperation
 Array Variable.read(List<Range> ranges)
          Read a section of the data for this Variable from the netcdf file and return a memory resident Array.
 Variable VariableIF.section(List<Range> ranges)
           
 Variable Variable.section(List<Range> ranges)
          Create a new Variable that is a logical subsection of this Variable.
 

Uses of Range in ucar.nc2.dataset
 

Methods in ucar.nc2.dataset with parameters of type Range
 CoordinateAxis1D CoordinateAxis1DTime.section(Range r)
           
 CoordinateAxis1D CoordinateAxis1D.section(Range r)
          Create a new CoordinateAxis1D as a section of this CoordinateAxis1D.
 CoordinateAxis2D CoordinateAxis2D.section(Range r1, Range r2)
          Create a new CoordinateAxis2D as a section of this CoordinateAxis2D.
 

Uses of Range in ucar.nc2.dods
 

Method parameters in ucar.nc2.dods with type arguments of type Range
 Array ConvertD2N.convertNestedVariable(Variable v, List<Range> section, ucar.nc2.dods.DodsV dataV, boolean flatten)
          Convert a DataDDS into an Array for a Structure member variable.
 Array ConvertD2N.convertTopVariable(Variable v, List<Range> section, ucar.nc2.dods.DodsV dataV)
          Convert a DataDDS into an Array for a top level variable, ie not a Structure member variable.
 

Uses of Range in ucar.nc2.dt
 

Methods in ucar.nc2.dt that return Range
 Range TrajectoryObsDatatype.getFullRange()
          Get the range for the entire trajectory.
 Range TrajectoryObsDatatype.getPointRange(int point)
          Get a range for a single point in the trajectory.
 Range TrajectoryObsDatatype.getRange(int start, int end, int stride)
          Get a range with the given start, end, and stride in the trajectory.
 

Methods in ucar.nc2.dt that return types with arguments of type Range
 List<Range> GridCoordSystem.getRangesFromLatLonRect(LatLonRect llbb)
          Get Index Ranges for the given lat, lon bounding box.
 

Methods in ucar.nc2.dt with parameters of type Range
 Array TrajectoryObsDatatype.getData(Range range, String parameterName)
          Get the values of the requested parameter on the given Range of the trajectory.
 Array TrajectoryObsDatatype.getElevation(Range range)
          Get the elevation values on the given Range of the trajectory.
 Array TrajectoryObsDatatype.getLatitude(Range range)
          Get the latitude values on the given Range of the trajectory.
 Array TrajectoryObsDatatype.getLongitude(Range range)
          Get the longitude values on the given Range of the trajectory.
 Array TrajectoryObsDatatype.getTime(Range range)
          Get the time values on the given Range of the trajectory.
 GridDatatype GridDatatype.makeSubset(Range t_range, Range z_range, LatLonRect bbox, int z_stride, int y_stride, int x_stride)
          Create a new GeoGrid that is a logical subset of this GeoGrid.
 GridDatatype GridDatatype.makeSubset(Range rt_range, Range e_range, Range t_range, Range z_range, Range y_range, Range x_range)
          Create a new GeoGrid that is a logical subset of this GeoGrid.
 

Uses of Range in ucar.nc2.dt.grid
 

Methods in ucar.nc2.dt.grid that return types with arguments of type Range
 List<Range> GridCoordSys.getLatLonBoundingBox(LatLonRect rect)
          Deprecated. use getRangesFromLatLonRect.
 List<Range> GridCoordSys.getRangesFromLatLonRect(LatLonRect rect)
          Get Index Ranges for the given lat, lon bounding box.
 

Methods in ucar.nc2.dt.grid with parameters of type Range
 void NetcdfCFWriter.makeFile(String location, GridDataset gds, List<String> gridList, LatLonRect llbb, int horizStride, Range zRange, DateRange dateRange, int stride_time, boolean addLatLon)
           
 GridDatatype GeoGrid.makeSubset(Range t_range, Range z_range, LatLonRect bbox, int z_stride, int y_stride, int x_stride)
           
 GridDatatype GeoGrid.makeSubset(Range rt_range, Range e_range, Range t_range, Range z_range, Range y_range, Range x_range)
           
 GeoGrid GeoGrid.subset(Range t_range, Range z_range, LatLonRect bbox, int z_stride, int y_stride, int x_stride)
          Create a new GeoGrid that is a logical subset of this GeoGrid.
 GeoGrid GeoGrid.subset(Range t_range, Range z_range, Range y_range, Range x_range)
          Create a new GeoGrid that is a logical subset of this GeoGrid.
 

Constructors in ucar.nc2.dt.grid with parameters of type Range
GridCoordSys(GridCoordSys from, Range t_range, Range z_range, Range y_range, Range x_range)
          Create a GridCoordSys as a section of an existing GridCoordSys.
GridCoordSys(GridCoordSys from, Range rt_range, Range e_range, Range t_range, Range z_range, Range y_range, Range x_range)
          Create a GridCoordSys as a section of an existing GridCoordSys.
 

Uses of Range in ucar.nc2.ft.grid
 

Methods in ucar.nc2.ft.grid that return types with arguments of type Range
 List<Range> GridCoordSys.getRangesFromLatLonRect(LatLonRect llbb)
          Get Index Ranges for the given lat, lon bounding box.
 

Methods in ucar.nc2.ft.grid with parameters of type Range
 Grid Grid.makeSubset(Range rt_range, Range e_range, Range t_range, Range z_range, Range y_range, Range x_range)
          Create a new GeoGrid that is a logical subset of this GeoGrid.
 

Uses of Range in ucar.nc2.iosp.bufr
 

Methods in ucar.nc2.iosp.bufr with parameters of type Range
 int MessageUncompressedDataReader.readData(ArrayStructureBB abb, Message m, RandomAccessFile raf, Range r, boolean addTime, Formatter f)
          Read some or all datasets from a single message
 void MessageCompressedDataReader.readData(ArrayStructureMA ama, Message m, RandomAccessFile raf, Range r, Formatter f)
          Read some or all datasets from a single message
 

Uses of Range in ucar.nc2.iosp.cinrad
 

Methods in ucar.nc2.iosp.cinrad with parameters of type Range
 void Cinrad2Record.readData(RandomAccessFile raf, int datatype, Range gateRange, IndexIterator ii)
          Read data from this record.
 

Uses of Range in ucar.nc2.iosp.nexrad2
 

Methods in ucar.nc2.iosp.nexrad2 with parameters of type Range
 void Level2Record.readData(RandomAccessFile raf, int datatype, Range gateRange, IndexIterator ii)
          Read data from this record.
 

Uses of Range in ucar.nc2.iosp.sigmet
 

Methods in ucar.nc2.iosp.sigmet with parameters of type Range
 void Ray.readData(RandomAccessFile raf, Range gateRange, IndexIterator ii)
          Read data from this record.
 

Uses of Range in ucar.nc2.iosp.uf
 

Methods in ucar.nc2.iosp.uf with parameters of type Range
 void Ray.readData(RandomAccessFile raf, String abbrev, Range gateRange, IndexIterator ii)
          Read data from this ray.
 

Uses of Range in ucar.nc2.ncml
 

Method parameters in ucar.nc2.ncml with type arguments of type Range
protected  Array Aggregation.Dataset.read(Variable mainv, CancelTask cancelTask, List<Range> section)
          Read a section of the local Variable.
 

Uses of Range in ucar.unidata.geoloc.vertical
 

Methods in ucar.unidata.geoloc.vertical with parameters of type Range
 VerticalTransform VerticalTransform.subset(Range t_range, Range z_range, Range y_range, Range x_range)
          Create a VerticalTransform as a section of an existing VerticalTransform.
 VerticalTransform VerticalTransformImpl.subset(Range t_range, Range z_range, Range y_range, Range x_range)
          Create a subset of this VerticalTransform.
 

Constructors in ucar.unidata.geoloc.vertical with parameters of type Range
VerticalTransformSubset(VerticalTransform original, Range t_range, Range z_range, Range y_range, Range x_range)
          Create a subset of an existing VerticalTransform
 



Copyright © 1999-2011 UCAR/Unidata. All Rights Reserved.