|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Section | |
---|---|
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.ft.coordsys | |
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.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 |
Uses of Section in ucar.ma2 |
---|
Methods in ucar.ma2 that return Section | |
---|---|
Section |
Section.addRangeNames(List<String> rangeNames)
|
Section |
Section.appendRange()
Append a null Range to the Section - meaning "all" |
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(Range r)
Append a Range 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 |
Section |
Section.compact()
Create a new Section by compacting each Range. |
Section |
Section.compose(Section want)
Create a new Section by composing with a Section that is reletive to this Section. |
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. |
Section |
Section.insertRange(int index,
Range r)
Insert a range at the specified index in the list. |
Section |
Section.intersect(Section other)
Create a new Section by intersection with another Section |
Section |
Section.makeImmutable()
Makes the object immutable, so can be safely shared |
Section |
Section.reduce()
Remove any ranges of length 1 |
Section |
Section.removeRange(int index)
Remove a range at the specified index in the list. |
Section |
Section.removeVlen()
Create a new Section by compacting each 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 |
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. |
Section |
Section.union(Section other)
Create a new Section by union with another Section |
Methods in ucar.ma2 with parameters of type Section | |
---|---|
Section |
Section.compose(Section want)
Create a new Section by composing with a Section that is reletive to this Section. |
boolean |
Section.contains(Section other)
See if this Section contains another Section. |
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. |
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)
|
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. |
Section |
Section.union(Section other)
Create a new Section by union with another Section |
Constructors in ucar.ma2 with parameters of type Section | |
---|---|
Section(Section from)
Copy Constructor. |
Uses of Section in ucar.nc2 |
---|
Fields in ucar.nc2 declared as Section | |
---|---|
Section |
ParsedSectionSpec.section
|
protected Section |
Variable.shapeAsSection
|
Methods in ucar.nc2 that return Section | |
---|---|
Section |
VariableIF.getShapeAsSection()
|
Section |
Variable.getShapeAsSection()
Get shape as a Section object. |
Methods in ucar.nc2 with parameters of type Section | |
---|---|
protected Array |
Variable._read(Section section)
|
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. |
protected Array |
NetcdfFile.readData(Variable v,
Section ranges)
|
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 |
Sequence.section(Section subsection)
UnsupportedOperation |
Variable |
Variable.section(Section subsection)
Create a new Variable that is a logical subsection of this Variable. |
Uses of Section in ucar.nc2.dataset |
---|
Methods in ucar.nc2.dataset with parameters of type Section | |
---|---|
protected Array |
VariableDS._read(Section section)
|
protected Array |
StructurePseudo2Dim._read(Section section)
|
protected ArrayStructure |
StructureDS.convert(Array data,
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)
|
Uses of Section in ucar.nc2.dods |
---|
Methods in ucar.nc2.dods with parameters of type Section | |
---|---|
protected Array |
DODSNetcdfFile.readData(Variable v,
Section section)
|
long |
DODSNetcdfFile.readToByteChannel(Variable v,
Section section,
WritableByteChannel channel)
|
Uses of Section in ucar.nc2.ft.coordsys |
---|
Methods in ucar.nc2.ft.coordsys that return Section | |
---|---|
Section |
GeoReferencingCoordSys.mapIndex(Variable targetVar,
Variable fromVar,
int[] fromIndex)
|
Uses of Section in ucar.nc2.iosp |
---|
Methods in ucar.nc2.iosp with parameters of type Section | |
---|---|
Array |
IOServiceProvider.readData(Variable v2,
Section section)
Read data from a top level Variable and return a memory resident Array. |
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. |
void |
IOServiceProviderWriter.writeData(Variable v2,
Section section,
Array values)
Write data into a variable. |
Constructors in ucar.nc2.iosp with parameters of type Section | |
---|---|
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 Section in ucar.nc2.iosp.bufr |
---|
Methods in ucar.nc2.iosp.bufr with parameters of type Section | |
---|---|
Array |
BufrIosp.readData(Variable v2,
Section section)
|
Uses of Section in ucar.nc2.iosp.cinrad |
---|
Methods in ucar.nc2.iosp.cinrad with parameters of type Section | |
---|---|
Array |
Cinrad2IOServiceProvider.readData(Variable v2,
Section section)
|
Uses of Section in ucar.nc2.iosp.dmsp |
---|
Methods in ucar.nc2.iosp.dmsp with parameters of type Section | |
---|---|
Array |
DMSPiosp.readData(Variable v2,
Section section)
|
Uses of Section in ucar.nc2.iosp.dorade |
---|
Methods in ucar.nc2.iosp.dorade with parameters of type Section | |
---|---|
Array |
Doradeiosp.readData(Variable v2,
Section section)
|
Array |
Doradeiosp.readData1(Variable v2,
Section section,
float[] values)
|
Array |
Doradeiosp.readData2(Variable v2,
Section section,
double[] values)
|
Uses of Section in ucar.nc2.iosp.fysat |
---|
Methods in ucar.nc2.iosp.fysat with parameters of type Section | |
---|---|
Array |
Fysatiosp.readData(Variable v2,
Section section)
|
Uses of Section in ucar.nc2.iosp.gempak |
---|
Methods in ucar.nc2.iosp.gempak with parameters of type Section | |
---|---|
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 Section in ucar.nc2.iosp.gini |
---|
Methods in ucar.nc2.iosp.gini with parameters of type Section | |
---|---|
Array |
Giniiosp.readData(Variable v2,
Section section)
|
Uses of Section in ucar.nc2.iosp.grads |
---|
Methods in ucar.nc2.iosp.grads with parameters of type Section | |
---|---|
Array |
GradsBinaryGridServiceProvider.readData(Variable v2,
Section section)
Read the data for the variable |
Uses of Section in ucar.nc2.iosp.grid |
---|
Methods in ucar.nc2.iosp.grid with parameters of type Section | |
---|---|
Array |
GridServiceProvider.readData(Variable v2,
Section section)
Read the data for the variable |
Uses of Section in ucar.nc2.iosp.hdf4 |
---|
Methods in ucar.nc2.iosp.hdf4 with parameters of type Section | |
---|---|
Array |
H4iosp.readData(Variable v,
Section section)
|
Uses of Section in ucar.nc2.iosp.hdf5 |
---|
Methods in ucar.nc2.iosp.hdf5 with parameters of type Section | |
---|---|
Array |
H5iosp.readData(Variable v2,
Section section)
|
Uses of Section in ucar.nc2.iosp.mcidas |
---|
Methods in ucar.nc2.iosp.mcidas with parameters of type Section | |
---|---|
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 Section in ucar.nc2.iosp.misc |
---|
Methods in ucar.nc2.iosp.misc with parameters of type Section | |
---|---|
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 Section in ucar.nc2.iosp.netcdf3 |
---|
Methods in ucar.nc2.iosp.netcdf3 with parameters of type Section | |
---|---|
Array |
N3iosp.readData(Variable v2,
Section section)
|
Array |
N3iosp.readNestedData(Variable v2,
Section section)
|
long |
N3iosp.readToByteChannel(Variable v2,
Section section,
WritableByteChannel channel)
|
void |
N3iosp.writeData(Variable v2,
Section section,
Array values)
|
Uses of Section in ucar.nc2.iosp.nexrad2 |
---|
Methods in ucar.nc2.iosp.nexrad2 with parameters of type Section | |
---|---|
Array |
Nexrad2IOServiceProvider.readData(Variable v2,
Section section)
|
Uses of Section in ucar.nc2.iosp.nids |
---|
Methods in ucar.nc2.iosp.nids with parameters of type Section | |
---|---|
Array |
Nidsiosp.readData(Variable v2,
Section section)
Read the data for each variable passed in |
Array |
Nidsiosp.readNestedData(Variable v2,
Section section)
Read nested structure data |
Uses of Section in ucar.nc2.iosp.noaa |
---|
Methods in ucar.nc2.iosp.noaa with parameters of type Section | |
---|---|
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 Section in ucar.nc2.iosp.nowrad |
---|
Methods in ucar.nc2.iosp.nowrad with parameters of type Section | |
---|---|
Array |
NOWRadiosp.readData(Variable v2,
Section section)
Read the data for each variable passed in |
Uses of Section in ucar.nc2.iosp.sigmet |
---|
Methods in ucar.nc2.iosp.sigmet with parameters of type Section | |
---|---|
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. |
long |
SigmetIOServiceProvider.readToByteChannel11(Variable v2,
Section section,
WritableByteChannel channel)
Read data from a top level Variable and send data to a WritableByteChannel. |
Uses of Section in ucar.nc2.iosp.uamiv |
---|
Methods in ucar.nc2.iosp.uamiv with parameters of type Section | |
---|---|
Array |
UAMIVServiceProvider.readData(Variable v2,
Section wantSection)
Read data from a top level Variable and return a memory resident Array. |
Uses of Section in ucar.nc2.iosp.uf |
---|
Methods in ucar.nc2.iosp.uf with parameters of type Section | |
---|---|
Array |
UFiosp.readData(Variable v2,
Section section)
|
Uses of Section in ucar.nc2.jni.netcdf |
---|
Methods in ucar.nc2.jni.netcdf with parameters of type Section | |
---|---|
Array |
JniIosp.readData(Variable v2,
Section section)
|
Uses of Section in ucar.nc2.ncml |
---|
Methods in ucar.nc2.ncml with parameters of type Section | |
---|---|
Array |
AggregationTiled.reallyRead(Variable mainv,
Section wantSection,
CancelTask cancelTask)
|
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 Section in ucar.nc2.stream |
---|
Methods in ucar.nc2.stream that return Section | |
---|---|
static Section |
NcStream.decodeSection(NcStreamProto.Section proto)
|
Methods in ucar.nc2.stream with parameters of type Section | |
---|---|
static NcStreamProto.Section |
NcStream.encodeSection(Section section)
|
Array |
NcStreamIosp.readData(Variable v,
Section section)
|
protected Array |
CdmRemote.readData(Variable v,
Section section)
|
long |
NcStreamWriter.sendData(Variable v,
Section section,
WritableByteChannel wbc)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |