Tabnine Logo
Sequence.setDimensions
Code IndexAdd Tabnine to your IDE (free)

How to use
setDimensions
method
in
ucar.nc2.Sequence

Best Java code snippets using ucar.nc2.Sequence.setDimensions (Showing top 5 results out of 315)

origin: edu.ucar/netcdf

public Sequence(NetcdfFile ncfile, Group group, Structure parent, String shortName) {
 super(ncfile, group, parent, shortName);
 List<Dimension> dims = new ArrayList<Dimension>();
 dims.add(Dimension.VLEN);
 setDimensions(dims);
 setDataType(DataType.SEQUENCE);
}
origin: edu.ucar/cdm

public Sequence(NetcdfFile ncfile, Group group, Structure parent, String shortName) {
 super(ncfile, group, parent, shortName);
 List<Dimension> dims = new ArrayList<>();
 dims.add(Dimension.VLEN);
 setDimensions(dims);
 setDataType(DataType.SEQUENCE);
}
origin: Unidata/thredds

public Sequence(NetcdfFile ncfile, Group group, Structure parent, String shortName) {
 super(ncfile, group, parent, shortName);
 List<Dimension> dims = new ArrayList<>();
 dims.add(Dimension.VLEN);
 setDimensions(dims);
 setDataType(DataType.SEQUENCE);
}
origin: edu.ucar/bufr

private void addSequence(Structure parent, DataDescriptor dataDesc) {
 //String seqName = ftype == (FeatureType.STATION_PROFILE) ? "profile" : "seq";
 String seqName = "seq" + seqNum;
 seqNum++;
 Sequence seq = new Sequence(ncfile, null, parent, seqName);
 seq.setDimensions(""); // scalar
 for (DataDescriptor dkey : dataDesc.getSubKeys())
  addMember(seq, dkey);
 parent.addMemberVariable(seq);
 seq.setSPobject(dataDesc);
 dataDesc.name = seqName;
 dataDesc.refersTo = seq;
}
origin: Unidata/thredds

private void addSequence(Structure parent, BufrConfig.FieldConverter fld) {
 DataDescriptor dkey = fld.dds;
 String uname = findUniqueName(parent, fld.getName(), "seq");
 dkey.name = uname; // name may need to be changed for uniqueness
 //String seqName = ftype == (FeatureType.STATION_PROFILE) ? "profile" : "seq";
 //String seqName = dataDesc.name != null ? dataDesc.name : "seq" + seqNum++;
 Sequence seq = new Sequence(ncfile, null, parent, uname);
 seq.setDimensions(""); // scalar
 for (BufrConfig.FieldConverter subKey : fld.flds)
  addMember(seq, subKey);
 parent.addMemberVariable(seq);
 seq.setSPobject(fld);
 dkey.refersTo = seq;
}
ucar.nc2SequencesetDimensions

Popular methods of Sequence

  • getStructureIterator
  • <init>
  • findVariable
  • makeStructureMembers
  • setSPobject
  • addAttribute
  • addMemberVariable
  • read
    UnsupportedOperation
  • getSPobject
  • setDataType
  • getVariableNames
  • getVariableNames

Popular in Java

  • Finding current android device location
  • getApplicationContext (Context)
  • setScale (BigDecimal)
  • getSystemService (Context)
  • FileWriter (java.io)
    A specialized Writer that writes to a file in the file system. All write requests made by calling me
  • RandomAccessFile (java.io)
    Allows reading from and writing to a file in a random-access manner. This is different from the uni-
  • LinkedList (java.util)
    Doubly-linked list implementation of the List and Dequeinterfaces. Implements all optional list oper
  • Cipher (javax.crypto)
    This class provides access to implementations of cryptographic ciphers for encryption and decryption
  • JFrame (javax.swing)
  • JTable (javax.swing)
  • Top PhpStorm plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now