Class StructurePseudoDS

java.lang.Object
ucar.nc2.CDMNode
All Implemented Interfaces:
Comparable<VariableSimpleIF>, Iterable<Attribute>, AttributeContainer, ucar.nc2.dataset.Enhancements, VariableEnhanced, ProxyReader, VariableSimpleIF
Direct Known Subclasses:
StructurePseudo2Dim

public class StructurePseudoDS extends StructureDS
Make a collection of variables with the same outer dimension into a fake Structure. Its fake because the variables are not stored contiguously.
  so
   var1(dim, other);
   var2(dim, other);
   var3(dim, other);
 becomes
   struct {
     var1(other);
     var2(other);
     var3(other);
   } name(dim);