congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
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

  • Updating database using SQL prepared statement
  • compareTo (BigDecimal)
  • setContentView (Activity)
  • getExternalFilesDir (Context)
  • BufferedInputStream (java.io)
    A BufferedInputStream adds functionality to another input stream-namely, the ability to buffer the i
  • Date (java.sql)
    A class which can consume and produce dates in SQL Date format. Dates are represented in SQL as yyyy
  • BitSet (java.util)
    The BitSet class implements abit array [http://en.wikipedia.org/wiki/Bit_array]. Each element is eit
  • StringTokenizer (java.util)
    Breaks a string into tokens; new code should probably use String#split.> // Legacy code: StringTo
  • Timer (java.util)
    Timers schedule one-shot or recurring TimerTask for execution. Prefer java.util.concurrent.Scheduled
  • Get (org.apache.hadoop.hbase.client)
    Used to perform Get operations on a single row. To get everything for a row, instantiate a Get objec
  • 21 Best IntelliJ Plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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