|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use DataType | |
|---|---|
| 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.dt.point | Scientific data type "Point", collections of point observation data. |
| ucar.nc2.dt.radial | Scientific data type "Radial", uses spherical coordinate system. |
| ucar.nc2.ft.point | package ucar.nc2.ft.point : Implementation of Point Feature Types |
| ucar.nc2.ft.point.writer | package ucar.nc2.ft.point.writer : Write (to files) Point Feature Types |
| ucar.nc2.iosp | General classes for I/O Service Providers |
| ucar.nc2.iosp.adde | IOSP for ADDE servers |
| ucar.nc2.iosp.netcdf3 | I/O Service Provider for NetCDF-3 format files |
| ucar.nc2.stream | |
| Uses of DataType in ucar.ma2 |
|---|
| Methods in ucar.ma2 that return DataType | |
|---|---|
DataType |
StructureMembers.Member.getDataType()
Get the DataType. |
static DataType |
DataType.getType(java.lang.Class c)
Find the DataType that matches this class. |
static DataType |
DataType.getType(java.lang.String name)
Find the DataType that matches this name. |
static DataType |
DataType.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static DataType[] |
DataType.values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods in ucar.ma2 with parameters of type DataType | |
|---|---|
StructureMembers.Member |
StructureMembers.addMember(java.lang.String name,
java.lang.String desc,
java.lang.String units,
DataType dtype,
int[] shape)
|
static Array |
MAMath.convert(Array org,
DataType wantType)
Convert original array to desired type |
static Array |
MAMath.convert2packed(Array unpacked,
double missingValue,
int nbits,
boolean isUnsigned,
DataType packedType)
|
static void |
MAMath.copy(DataType dataType,
IndexIterator from,
IndexIterator to)
Copy using iterators. |
static Array |
Array.factory(DataType dataType,
int[] shape)
Generate new Array with given type and shape and zeroed storage. |
static Array |
Array.factory(DataType dtype,
int[] shape,
java.nio.ByteBuffer bb)
Create an Array from a ByteBuffer |
static Array |
Array.factory(DataType dataType,
int[] shape,
java.lang.Object storage)
/** Generate new Array with given type, shape, storage. |
static Array |
Array.makeArray(DataType dtype,
int npts,
double start,
double incr)
Make a 1D array from a start and inccr. |
static Array |
Array.makeArray(DataType dtype,
java.util.List<java.lang.String> stringValues)
Make an 1D array from a list of strings. |
static Array |
Array.makeArray(DataType dtype,
java.lang.String[] stringValues)
Make an 1D array from an array of strings. |
void |
StructureMembers.Member.setVariableInfo(java.lang.String vname,
java.lang.String desc,
java.lang.String unitString,
DataType dtype)
|
| Constructors in ucar.ma2 with parameters of type DataType | |
|---|---|
StructureMembers.Member(java.lang.String name,
java.lang.String desc,
java.lang.String units,
DataType dtype,
int[] shape)
|
|
| Uses of DataType in ucar.nc2 |
|---|
| Fields in ucar.nc2 declared as DataType | |
|---|---|
protected DataType |
Variable.dataType
|
| Methods in ucar.nc2 that return DataType | |
|---|---|
DataType |
VariableSimpleIF.getDataType()
Variable's data type |
DataType |
VariableSimpleAdapter.getDataType()
|
DataType |
VariableIF.getDataType()
|
DataType |
Variable.getDataType()
Get the data type of the Variable. |
DataType |
Attribute.getDataType()
Get the data type of the Attribute value. |
| Methods in ucar.nc2 with parameters of type DataType | |
|---|---|
Variable |
NetcdfFile.addVariable(Group g,
java.lang.String shortName,
DataType dtype,
java.lang.String dims)
Create a new Variable, and add to the given group. |
Variable |
NetcdfFileWriteable.addVariable(java.lang.String varName,
DataType dataType,
Dimension[] dims)
Add a variable to the file. |
Variable |
NetcdfFileWriteable.addVariable(java.lang.String varName,
DataType dataType,
java.util.List<Dimension> dims)
Add a variable to the file. |
Variable |
NetcdfFileWriteable.addVariable(java.lang.String varName,
DataType dataType,
java.lang.String dims)
Add a variable to the file. |
void |
Variable.setDataType(DataType dataType)
Set the data type |
| Constructors in ucar.nc2 with parameters of type DataType | |
|---|---|
Variable(NetcdfFile ncfile,
Group group,
Structure parent,
java.lang.String shortName,
DataType dtype,
java.lang.String dims)
Create a Variable. |
|
| Uses of DataType in ucar.nc2.dataset |
|---|
| Fields in ucar.nc2.dataset declared as DataType | |
|---|---|
protected DataType |
VariableDS.orgDataType
|
| Methods in ucar.nc2.dataset that return DataType | |
|---|---|
DataType |
VariableDS.getOriginalDataType()
When this wraps another Variable, get the original Variable's DataType. |
DataType |
StructureDS.getOriginalDataType()
When this wraps another Variable, get the original Variable's DataType. |
| Methods in ucar.nc2.dataset with parameters of type DataType | |
|---|---|
static Array |
NetcdfDataset.makeArray(DataType dtype,
java.util.List<java.lang.String> stringValues)
Deprecated. use Array#makeArray directly |
| Constructors in ucar.nc2.dataset with parameters of type DataType | |
|---|---|
CoordinateAxis(NetcdfDataset ds,
Group group,
java.lang.String shortName,
DataType dataType,
java.lang.String dims,
java.lang.String units,
java.lang.String desc)
Constructor when theres no underlying variable. |
|
CoordinateAxis1D(NetcdfDataset ds,
Group group,
java.lang.String shortName,
DataType dataType,
java.lang.String dims,
java.lang.String units,
java.lang.String desc)
Constructor when theres no underlying variable. |
|
VariableDS(NetcdfDataset ds,
Group group,
Structure parentStructure,
java.lang.String shortName,
DataType dataType,
java.lang.String dims,
java.lang.String units,
java.lang.String desc)
Constructor when there's no underlying variable. |
|
| Uses of DataType in ucar.nc2.dods |
|---|
| Methods in ucar.nc2.dods that return DataType | |
|---|---|
static DataType |
DODSNetcdfFile.convertToNCType(opendap.dap.BaseType dtype)
Get the Netcdf data type corresponding to the DODS BaseType class. |
static DataType |
DODSNetcdfFile.convertToNCType(int dodsDataType)
Get the Netcdf data type corresponding to the DODS data type. |
| Methods in ucar.nc2.dods with parameters of type DataType | |
|---|---|
static int |
DODSNetcdfFile.convertToDODSType(DataType dataType,
boolean isUnsigned)
Get the DODS data class corresponding to the Netcdf data type. |
| Uses of DataType in ucar.nc2.dt |
|---|
| Methods in ucar.nc2.dt that return DataType | |
|---|---|
DataType |
VariableSimpleSubclass.getDataType()
|
DataType |
GridDatatype.getDataType()
get the data type |
| Uses of DataType in ucar.nc2.dt.grid |
|---|
| Methods in ucar.nc2.dt.grid that return DataType | |
|---|---|
DataType |
GeoGrid.getDataType()
get the data type |
| Uses of DataType in ucar.nc2.dt.point |
|---|
| Fields in ucar.nc2.dt.point declared as DataType | |
|---|---|
protected DataType |
RecordDatasetHelper.stationIdType
|
| Uses of DataType in ucar.nc2.dt.radial |
|---|
| Methods in ucar.nc2.dt.radial that return DataType | |
|---|---|
DataType |
RadialDatasetSweepAdapter.MyRadialVariableAdapter.getDataType()
|
| Uses of DataType in ucar.nc2.ft.point |
|---|
| Fields in ucar.nc2.ft.point declared as DataType | |
|---|---|
protected DataType |
RecordDatasetHelper.stationIdType
|
| Uses of DataType in ucar.nc2.ft.point.writer |
|---|
| Methods in ucar.nc2.ft.point.writer that return DataType | |
|---|---|
DataType |
PointObVar.getDataType()
|
| Methods in ucar.nc2.ft.point.writer with parameters of type DataType | |
|---|---|
void |
PointObVar.setDataType(DataType dtype)
|
| Constructors in ucar.nc2.ft.point.writer with parameters of type DataType | |
|---|---|
PointObVar(java.lang.String name,
java.lang.String units,
java.lang.String desc,
DataType dtype,
int len)
|
|
| Uses of DataType in ucar.nc2.iosp |
|---|
| Methods in ucar.nc2.iosp with parameters of type DataType | |
|---|---|
static java.lang.Object |
IospHelper.makePrimitiveArray(int size,
DataType dataType)
Create 1D primitive array of the given size and type |
static java.lang.Object |
IospHelper.makePrimitiveArray(int size,
DataType dataType,
java.lang.Object fillValue)
Create 1D primitive array of the given size and type, fill it with the given value |
static java.lang.Object |
IospHelper.readData(LayoutBB layout,
DataType dataType,
java.lang.Object arr)
Read data subset from ByteBuffer, place in given primitive array. |
static java.lang.Object |
IospHelper.readData(PositioningDataInputStream raf,
Layout index,
DataType dataType,
java.lang.Object arr)
Read data subset from PositioningDataInputStream, place in given primitive array. |
static java.lang.Object |
IospHelper.readData(RandomAccessFile raf,
Layout layout,
DataType dataType,
java.lang.Object arr,
int byteOrder,
boolean convertChar)
Read data subset from RandomAccessFile, place in given primitive array. |
static java.lang.Object |
IospHelper.readDataFill(LayoutBB layout,
DataType dataType,
java.lang.Object fillValue)
Read data subset from PositioningDataInputStream, create primitive array of size Layout.getTotalNelems. |
static java.lang.Object |
IospHelper.readDataFill(PositioningDataInputStream is,
Layout index,
DataType dataType,
java.lang.Object fillValue)
Read data subset from PositioningDataInputStream, create primitive array of size Layout.getTotalNelems. |
static java.lang.Object |
IospHelper.readDataFill(RandomAccessFile raf,
Layout index,
DataType dataType,
java.lang.Object fillValue,
int byteOrder)
Read data subset from RandomAccessFile, create primitive array of size Layout.getTotalNelems. |
static java.lang.Object |
IospHelper.readDataFill(RandomAccessFile raf,
Layout index,
DataType dataType,
java.lang.Object fillValue,
int byteOrder,
boolean convertChar)
|
| Uses of DataType in ucar.nc2.iosp.adde |
|---|
| Constructors in ucar.nc2.iosp.adde with parameters of type DataType | |
|---|---|
AddeVariable(NetcdfDataset ncfile,
Structure parentStructure,
java.lang.String shortName,
DataType dataType,
java.lang.String dims,
java.lang.String units,
java.lang.String desc,
int nparam)
|
|
| Uses of DataType in ucar.nc2.iosp.netcdf3 |
|---|
| Methods in ucar.nc2.iosp.netcdf3 with parameters of type DataType | |
|---|---|
protected java.lang.Object |
N3raf.readData(Layout index,
DataType dataType)
Read data subset from file for a variable, create primitive array. |
protected abstract java.lang.Object |
N3iosp.readData(Layout index,
DataType dataType)
Read data subset from file for a variable, create primitive array. |
protected long |
N3raf.readData(Layout index,
DataType dataType,
java.nio.channels.WritableByteChannel out)
Read data subset from file for a variable, to WritableByteChannel. |
protected abstract long |
N3iosp.readData(Layout index,
DataType dataType,
java.nio.channels.WritableByteChannel out)
|
protected void |
N3raf.writeData(Array values,
Layout index,
DataType dataType)
write data to a file for a variable. |
protected abstract void |
N3iosp.writeData(Array aa,
Layout index,
DataType dataType)
Write data subset to file for a variable, create primitive array. |
| Uses of DataType in ucar.nc2.stream |
|---|
| Methods in ucar.nc2.stream that return DataType | |
|---|---|
static DataType |
NcStream.decodeDataType(NcStreamProto.DataType dtype)
|
| Methods in ucar.nc2.stream with parameters of type DataType | |
|---|---|
static NcStreamProto.DataType |
NcStream.encodeDataType(DataType dtype)
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||