Uses of Class
ucar.ma2.InvalidRangeException

Packages that use InvalidRangeException
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.dataset.conv Parses the information in netCDF datasets using Conventions, and extracts information about coordinate systems. 
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.coordsys   
ucar.nc2.ft.grid   
ucar.nc2.iosp General classes for I/O Service Providers 
ucar.nc2.iosp.bufr I/O Service Provider for BUFR format files 
ucar.nc2.iosp.bufr.writer   
ucar.nc2.iosp.cinrad I/O Service Provider for chinese met radar files 
ucar.nc2.iosp.dmsp I/O Service Provider for DMSP format files 
ucar.nc2.iosp.dorade I/O Service Provider for Dorade format files 
ucar.nc2.iosp.fysat   
ucar.nc2.iosp.gempak   
ucar.nc2.iosp.gini I/O Service Provider for GINI format files 
ucar.nc2.iosp.grads I/O Service Provider for GrADS Binary Grid Files. 
ucar.nc2.iosp.grid   
ucar.nc2.iosp.hdf4 I/O Service Provider for HDF-4 format files 
ucar.nc2.iosp.hdf5 I/O Service Provider for HDF-5 and netCDF-4 format files 
ucar.nc2.iosp.mcidas   
ucar.nc2.iosp.misc Miscellaneous IOSPs. 
ucar.nc2.iosp.netcdf3 I/O Service Provider for NetCDF-3 format files 
ucar.nc2.iosp.nexrad2 I/O Service Provider for NEXRAD level 2 format files 
ucar.nc2.iosp.nids I/O Service Provider for NIDS (Nexrad level 3) format files 
ucar.nc2.iosp.noaa   
ucar.nc2.iosp.nowrad   
ucar.nc2.iosp.sigmet   
ucar.nc2.iosp.uamiv   
ucar.nc2.iosp.uf   
ucar.nc2.jni.netcdf   
ucar.nc2.ncml Netcdf Markup Language (NcML) Implementation classes see NcML home page 
ucar.nc2.stream   
ucar.unidata.geoloc.vertical Implementations of vertical coordinate transformations. 
 

Uses of InvalidRangeException in thredds.wcs.v1_0_0_1
 

Methods in thredds.wcs.v1_0_0_1 that throw InvalidRangeException
 Range WcsCoverage.VerticalRange.getRange(GridCoordSystem gcs)
           
 

Uses of InvalidRangeException in thredds.wcs.v1_0_0_Plus
 

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

Uses of InvalidRangeException in ucar.ma2
 

Methods in ucar.ma2 that throw InvalidRangeException
 Section Section.addRangeNames(List<String> rangeNames)
           
 Section Section.appendRange(int size)
          Append a new Range(0,size-1) to the Section
 Section Section.appendRange(int first, int last)
          Append a new Range(first, last) to the Section
 Section Section.appendRange(int first, int last, int stride)
          Append a new Range(first,last,stride) to the Section
 Section Section.appendRange(String name, int first, int last, int stride)
          Append a new Range(name,first,last,stride) to the Section
static List Range.appendShape(List ranges, int size)
          Deprecated. use Section.appendRange(int size)
 Range Range.compact()
          Create a new Range by compacting this Range by removing the stride.
 Section Section.compact()
          Create a new Section by compacting each Range.
 Range Range.compose(Range r)
          Create a new Range by composing a Range that is reletive to this Range.
 Section Section.compose(Section want)
          Create a new Section by composing with a Section that is reletive to this Section.
 int Range.element(int i)
          Get ith element
 boolean Section.equivalent(int[] shape)
          Is this section equivilent to the given shape.
static List Range.factory(int[] origin, int[] shape)
          Deprecated. use Section(int[] origin, int[] shape)
static Section Section.fill(Section s, int[] shape)
          Return a Section guarenteed to be non null, with no null Ranges, and within the bounds set by shape.
 IndexIterator Array.getRangeIterator(List<Range> ranges)
          Get an index iterator for traversing a section of the array in canonical order.
 int Range.index(int elem)
          Get the index for this element: inverse of element
 Range Range.intersect(Range r)
          Create a new Range by intersecting with a Range using same interval as this Range.
 Section Section.intersect(Section other)
          Create a new Section by intersection with another Section
 boolean Section.intersects(Section other)
          See if this Section intersects with another Section.
 int Section.offset(Section intersect)
           
static List Range.parseSpec(String sectionSpec)
          Deprecated. use new Section(String sectionSpec)
 Section Section.removeVlen()
          Create a new Section by compacting each Range.
 Array Array.section(int[] origin, int[] shape)
          Create a new Array as a subsection of this Array, with rank reduction.
 Array Array.section(int[] origin, int[] shape, int[] stride)
          Create a new Array as a subsection of this Array, with rank reduction.
 Array Array.section(List<Range> ranges)
          Create a new Array as a subsection of this Array, with rank reduction.
 Array Array.sectionNoReduce(int[] origin, int[] shape, int[] stride)
          Create a new Array as a subsection of this Array, without rank reduction.
 Array Array.sectionNoReduce(List<Range> ranges)
          Create a new Array as a subsection of this Array, without rank reduction.
 void Section.setDefaults(int[] shape)
          If any of the ranges are null, which means "all", set the Range from the corresponding length in shape[].
 Range Range.shiftOrigin(int origin)
          Create a new Range shifting this range by a constant factor.
 Section Section.shiftOrigin(Section newOrigin)
          Create a new Section by shifting each range by newOrigin.first() The result is then a reletive offset from the newOrigin.
 Range Range.union(Range r)
          Create a new Range by making the union with a Range using same interval as this Range.
 Section Section.union(Section other)
          Create a new Section by union with another Section
 

Constructors in ucar.ma2 that throw InvalidRangeException
Range(int first, int last)
          Create a range with unit stride.
Range(int first, int last, int stride)
          Create a range with a specified stride.
Range(String name, int first, int last)
          Create a named range with unit stride.
Range(String name, int first, int last, int stride)
          Create a named range with a specified stride.
Section(int[] origin, int[] shape)
          Create Section from a shape and origin arrays.
Section(int[] origin, int[] size, int[] stride)
          Create Section from a shape, origin, and stride arrays.
Section(List<Range> from, int[] shape)
          Create Section from a List.
Section(String sectionSpec)
          Parse an index section String specification, return equivilent Section.
 

Uses of InvalidRangeException in ucar.nc2
 

Methods in ucar.nc2 that throw InvalidRangeException
protected  Array Variable._read(Section section)
           
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.
static ParsedSectionSpec ParsedSectionSpec.parseVariableSection(NetcdfFile ncfile, String variableSection)
          Parse a section specification String.
static String NCdump.printVariableDataSection(VariableIF v, String sectionSpec, CancelTask ct)
          Deprecated. Print a section of the data of the given Variable.
static String NCdumpW.printVariableDataSection(Variable v, String sectionSpec, CancelTask ct)
          Print a section of the data of the given Variable.
 Array Sequence.read(int[] origin, int[] shape)
          UnsupportedOperation
 Array VariableIF.read(int[] origin, int[] shape)
           
 Array Variable.read(int[] origin, int[] shape)
          Read a section of the data for this Variable and return a memory resident Array.
 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.
 Array Sequence.read(Section section)
          UnsupportedOperation
 Array VariableIF.read(Section section)
           
 Array Variable.read(Section section)
          Read a section of the data for this Variable from the netcdf file and return a memory resident Array.
 Array Sequence.read(String sectionSpec)
          UnsupportedOperation
 Array VariableIF.read(String rangeSpec)
           
 Array Variable.read(String sectionSpec)
          Read data section specified by a "section selector", and return a memory resident Array.
 Array NetcdfFile.read(String variableSection, boolean flatten)
          Deprecated. use readSection(), flatten=false no longer supported
protected  Array NetcdfFile.readData(Variable v, Section ranges)
           
 Array NetcdfFile.readSection(String variableSection)
          Read a variable using the given section specification.
 StructureData Sequence.readStructure(int index)
          UnsupportedOperation
 StructureData Structure.readStructure(int index)
          Use this when this is a one dimensional array of Structures, or you are doing the index calculation yourself for a multidimension array.
 ArrayStructure Sequence.readStructure(int start, int count)
          UnsupportedOperation
 ArrayStructure Structure.readStructure(int start, int count)
          For rank 1 array of Structures, read count Structures and return the data as an ArrayStructure.
 long Variable.readToByteChannel(Section section, WritableByteChannel wbc)
           
protected  long NetcdfFile.readToByteChannel(Variable v, Section section, WritableByteChannel wbc)
          Read data from a top level Variable and send data to a WritableByteChannel.
 Array Variable.reallyRead(Variable client, Section section, CancelTask cancelTask)
          public by accident, do not call directly.
 Array ProxyReader.reallyRead(Variable client, Section section, CancelTask cancelTask)
          Read a section of the data for a Variable.
 Array StructurePseudo.reallyRead(Variable mainv, Section section, CancelTask cancelTask)
          Deprecated.  
 Variable VariableIF.section(List<Range> ranges)
           
 Variable Variable.section(List<Range> ranges)
          Create a new Variable that is a logical subsection of this Variable.
 Variable Sequence.section(Section subsection)
          UnsupportedOperation
 Variable Variable.section(Section subsection)
          Create a new Variable that is a logical subsection of this Variable.
 void Variable.setDimensionsAnonymous(int[] shape)
          Set the dimensions using all anonymous (unshared) dimensions
 Variable Sequence.slice(int dim, int value)
          UnsupportedOperation
 Variable Variable.slice(int dim, int value)
          Create a new Variable that is a logical slice of this Variable, by fixing the specified dimension at the specified index value.
 void NetcdfFileWriteable.write(String fullNameEsc, Array values)
          Write data to the named variable, origin assumed to be 0.
 void NetcdfFileWriteable.write(String fullNameEsc, int[] origin, Array values)
          Write data to the named variable.
 void NetcdfFileWriteable.writeStringData(String varName, Array values)
          Write String data to a CHAR variable, origin assumed to be 0.
 void NetcdfFileWriteable.writeStringData(String fullNameEsc, int[] origin, Array values)
          Write String data to a CHAR variable.
 

Uses of InvalidRangeException in ucar.nc2.dataset
 

Methods in ucar.nc2.dataset that throw InvalidRangeException
protected  Array VariableDS._read(Section section)
           
protected  Array StructurePseudo2Dim._read(Section section)
           
 Array SequenceDS.read(Section section)
           
 Array VariableDS.reallyRead(Variable client, Section section, CancelTask cancelTask)
           
 Array StructureDS.reallyRead(Variable client, Section section, CancelTask cancelTask)
           
 Array StructurePseudoDS.reallyRead(Variable mainv, Section section, CancelTask cancelTask)
           
 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 InvalidRangeException in ucar.nc2.dataset.conv
 

Methods in ucar.nc2.dataset.conv that throw InvalidRangeException
static void WRFConvention.main(String[] args)
           
 

Uses of InvalidRangeException in ucar.nc2.dods
 

Methods in ucar.nc2.dods that throw InvalidRangeException
protected  Array DODSNetcdfFile.readData(Variable v, Section section)
           
 Array DODSNetcdfFile.readSection(String variableSection)
           
 long DODSNetcdfFile.readToByteChannel(Variable v, Section section, WritableByteChannel channel)
           
 

Uses of InvalidRangeException in ucar.nc2.dt
 

Methods in ucar.nc2.dt that throw InvalidRangeException
 StructureData TrajectoryObsDatatype.getData(int point)
          Get values for all parameters (except time, lat, lon, and elev) at the requested trajectory point.
 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.
 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.
 List<Range> GridCoordSystem.getRangesFromLatLonRect(LatLonRect llbb)
          Get Index Ranges for the given lat, lon bounding box.
 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 InvalidRangeException in ucar.nc2.dt.grid
 

Methods in ucar.nc2.dt.grid that throw InvalidRangeException
 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.
static void NetcdfCFWriter.main(String[] args)
           
static void NetcdfCFWriter.makeFile(String location, GridDataset gds, List<String> gridList, LatLonRect llbb, DateRange range)
           
 void NetcdfCFWriter.makeFile(String location, GridDataset gds, List<String> gridList, LatLonRect llbb, DateRange range, boolean addLatLon, int horizStride, int stride_z, int stride_time)
          Write a CF compliant Netcdf-3 file from any gridded dataset.
 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.
static void NetcdfCFWriter.test1()
           
 

Constructors in ucar.nc2.dt.grid that throw InvalidRangeException
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 InvalidRangeException in ucar.nc2.ft.coordsys
 

Methods in ucar.nc2.ft.coordsys that throw InvalidRangeException
 Section GeoReferencingCoordSys.mapIndex(Variable targetVar, Variable fromVar, int[] fromIndex)
           
 double GeoReferencingCoordSys.readGeoXCoord(Variable fromVar, int[] index)
           
 double GeoReferencingCoordSys.readGeoYCoord(Variable fromVar, int[] index)
           
 double GeoReferencingCoordSys.readGeoZCoord(Variable fromVar, int[] index)
           
 double GeoReferencingCoordSys.readHeightCoord(Variable fromVar, int[] index)
           
 double GeoReferencingCoordSys.readLatitudeCoord(Variable fromVar, int[] index)
           
 double GeoReferencingCoordSys.readLongitudeCoord(Variable fromVar, int[] index)
           
 double GeoReferencingCoordSys.readPressureCoord(Variable fromVar, int[] index)
           
 double GeoReferencingCoordSys.readTimeCoord(Variable fromVar, int[] index)
           
 double GeoReferencingCoordSys.readValue(Variable targetVar, Variable fromVar, int[] index)
           
 

Uses of InvalidRangeException in ucar.nc2.ft.grid
 

Methods in ucar.nc2.ft.grid that throw InvalidRangeException
 List<Range> GridCoordSys.getRangesFromLatLonRect(LatLonRect llbb)
          Get Index Ranges for the given lat, lon bounding box.
 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 InvalidRangeException in ucar.nc2.iosp
 

Methods in ucar.nc2.iosp that throw InvalidRangeException
 Array IOServiceProvider.readData(Variable v2, Section section)
          Read data from a top level Variable and return a memory resident Array.
 Array AbstractIOServiceProvider.readSection(ParsedSectionSpec cer)
           
 Array IOServiceProvider.readSection(ParsedSectionSpec cer)
          Allows reading sections of nested variables
static Array IospHelper.readSection(ParsedSectionSpec cer)
           
 long AbstractIOServiceProvider.readToByteChannel(Variable v2, Section section, WritableByteChannel channel)
           
 long IOServiceProvider.readToByteChannel(Variable v2, Section section, WritableByteChannel channel)
          Read data from a top level Variable and send data to a WritableByteChannel.
static long IospHelper.transferData(Array result, WritableByteChannel channel)
           
 void IOServiceProviderWriter.writeData(Variable v2, Section section, Array values)
          Write data into a variable.
 

Constructors in ucar.nc2.iosp that throw InvalidRangeException
IndexChunker(int[] srcShape, Section wantSection)
          Constructor
IndexChunkerTiled(Section dataSection, Section wantSection)
          Constructor.
LayoutBBTiled(LayoutBBTiled.DataChunkIterator chunkIterator, int[] chunkSize, int elemSize, Section wantSection)
          Constructor.
LayoutRegular(long startPos, int elemSize, int[] varShape, Section wantSection)
          Constructor.
LayoutRegularSegmented(long startPos, int elemSize, long recSize, int[] srcShape, Section wantSection)
          Constructor.
LayoutSegmented(long[] segPos, int[] segSize, int elemSize, int[] srcShape, Section wantSection)
          Constructor.
LayoutTiled(LayoutTiled.DataChunkIterator chunkIterator, int[] chunkSize, int elemSize, Section wantSection)
          Constructor.
 

Uses of InvalidRangeException in ucar.nc2.iosp.bufr
 

Methods in ucar.nc2.iosp.bufr that throw InvalidRangeException
 void BufrIosp.compare(Structure obs)
           
static void BufrIosp.doon(String filename)
           
static void BufrIosp.main(String[] arg)
           
 void BufrIosp.readAll(boolean dump)
           
 Array BufrIosp.readData(Variable v2, Section section)
           
 

Uses of InvalidRangeException in ucar.nc2.iosp.bufr.writer
 

Constructors in ucar.nc2.iosp.bufr.writer that throw InvalidRangeException
WriteT41_ncFlat(NetcdfFile bufr, String fileOutName, boolean fill)
           
 

Uses of InvalidRangeException in ucar.nc2.iosp.cinrad
 

Methods in ucar.nc2.iosp.cinrad that throw InvalidRangeException
 Array Cinrad2IOServiceProvider.readData(Variable v2, Section section)
           
 

Uses of InvalidRangeException in ucar.nc2.iosp.dmsp
 

Methods in ucar.nc2.iosp.dmsp that throw InvalidRangeException
 Array DMSPiosp.readData(Variable v2, Section section)
           
 

Uses of InvalidRangeException in ucar.nc2.iosp.dorade
 

Methods in ucar.nc2.iosp.dorade that throw InvalidRangeException
 Array Doradeiosp.readData(Variable v2, Section section)
           
 

Uses of InvalidRangeException in ucar.nc2.iosp.fysat
 

Methods in ucar.nc2.iosp.fysat that throw InvalidRangeException
 Array Fysatiosp.readCompressedData(Variable v2, long dataPos, int[] origin, int[] shape, int[] stride)
           
 Array Fysatiosp.readCompressedZlib(Variable v2, long dataPos, int nx, int ny, int[] origin, int[] shape, int[] stride)
           
 Array Fysatiosp.readData(Variable v2, Section section)
           
 Array Fysatiosp.readDataOld(Variable v2, long dataPos, int[] origin, int[] shape, int[] stride)
           
 

Uses of InvalidRangeException in ucar.nc2.iosp.gempak
 

Methods in ucar.nc2.iosp.gempak that throw InvalidRangeException
 Array GempakSoundingIOSP.readData(Variable v2, Section section)
          Read the data for the variable
 Array GempakSurfaceIOSP.readData(Variable v2, Section section)
          Read the data for the variable
 

Uses of InvalidRangeException in ucar.nc2.iosp.gini
 

Methods in ucar.nc2.iosp.gini that throw InvalidRangeException
 Array Giniiosp.readCompressedData(Variable v2, long dataPos, int[] origin, int[] shape, int[] stride, int[] levels)
           
 Array Giniiosp.readCompressedZlib(Variable v2, long dataPos, int nx, int ny, int[] origin, int[] shape, int[] stride, int[] levels)
           
 Array Giniiosp.readData(Variable v2, Section section)
           
 Array Giniiosp.readDataOld(Variable v2, long dataPos, int[] origin, int[] shape, int[] stride)
           
 Array Giniiosp.readNestedData(Variable v2, List section)
           
 

Uses of InvalidRangeException in ucar.nc2.iosp.grads
 

Methods in ucar.nc2.iosp.grads that throw InvalidRangeException
 Array GradsBinaryGridServiceProvider.readData(Variable v2, Section section)
          Read the data for the variable
 

Uses of InvalidRangeException in ucar.nc2.iosp.grid
 

Methods in ucar.nc2.iosp.grid that throw InvalidRangeException
 boolean GridServiceProvider.isMissingXY(Variable v2, int timeIdx, int ensIdx, int levIdx)
          Is this XY level missing?
 Array GridServiceProvider.readData(Variable v2, Section section)
          Read the data for the variable
 

Uses of InvalidRangeException in ucar.nc2.iosp.hdf4
 

Methods in ucar.nc2.iosp.hdf4 that throw InvalidRangeException
 Array H4iosp.readData(Variable v, Section section)
           
 

Uses of InvalidRangeException in ucar.nc2.iosp.hdf5
 

Methods in ucar.nc2.iosp.hdf5 that throw InvalidRangeException
 Array H5iosp.readData(Variable v2, Section section)
           
 

Uses of InvalidRangeException in ucar.nc2.iosp.mcidas
 

Methods in ucar.nc2.iosp.mcidas that throw InvalidRangeException
 Array Vis5DIosp.readData(Variable v2, Section section)
          Read the data for the variable
 Array AreaServiceProvider.readData(Variable v2, Section section)
          Read the data for the variable
 Array AreaReader.readVariable(Variable v2, Section section)
          Read the values for a variable
 

Uses of InvalidRangeException in ucar.nc2.iosp.misc
 

Methods in ucar.nc2.iosp.misc that throw InvalidRangeException
static void NmcObsLegacy.main(String[] args)
           
 Array Uspln.readData(Variable v2, Section section)
          Read data from a top level Variable and return a memory resident Array.
 Array GtopoIosp.readData(Variable v2, Section wantSection)
           
 Array NmcObsLegacy.readData(Variable v, Section section)
           
 Array Nldn.readData(Variable v2, Section section)
          Read data from a top level Variable and return a memory resident Array.
 Array NmcObsLegacy.readReport(Variable v, Section section)
           
 Array NmcObsLegacy.readReportIndex(Variable v, Section section)
           
 

Uses of InvalidRangeException in ucar.nc2.iosp.netcdf3
 

Methods in ucar.nc2.iosp.netcdf3 that throw InvalidRangeException
protected  void N3iosp.fillRecordVariables(int recStart, int recEnd)
           
 Array N3iosp.readData(Variable v2, Section section)
           
 Array N3iosp.readNestedData(Variable v2, Section section)
           
 long N3iosp.readToByteChannel(Variable v2, Section section, WritableByteChannel channel)
           
protected  void N3iosp.setNumrecs(int n)
           
 void N3iosp.writeData(Variable v2, Section section, Array values)
           
 void N3channelWriter.writeDataAll(WritableByteChannel channel)
           
static void N3channelWriter.writeFromFile(NetcdfFile fileIn, String fileOutName)
           
static void N3channelWriter.writeToChannel(NetcdfFile ncfile, WritableByteChannel wbc)
          Write ncfile to a WritableByteChannel.
 

Uses of InvalidRangeException in ucar.nc2.iosp.nexrad2
 

Methods in ucar.nc2.iosp.nexrad2 that throw InvalidRangeException
 Array Nexrad2IOServiceProvider.readData(Variable v2, Section section)
           
 

Uses of InvalidRangeException in ucar.nc2.iosp.nids
 

Methods in ucar.nc2.iosp.nids that throw InvalidRangeException
 ArrayStructure Nidsiosp.readCircleStructData(String name, ByteBuffer bos, ucar.nc2.iosp.nids.Nidsheader.Vinfo vinfo)
          Read data
 Array Nidsiosp.readData(Variable v2, Section section)
          Read the data for each variable passed in
 Object Nidsiosp.readDistance(ucar.nc2.iosp.nids.Nidsheader.Vinfo vinfo)
           
 ArrayStructure Nidsiosp.readGraphicSymbolData(String name, ByteBuffer bos, ucar.nc2.iosp.nids.Nidsheader.Vinfo vinfo)
          Read graphic sysmbol structure data
 ArrayStructure Nidsiosp.readLinkedVectorData(String name, ByteBuffer bos, ucar.nc2.iosp.nids.Nidsheader.Vinfo vinfo)
          Read linked vector sturcture data
 Array Nidsiosp.readNestedCircleStructData(String name, String memberName, ByteBuffer bos, ucar.nc2.iosp.nids.Nidsheader.Vinfo vinfo, List section)
          Read nested data
 Array Nidsiosp.readNestedData(Variable v2, Section section)
          Read nested structure data
 Array Nidsiosp.readNestedDataUnlinkVector(String name, String memberName, ByteBuffer bos, ucar.nc2.iosp.nids.Nidsheader.Vinfo vinfo, List section)
          Read nested data
 Array Nidsiosp.readNestedGraphicSymbolData(String name, StructureMembers.Member m, ByteBuffer bos, ucar.nc2.iosp.nids.Nidsheader.Vinfo vinfo, List section)
          Read nested graphic symbolic structure data
 Array Nidsiosp.readNestedLinkedVectorData(String name, String memberName, ByteBuffer bos, ucar.nc2.iosp.nids.Nidsheader.Vinfo vinfo, List section)
          Read nested structure data
 Array Nidsiosp.readNestedTextStringData(String name, String memberName, ByteBuffer bos, ucar.nc2.iosp.nids.Nidsheader.Vinfo vinfo, List section)
          Read nested data
 Array Nidsiosp.readNestedVectorArrowData(String name, String memberName, ByteBuffer bos, ucar.nc2.iosp.nids.Nidsheader.Vinfo vinfo, List section)
          Read nested data
 Array Nidsiosp.readNestedWindBarbData(String name, String memberName, ByteBuffer bos, ucar.nc2.iosp.nids.Nidsheader.Vinfo vinfo, List section)
          Read nested data
 Object Nidsiosp.readOneArrayData(ByteBuffer bos, ucar.nc2.iosp.nids.Nidsheader.Vinfo vinfo, String vName)
           
 Object Nidsiosp.readOneArrayData1(ByteBuffer bos, ucar.nc2.iosp.nids.Nidsheader.Vinfo vinfo)
          Read data
 byte[] Nidsiosp.readOneBeamData(byte[] ddata, int rLen, int xt, int level)
          read one radial beam data
 short[] Nidsiosp.readOneBeamShortData(byte[] ddata, int rLen, int xt, int level)
          read one radial beam data
 byte[] Nidsiosp.readOneRowData(byte[] ddata, int rLen, int xt)
          Read data from encoded values and run len into regular data array
 short[] Nidsiosp.readOneRowData1(byte[] ddata, int rLen, int xt)
          Read data from encoded values and run len into regular data array
 short[] Nidsiosp.readOneRowData2(byte[] ddata, int rLen, int xt)
          Read data from encoded values and run len into regular data array
 Object Nidsiosp.readOneScanData(ByteBuffer bos, ucar.nc2.iosp.nids.Nidsheader.Vinfo vinfo, String vName)
          Read one scan radar data
 Object Nidsiosp.readRadialDataAzi(ByteBuffer bos, ucar.nc2.iosp.nids.Nidsheader.Vinfo vinfo)
           
 Object Nidsiosp.readRadialDataEle(ByteBuffer bos, ucar.nc2.iosp.nids.Nidsheader.Vinfo vinfo)
          read radail elevation array
 Object Nidsiosp.readRadialDataGate(ucar.nc2.iosp.nids.Nidsheader.Vinfo vinfo)
           
 Object Nidsiosp.readRadialDataLatLonAlt(double t, ucar.nc2.iosp.nids.Nidsheader.Vinfo vinfo)
          read radial data
 Object Nidsiosp.readTabAlphaNumData(ByteBuffer bos, ucar.nc2.iosp.nids.Nidsheader.Vinfo vinfo)
          Read data
 ArrayStructure Nidsiosp.readTextStringData(String name, ByteBuffer bos, ucar.nc2.iosp.nids.Nidsheader.Vinfo vinfo)
          Read data
 ArrayStructure Nidsiosp.readUnlinkedVectorData(String name, ByteBuffer bos, ucar.nc2.iosp.nids.Nidsheader.Vinfo vinfo)
          Read data
 ArrayStructure Nidsiosp.readVectorArrowData(String name, ByteBuffer bos, ucar.nc2.iosp.nids.Nidsheader.Vinfo vinfo)
          Read data
 ArrayStructure Nidsiosp.readWindBarbData(String name, ByteBuffer bos, ucar.nc2.iosp.nids.Nidsheader.Vinfo vinfo, List sList)
          Read data
 

Uses of InvalidRangeException in ucar.nc2.iosp.noaa
 

Methods in ucar.nc2.iosp.noaa that throw InvalidRangeException
 Array Ghcnm.readData(Variable v2, Section section)
          Returns an ArraySequence, no subsetting is allowed.
 Array Ghcnm2.readData(Variable v2, Section section)
           
 Array IgraPor.readData(Variable v2, Section section)
           
 

Uses of InvalidRangeException in ucar.nc2.iosp.nowrad
 

Methods in ucar.nc2.iosp.nowrad that throw InvalidRangeException
 Array NOWRadiosp.readData(Variable v2, Section section)
          Read the data for each variable passed in
 byte[] NOWRadiosp.readOneRowData(byte[] ddata, int rLen, int xt)
          Read data from encoded values and run len into regular data array
 Object NOWRadiosp.readOneScanData(ByteBuffer bos, ucar.nc2.iosp.nowrad.NOWRadheader.Vinfo vinfo, String vName)
          Read one scan radar data
 

Uses of InvalidRangeException in ucar.nc2.iosp.sigmet
 

Methods in ucar.nc2.iosp.sigmet that throw InvalidRangeException
 Array SigmetIOServiceProvider.readData(Variable v2, Section section)
           
 Array SigmetIOServiceProvider.readData1(Variable v2, Section section)
          Read data from a top level Variable and return a memory resident Array.
 Array SigmetIOServiceProvider.readNestedData(Variable v2, List section)
           
 long SigmetIOServiceProvider.readToByteChannel11(Variable v2, Section section, WritableByteChannel channel)
          Read data from a top level Variable and send data to a WritableByteChannel.
 

Uses of InvalidRangeException in ucar.nc2.iosp.uamiv
 

Methods in ucar.nc2.iosp.uamiv that throw InvalidRangeException
 Array UAMIVServiceProvider.readData(Variable v2, Section wantSection)
          Read data from a top level Variable and return a memory resident Array.
 

Uses of InvalidRangeException in ucar.nc2.iosp.uf
 

Methods in ucar.nc2.iosp.uf that throw InvalidRangeException
 Array UFiosp.readData(Variable v2, Section section)
           
 

Uses of InvalidRangeException in ucar.nc2.jni.netcdf
 

Methods in ucar.nc2.jni.netcdf that throw InvalidRangeException
 Array JniIosp.readData(Variable v2, Section section)
           
 

Uses of InvalidRangeException in ucar.nc2.ncml
 

Methods in ucar.nc2.ncml that throw InvalidRangeException
protected  Array Aggregation.Dataset.read(Variable mainv, CancelTask cancelTask, List<Range> section)
          Read a section of the local Variable.
 Array AggregationOuterDimension.reallyRead(Variable mainv, Section section, CancelTask cancelTask)
          Read a section of an aggregation variable.
 Array Aggregation.DatasetProxyReader.reallyRead(Variable mainV, Section section, CancelTask cancelTask)
           
 

Uses of InvalidRangeException in ucar.nc2.stream
 

Methods in ucar.nc2.stream that throw InvalidRangeException
 Array NcStreamIosp.readData(Variable v, Section section)
           
protected  Array CdmRemote.readData(Variable v, Section section)
           
 long NcStreamWriter.sendData(Variable v, Section section, WritableByteChannel wbc)
           
 long NcStreamWriter.streamAll(WritableByteChannel wbc)
           
 

Uses of InvalidRangeException in ucar.unidata.geoloc.vertical
 

Methods in ucar.unidata.geoloc.vertical that throw InvalidRangeException
 ArrayDouble.D3 OceanSG1.getCoordinateArray(int timeIndex)
          Get the 3D vertical coordinate array for this time step.
 ArrayDouble.D3 OceanSigma.getCoordinateArray(int timeIndex)
          Get the 3D vertical coordinate array for this time step.
 ArrayDouble.D3 AtmosLnPressure.getCoordinateArray(int timeIndex)
          Get the 3D vertical coordinate array for this time step.
 ArrayDouble.D3 VerticalTransform.getCoordinateArray(int timeIndex)
          Get the 3D vertical coordinate array for this time step.
 ArrayDouble.D3 AtmosSigma.getCoordinateArray(int timeIndex)
          Get the 3D vertical coordinate array for this time step.
 ArrayDouble.D3 HybridSigmaPressure.getCoordinateArray(int timeIndex)
          Get the 3D vertical coordinate array for this time step.
 ArrayDouble.D3 VTfromExistingData.getCoordinateArray(int timeIndex)
           
abstract  ArrayDouble.D3 VerticalTransformImpl.getCoordinateArray(int timeIndex)
          Get the 3D vertical coordinate array for this time step.
 ArrayDouble.D3 HybridHeight.getCoordinateArray(int timeIndex)
          Get the 3D vertical coordinate array for this time step.
 ArrayDouble.D3 VerticalTransformSubset.getCoordinateArray(int subsetIndex)
           
 ArrayDouble.D3 OceanSG2.getCoordinateArray(int timeIndex)
          Get the 3D vertical coordinate array for this time step.
 ArrayDouble.D3 OceanS.getCoordinateArray(int timeIndex)
          Get the 3D vertical coordinate array for this time step.
 ArrayDouble.D1 OceanSG1.getCoordinateArray1D(int timeIndex, int xIndex, int yIndex)
          Get the 1D vertical coordinate array for this time step and the specified X,Y index for Lat-Lon point.
 ArrayDouble.D1 OceanSG2.getCoordinateArray1D(int timeIndex, int xIndex, int yIndex)
          Get the 1D vertical coordinate array for this time step and the specified X,Y index for Lat-Lon point.
 ArrayDouble.D1 OceanS.getCoordinateArray1D(int timeIndex, int xIndex, int yIndex)
          Get the 1D vertical coordinate array for this time step and the specified X,Y index for Lat-Lon point.
protected  Array VerticalTransformImpl.readArray(Variable v, int timeIndex)
          Read the data Array from the variable, at the specified time index if applicable.
 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.
 



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