Examples of GribPDSParamTable


Examples of ucar.grib.grib1.GribPDSParamTable

      if (edition == 2) {
        Grib2Pds pds2 = (Grib2Pds) pds;
        p = ParameterTable.getParameter(discipline, pds2.getParameterCategory(), pds.getParameterNumber());

      } else {
        GribPDSParamTable pt = null;
        try {
          pt = GribPDSParamTable.getParameterTable(center, subCenter, tableVersion);
        } catch (NotSupportedException e) {
          logger.error("Failed to get Parameter name for " + this);
        }
        p = pt.getParameter( pds.getParameterNumber());
      }

    return p;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.