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 EccodesParamTable
factory(int version, int discipline, int category)
String
getName()
Grib2Parameter
getParameter(int code)
Find the Parameter in this table with the given number.Grib2Parameter
getParameter(int discipline, int category, int number)
com.google.common.collect.ImmutableList<GribTables.Parameter>
getParameters()
String
getShortName()
-
-
-
Method Detail
-
factory
public static EccodesParamTable factory(int version, int discipline, int category)
-
getName
public String getName()
- Specified by:
getName
in interfaceGrib2ParamTableInterface
-
getShortName
public String getShortName()
- Specified by:
getShortName
in interfaceGrib2ParamTableInterface
-
getParameters
public com.google.common.collect.ImmutableList<GribTables.Parameter> getParameters()
- Specified by:
getParameters
in interfaceGrib2ParamTableInterface
-
getParameter
@Nullable public Grib2Parameter getParameter(int code)
Description copied from interface:Grib2ParamTableInterface
Find the Parameter in this table with the given number.- Specified by:
getParameter
in interfaceGrib2ParamTableInterface
- Parameters:
code
- unsigned byte.
-
getParameter
@Nullable public Grib2Parameter getParameter(int discipline, int category, int number)
-
-