Package opendap.dap

Examples of opendap.dap.BaseType


               
        // loop over all variables found
        Enumeration variables = dds.getVariables();
        while (variables.hasMoreElements()) {
         
          BaseType variable = (BaseType)variables.nextElement();
          String varName = variable.getName();
          if (variable instanceof DArray) {
            LOG.log(Level.FINE, "Extracting Darray variable: "+varName);
          } else if (variable instanceof DGrid) {
            LOG.log(Level.FINE, "Extracting Dgrid variable: "+varName);
          }        
View Full Code Here

TOP

Related Classes of opendap.dap.BaseType

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.