congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
ArraySequence.findMember
Code IndexAdd Tabnine to your IDE (free)

How to use
findMember
method
in
ucar.ma2.ArraySequence

Best Java code snippets using ucar.ma2.ArraySequence.findMember (Showing top 3 results out of 315)

origin: Unidata/thredds

static private void extractSectionFromSequence(ParsedSectionSpec child, ArraySequence outerData, IndexIterator to) throws IOException, InvalidRangeException {
 try (StructureDataIterator sdataIter = outerData.getStructureDataIterator()) {
  while (sdataIter.hasNext()) {
   StructureData sdata = sdataIter.next();
   StructureMembers.Member m = outerData.findMember(child.v.getShortName());
   Array innerData = sdata.getArray(child.v.getShortName());
   MAMath.copy(m.getDataType(), innerData.getIndexIterator(), to);
  }
 }
}
origin: edu.ucar/netcdf

static private void extractSectionFromSequence(ParsedSectionSpec child, ArraySequence outerData, IndexIterator to) throws IOException, InvalidRangeException {
 StructureDataIterator sdataIter = outerData.getStructureDataIterator();
 try {
  while (sdataIter.hasNext()) {
   StructureData sdata = sdataIter.next();
   StructureMembers.Member m = outerData.findMember(child.v.getShortName());
   Array innerData = sdata.getArray(child.v.getShortName());
   MAMath.copy(m.getDataType(), innerData.getIndexIterator(), to);
  }
 } finally {
  sdataIter.finish();
 }
}
origin: edu.ucar/cdm

static private void extractSectionFromSequence(ParsedSectionSpec child, ArraySequence outerData, IndexIterator to) throws IOException, InvalidRangeException {
 StructureDataIterator sdataIter = outerData.getStructureDataIterator();
 try {
  while (sdataIter.hasNext()) {
   StructureData sdata = sdataIter.next();
   StructureMembers.Member m = outerData.findMember(child.v.getShortName());
   Array innerData = sdata.getArray(child.v.getShortName());
   MAMath.copy(m.getDataType(), innerData.getIndexIterator(), to);
  }
 } finally {
  sdataIter.finish();
 }
}
ucar.ma2ArraySequencefindMember

Popular methods of ArraySequence

  • getStructureDataIterator
  • <init>
  • getStructureDataCount
  • getStructureMembers
  • extractMemberArrayFromIteration
  • getShape
  • getMembers
  • getStructureMemberNames

Popular in Java

  • Running tasks concurrently on multiple threads
  • getSharedPreferences (Context)
  • startActivity (Activity)
  • requestLocationUpdates (LocationManager)
  • FileInputStream (java.io)
    An input stream that reads bytes from a file. File file = ...finally if (in != null) in.clos
  • Permission (java.security)
    Legacy security code; do not use.
  • ResultSet (java.sql)
    An interface for an object which represents a database table entry, returned as the result of the qu
  • HashMap (java.util)
    HashMap is an implementation of Map. All optional operations are supported.All elements are permitte
  • Collectors (java.util.stream)
  • Notification (javax.management)
  • Top 17 PhpStorm 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