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

How to use
findUsedDimensions
method
in
ucar.nc2.iosp.hdf4.H4header

Best Java code snippets using ucar.nc2.iosp.hdf4.H4header.findUsedDimensions (Showing top 6 results out of 315)

origin: Unidata/thredds

private void findUsedDimensions(Group parent, Map<Dimension, List<Variable>> dimUsedMap) {
 for (Variable v : parent.getVariables()) {
  for (Dimension d : v.getDimensions()) {
   if (!d.isShared()) continue;
   List<Variable> vlist = dimUsedMap.get(d);
   if (vlist == null) {
    vlist = new ArrayList<>();
    dimUsedMap.put(d, vlist);
   }
   vlist.add(v);
  }
 }
 for (Group g : parent.getGroups())
  findUsedDimensions(g, dimUsedMap);
}
origin: edu.ucar/netcdf

private void findUsedDimensions(Group parent, Map<Dimension, List<Variable>> dimUsedMap) {
 for (Variable v : parent.getVariables()) {
  for (Dimension d : v.getDimensions()) {
   if (!d.isShared()) continue;
   List<Variable> vlist = dimUsedMap.get(d);
   if (vlist == null) {
    vlist = new ArrayList<Variable>();
    dimUsedMap.put(d, vlist);
   }
   vlist.add(v);
  }
 }
 for (Group g : parent.getGroups())
  findUsedDimensions(g, dimUsedMap);
}
origin: edu.ucar/cdm

private void findUsedDimensions(Group parent, Map<Dimension, List<Variable>> dimUsedMap) {
 for (Variable v : parent.getVariables()) {
  for (Dimension d : v.getDimensions()) {
   if (!d.isShared()) continue;
   List<Variable> vlist = dimUsedMap.get(d);
   if (vlist == null) {
    vlist = new ArrayList<Variable>();
    dimUsedMap.put(d, vlist);
   }
   vlist.add(v);
  }
 }
 for (Group g : parent.getGroups())
  findUsedDimensions(g, dimUsedMap);
}
origin: Unidata/thredds

private void adjustDimensions() {
 Map<Dimension, List<Variable>> dimUsedMap = new HashMap<>();
 findUsedDimensions(ncfile.getRootGroup(), dimUsedMap);
 Set<Dimension> dimUsed = dimUsedMap.keySet();
origin: edu.ucar/netcdf

private void adjustDimensions() {
 Map<Dimension, List<Variable>> dimUsedMap = new HashMap<Dimension, List<Variable>>();
 findUsedDimensions(ncfile.getRootGroup(), dimUsedMap);
 Set<Dimension> dimUsed = dimUsedMap.keySet();
origin: edu.ucar/cdm

private void adjustDimensions() {
 Map<Dimension, List<Variable>> dimUsedMap = new HashMap<Dimension, List<Variable>>();
 findUsedDimensions(ncfile.getRootGroup(), dimUsedMap);
 Set<Dimension> dimUsed = dimUsedMap.keySet();
ucar.nc2.iosp.hdf4H4headerfindUsedDimensions

Popular methods of H4header

  • isValidFile
  • setDebugFlags
  • addGlobalAttributes
  • addGroupToGroup
  • addVariableAttributes
  • addVariableToGroup
  • adjustDimensions
  • construct
  • factory
  • isEos
  • makeAttribute
  • makeDimension
  • makeAttribute,
  • makeDimension,
  • makeDimensionUnshared,
  • makeGroup,
  • makeImage,
  • makeVariable,
  • read,
  • readDDH,
  • tagid

Popular in Java

  • Parsing JSON documents to java classes using gson
  • onRequestPermissionsResult (Fragment)
  • getContentResolver (Context)
  • getSharedPreferences (Context)
  • Color (java.awt)
    The Color class is used to encapsulate colors in the default sRGB color space or colors in arbitrary
  • ServerSocket (java.net)
    This class represents a server-side socket that waits for incoming client connections. A ServerSocke
  • URLEncoder (java.net)
    This class is used to encode a string using the format required by application/x-www-form-urlencoded
  • Permission (java.security)
    Legacy security code; do not use.
  • Collection (java.util)
    Collection is the root of the collection hierarchy. It defines operations on data collections and t
  • LoggerFactory (org.slf4j)
    The LoggerFactory is a utility class producing Loggers for various logging APIs, most notably for lo
  • PhpStorm for WordPress
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