Package opendap.dap

Examples of opendap.dap.DDS


    Map<String, ProfileElement> profElements = new HashMap<String, ProfileElement>();

    // extracts all variables defined in DDS
    try {
       
        DDS dds = dConn.getDDS();
               
        // 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) {
View Full Code Here

TOP

Related Classes of opendap.dap.DDS

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.