Uses of Class
ucar.ma2.DataType

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.grid   
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.misc Miscellaneous IOSPs. 
ucar.nc2.iosp.netcdf3 I/O Service Provider for NetCDF-3 format files 
ucar.nc2.iosp.noaa   
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(Class c)
          Find the DataType that matches this class.
static DataType DataType.getType(String name)
          Find the DataType that matches this name.
static DataType DataType.valueOf(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(String name, String desc, 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, ByteBuffer bb)
          Create an Array from a ByteBuffer
static Array Array.factory(DataType dataType, int[] shape, 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, List<String> stringValues)
          Make an 1D array from a list of strings.
static Array Array.makeArray(DataType dtype, String[] stringValues)
          Make an 1D array from an array of strings.
 void StructureMembers.Member.setVariableInfo(String vname, String desc, String unitString, DataType dtype)
           
 

Constructors in ucar.ma2 with parameters of type DataType
StructureMembers.Member(String name, String desc, 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 VariableIF.getDataType()
           
 DataType Variable.getDataType()
          Get the data type of the Variable.
 DataType VariableSimpleAdapter.getDataType()
           
 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, String shortName, DataType dtype, String dims)
          Create a new Variable, and add to the given group.
 Variable NetcdfFileWriteable.addVariable(String varName, DataType dataType, Dimension[] dims)
          Add a variable to the file.
 Variable NetcdfFileWriteable.addVariable(String shortName, DataType dataType, List<Dimension> dims)
          Add a variable to the file.
 Variable NetcdfFileWriteable.addVariable(String varName, DataType dataType, 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
Attribute(String name, DataType dataType)
          Construct an empty attribute with no values
Variable(NetcdfFile ncfile, Group group, Structure parent, String shortName, DataType dtype, 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, List<String> stringValues)
          Deprecated. use Array#makeArray directly
 

Constructors in ucar.nc2.dataset with parameters of type DataType
CoordinateAxis(NetcdfDataset ds, Group group, String shortName, DataType dataType, String dims, String units, String desc)
          Constructor when theres no underlying variable.
CoordinateAxis1D(NetcdfDataset ds, Group group, String shortName, DataType dataType, String dims, String units, String desc)
          Constructor when theres no underlying variable.
VariableDS(NetcdfDataset ds, Group group, Structure parentStructure, String shortName, DataType dataType, String dims, String units, 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(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
          Deprecated.  
 

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.grid
 

Methods in ucar.nc2.ft.grid that return DataType
 DataType Grid.getDataType()
          get the data type
 

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(String name, String units, String desc, DataType dtype, int len)
           
 

Uses of DataType in ucar.nc2.iosp
 

Methods in ucar.nc2.iosp with parameters of type DataType
static Object IospHelper.makePrimitiveArray(int size, DataType dataType)
          Create 1D primitive array of the given size and type
static Object IospHelper.makePrimitiveArray(int size, DataType dataType, Object fillValue)
          Create 1D primitive array of the given size and type, fill it with the given value
static Object IospHelper.readData(LayoutBB layout, DataType dataType, Object arr)
          Read data subset from ByteBuffer, place in given primitive array.
static Object IospHelper.readData(PositioningDataInputStream raf, Layout index, DataType dataType, Object arr)
          Read data subset from PositioningDataInputStream, place in given primitive array.
static Object IospHelper.readData(RandomAccessFile raf, Layout layout, DataType dataType, Object arr, int byteOrder, boolean convertChar)
          Read data subset from RandomAccessFile, place in given primitive array.
static Object IospHelper.readDataFill(LayoutBB layout, DataType dataType, Object fillValue)
          Read data subset from ByteBuffer, create primitive array of size Layout.getTotalNelems.
static Object IospHelper.readDataFill(PositioningDataInputStream is, Layout index, DataType dataType, Object fillValue)
          Read data subset from PositioningDataInputStream, create primitive array of size Layout.getTotalNelems.
static Object IospHelper.readDataFill(RandomAccessFile raf, Layout index, DataType dataType, Object fillValue, int byteOrder)
          Read data subset from RandomAccessFile, create primitive array of size Layout.getTotalNelems.
static Object IospHelper.readDataFill(RandomAccessFile raf, Layout index, DataType dataType, 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, String shortName, DataType dataType, String dims, String units, String desc, int nparam)
           
 

Uses of DataType in ucar.nc2.iosp.misc
 

Methods in ucar.nc2.iosp.misc with parameters of type DataType
protected  Variable AbstractLightningIOSP.makeLightningVariable(NetcdfFile ncfile, Group group, Structure seq, String name, DataType dataType, String dims, String longName, String cfName, String units, AxisType type)
          Make lightning variables
 

Uses of DataType in ucar.nc2.iosp.netcdf3
 

Methods in ucar.nc2.iosp.netcdf3 with parameters of type DataType
protected abstract  Object N3iosp.readData(Layout index, DataType dataType)
          Read data subset from file for a variable, create primitive array.
protected  Object N3raf.readData(Layout index, DataType dataType)
          Read data subset from file for a variable, create primitive array.
protected abstract  long N3iosp.readData(Layout index, DataType dataType, WritableByteChannel out)
           
protected  long N3raf.readData(Layout index, DataType dataType, WritableByteChannel out)
          Read data subset from file for a variable, to WritableByteChannel.
protected abstract  void N3iosp.writeData(Array aa, Layout index, DataType dataType)
          Write data subset to file for a variable, create primitive array.
protected  void N3raf.writeData(Array values, Layout index, DataType dataType)
          write data to a file for a variable.
 

Uses of DataType in ucar.nc2.iosp.noaa
 

Methods in ucar.nc2.iosp.noaa with parameters of type DataType
protected  Object StructureDataRegexp.parse(DataType dt, StructureDataRegexp.VinfoField vinfo)
           
protected  Object StructureDataRegexp.parse(DataType dt, StructureDataRegexp.VinfoField vinfo, int fldno)
           
 

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)
           
 



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