Package ucar.nc2.grib.grib2.table
Class EccodesParamTable
- java.lang.Object
-
- ucar.nc2.grib.grib2.table.EccodesParamTable
-
- All Implemented Interfaces:
Grib2ParamTableInterface
public class EccodesParamTable extends Object implements Grib2ParamTableInterface
The results of EcmwfParamTableCompare indicate there are no significant differences of the parameter tables with WMO. So this class is not used currently in production.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static EccodesParamTablefactory(int version, int discipline, int category)StringgetName()Grib2ParametergetParameter(int code)Find the Parameter in this table with the given number.Grib2ParametergetParameter(int discipline, int category, int number)com.google.common.collect.ImmutableList<GribTables.Parameter>getParameters()StringgetShortName()
-
-
-
Method Detail
-
factory
public static EccodesParamTable factory(int version, int discipline, int category)
-
getName
public String getName()
- Specified by:
getNamein interfaceGrib2ParamTableInterface
-
getShortName
public String getShortName()
- Specified by:
getShortNamein interfaceGrib2ParamTableInterface
-
getParameters
public com.google.common.collect.ImmutableList<GribTables.Parameter> getParameters()
- Specified by:
getParametersin interfaceGrib2ParamTableInterface
-
getParameter
@Nullable public Grib2Parameter getParameter(int code)
Description copied from interface:Grib2ParamTableInterfaceFind the Parameter in this table with the given number.- Specified by:
getParameterin interfaceGrib2ParamTableInterface- Parameters:
code- unsigned byte.
-
getParameter
@Nullable public Grib2Parameter getParameter(int discipline, int category, int number)
-
-