Uses of Class
ucar.nc2.Group

Packages that use Group
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.iosp.grid   
ucar.nc2.iosp.hdf4 I/O Service Provider for HDF-4 format files 
ucar.nc2.iosp.misc Miscellaneous IOSPs. 
 

Uses of Group in ucar.nc2
 

Fields in ucar.nc2 declared as Group
protected  Group Variable.group
           
protected  Group Group.parent
           
protected  Group NetcdfFile.rootGroup
           
 

Fields in ucar.nc2 with type parameters of type Group
protected  List<Group> Group.groups
           
 

Methods in ucar.nc2 that return Group
 Group NetcdfFile.addGroup(Group parent, Group g)
          Add a group to the parent group.
 Group Group.commonParent(Group other)
          Get the common parent of this and the other group.
 Group Group.findGroup(String groupShortName)
          Retrieve the Group with the specified (short) name.
 Group NetcdfFile.findGroup(String fullName)
          Find a Group, with the specified (full) name.
 Group Dimension.getGroup()
          Get the Group that owns this Dimension.
 Group VariableIF.getParentGroup()
           
 Group Group.getParentGroup()
          Get its parent Group, or null if its the root group.
 Group Variable.getParentGroup()
          Get the containing Group.
 Group NetcdfFile.getRootGroup()
          Get the root group.
protected  Group NetcdfFile.makeRootGroup()
           
 Group Group.setImmutable()
          Make this immutable.
 

Methods in ucar.nc2 that return types with arguments of type Group
 List<Group> Group.getGroups()
          Get the Groups contained directly in this Group.
 

Methods in ucar.nc2 with parameters of type Group
 Attribute NetcdfFile.addAttribute(Group parent, Attribute att)
          Add an attribute to a group.
 Dimension NetcdfFile.addDimension(Group parent, Dimension d)
          Add a shared Dimension to a Group.
 void Group.addGroup(Group g)
          Add a nested Group
 Group NetcdfFile.addGroup(Group parent, Group g)
          Add a group to the parent group.
 Variable NetcdfFile.addStringVariable(Group g, String shortName, String dims, int strlen)
          Create a new Variable of type Datatype.CHAR, and add to the given group.
 Variable NetcdfFile.addVariable(Group g, String shortName, DataType dtype, String dims)
          Create a new Variable, and add to the given group.
 Variable NetcdfFile.addVariable(Group g, Variable v)
          Add a Variable to the given group.
 Group Group.commonParent(Group other)
          Get the common parent of this and the other group.
 boolean Group.isParent(Group other)
          Is this a parent of the other Group?
protected  String NetcdfFile.makeFullNameWithString(Group parent, String name)
           
 boolean Group.remove(Group g)
          Remove an Attribute : uses the Group hashCode to find it.
 boolean NetcdfFile.removeDimension(Group g, String dimName)
          Remove a shared Dimension from a Group by name.
 boolean NetcdfFile.removeVariable(Group g, String varName)
          Remove a Variable from the given group by name.
 void Dimension.setGroup(Group g)
          Set the group
 void Group.setParentGroup(Group parent)
          Set the Group's parent Group
 void Variable.setParentGroup(Group group)
          Set the parent group.
 void Structure.setParentGroup(Group group)
          Set the parent group of this Structure, and all member variables.
 

Constructors in ucar.nc2 with parameters of type Group
Group(NetcdfFile ncfile, Group parent, String shortName)
          Constructor
Sequence(NetcdfFile ncfile, Group group, Structure parent, String shortName)
           
Structure(NetcdfFile ncfile, Group group, Structure parent, String shortName)
           
StructurePseudo(NetcdfFile ncfile, Group group, String shortName, Dimension dim)
          Deprecated. Make a Structure out of all Variables with the named dimension as their outermost dimension.
StructurePseudo(NetcdfFile ncfile, Group group, String shortName, List<String> varNames, Dimension dim)
          Deprecated. Make a Structure out of named Variables, each has the same named outermost dimension.
Variable(NetcdfFile ncfile, Group group, Structure parent, String shortName)
          Create a Variable.
Variable(NetcdfFile ncfile, Group group, Structure parent, String shortName, DataType dtype, String dims)
          Create a Variable.
 

Uses of Group in ucar.nc2.dataset
 

Methods in ucar.nc2.dataset that return Group
static Group DatasetConstructor.findGroup(NetcdfFile newFile, Group oldGroup)
          Find the Group in newFile that corresponds (by name) with oldGroup
 

Methods in ucar.nc2.dataset with parameters of type Group
 Variable NetcdfDataset.addVariable(Group g, Variable v)
           
static Group DatasetConstructor.findGroup(NetcdfFile newFile, Group oldGroup)
          Find the Group in newFile that corresponds (by name) with oldGroup
static void DatasetConstructor.transferGroupAttributes(Group src, Group target)
          Copy attributes from src to target, skip ones that already exist (by name)
 

Constructors in ucar.nc2.dataset with parameters of type Group
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.
SequenceDS(Group g, Sequence orgSeq)
           
StructureDS(Group g, Structure orgVar)
          Create a StructureDS thats wraps a Structure
StructureDS(NetcdfDataset ds, Group group, Structure parentStructure, String shortName, String dims, String units, String desc)
          Constructor when theres no underlying variable.
StructureDS(NetcdfDataset ds, Group group, Structure parent, String shortName, Structure orgVar)
          Wrap the given Structure, making it into a StructureDS.
StructureDS(NetcdfFile ncfile, Group group, String shortName)
           
StructurePseudo2Dim(NetcdfDataset ncfile, Group group, String shortName, List<String> varNames, Dimension outer, Dimension inner)
          Make a Structure out of named Variables which have var(outer, inner, ...)
StructurePseudoDS(NetcdfDataset ncfile, Group group, String shortName)
           
StructurePseudoDS(NetcdfDataset ncfile, Group group, String shortName, List<String> varNames, Dimension outerDim)
          Make a Structure out of all Variables with the named dimension as their outermost dimension, or from a list named Variables, each has the same named outermost dimension.
VariableDS(Group group, Structure parent, String shortName, Variable orgVar)
          Make a new VariableDS, delegate data reading to the original variable, but otherwise dont take any info from it.
VariableDS(Group g, Variable orgVar, boolean enhance)
          Wrap the given Variable, making it into a VariableDS.
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 Group in ucar.nc2.iosp.grid
 

Methods in ucar.nc2.iosp.grid that return Group
 Group GridHorizCoordSys.getGroup()
          Get the group
 

Constructors in ucar.nc2.iosp.grid with parameters of type Group
GridHorizCoordSys(GridDefRecord gds, GridTableLookup lookup, Group g)
          Create a new GridHorizCoordSys with the grid definition and lookup
 

Uses of Group in ucar.nc2.iosp.hdf4
 

Methods in ucar.nc2.iosp.hdf4 with parameters of type Group
static boolean HdfEos.amendFromODL(NetcdfFile ncfile, Group eosGroup)
          Amend the given NetcdfFile with metadata from HDF-EOS structMetadata.
static void HdfEos.getEosInfo(NetcdfFile ncfile, Group eosGroup, Formatter f)
           
 

Uses of Group in ucar.nc2.iosp.misc
 

Methods in ucar.nc2.iosp.misc with parameters of type Group
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
 



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