Skip to content
This repository was archived by the owner on Sep 1, 2022. It is now read-only.

Update various grib 1/2 tables #963

Merged
merged 4 commits into from
Dec 2, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
import java.util.*;

/**
* The purpose of this class is to read in the files from ECMWFs gribapi software and
* The purpose of this class is to read in the files from ECMWFs ecCodes software and
* create useful grib 1 tables for the CDM. Note that the intent is to process these
* local concept files as minimally as possible. Only run this from the git directory.
* This is run offline
Expand Down Expand Up @@ -81,7 +81,7 @@ public EcmwfLocalConcepts() {
sourcesPath = classPath.split(split)[0];
sourcesPath = classPath.split("/grib")[0];
}
ecmwfLocalConceptsLoc = sourcesPath+sep+"grib"+sep+"src"+sep+"main"+sep+"sources"+sep+"ecmwfGribApi"+sep;
ecmwfLocalConceptsLoc = sourcesPath+sep+"grib"+sep+"src"+sep+"main"+sep+"sources"+sep+"ecmwfEcCodes"+sep;
// initialize input streams for reading the localConcept files
try {
parseLocalConcept(ecmwfLocalConceptsLoc + "shortName.def", SHORTNAME_ID);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ else if (name.endsWith(".dss"))
else if (name.endsWith(".xml"))
readParameterTableXml(new DssParser(Namespace.NO_NAMESPACE));// NCAR DSS XML format
else if (name.startsWith("2.98"))
readParameterTableEcmwfGribApi(); // ecmwf from grib api package
readParameterTableEcmwfEcCodes(); // ecmwf from ecCodes package
else
logger.warn("Dont know how to read " + name + " file=" + path);
return parameters;
Expand Down Expand Up @@ -407,7 +407,7 @@ private boolean readParameterTableEcmwf() {
* <p/>
* The original localConcepts files are located in:
* <p/>
* grib/src/main/sources/ecmwfGribApi/
* grib/src/main/sources/ecmwfEcCodes/
* <p/>
* Since we write the table file that are ultimately read by CDM, the
* format is controled and is the following:
Expand All @@ -418,7 +418,7 @@ private boolean readParameterTableEcmwf() {
* <p/>
* 251 atte [Adiabatic tendency of temperature] (K)
*/
private boolean readParameterTableEcmwfGribApi() {
private boolean readParameterTableEcmwfEcCodes() {
HashMap<Integer, Grib1Parameter> result = new HashMap<>();

try (InputStream is = GribResourceReader.getInputStream(path)) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public class Grib1ParamTables {
try {
standardLookup = new Lookup();
standardLookup.readLookupTable("resources/grib1/lookupTables.txt");
standardLookup.readLookupTable("resources/grib1/ecmwfGribApi/lookupTables.txt");
standardLookup.readLookupTable("resources/grib1/ecmwfEcCodes/lookupTables.txt");
standardLookup.readLookupTable("resources/grib1/ecmwf/lookupTables.txt");
standardLookup.readLookupTable("resources/grib1/ncl/lookupTables.txt");
standardLookup.readLookupTable("resources/grib1/dss/lookupTables.txt");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
*/
public class NcepLocalTables extends LocalTables {
static private final org.slf4j.Logger logger = org.slf4j.LoggerFactory.getLogger(NcepLocalTables.class);
static private final String defaultResourcePath = "resources/grib2/ncep/v17.0.0/";
static private final String defaultResourcePath = "resources/grib2/ncep/v20.0.0/";
private static NcepLocalTables single;

public static Grib2Customizer getCust(Grib2Table table) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,20 +53,20 @@

public class WmoCodeTable implements Comparable<WmoCodeTable> {
static private final org.slf4j.Logger logger = org.slf4j.LoggerFactory.getLogger(WmoCodeTable.class);
static public final Version standard = Version.GRIB2_18_0_0;
static public final Version standard = Version.GRIB2_20_0_0;

public enum Version {
// GRIB2_10_0_1, GRIB2_8_0_0, GRIB2_7_0_0, GRIB2_6_0_1, GRIB2_5_2_0, GRIB2_13_0_1;
GRIB2_18_0_0;
GRIB2_20_0_0;

String getResourceName() {
return "/resources/grib2/wmo/" + this.name() + "_CodeFlag_en.xml";
}

String[] getElemNames() {

if (this == GRIB2_18_0_0)
return new String[]{"GRIB2_18_0_0_CodeFlag_en", "Title_en", "SubTitle_en", "MeaningParameterDescription_en", "UnitComments_en"};
if (this == GRIB2_20_0_0)
return new String[]{"GRIB2_20_0_0_CodeFlag_en", "Title_en", "SubTitle_en", "MeaningParameterDescription_en", "UnitComments_en"};

return null;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,20 +51,20 @@
public class WmoTemplateTable implements Comparable<WmoTemplateTable> {
static private org.slf4j.Logger logger = org.slf4j.LoggerFactory.getLogger(WmoTemplateTable.class);

public static final Version standard = Version.GRIB2_18_0_0;
public static final Version standard = Version.GRIB2_20_0_0;

public enum Version {
// GRIB2_5_2_0, GRIB2_6_0_1, GRIB2_7_0_0, GRIB2_8_0_0, GRIB2_10_0_1, GRIB2_13_0_1;
GRIB2_18_0_0;
GRIB2_20_0_0;

String getResourceName() {
return "/resources/grib2/wmo/" + this.name() + "_Template_en.xml";
}

String[] getElemNames() {

if (this == GRIB2_18_0_0)
return new String[]{"GRIB2_18_0_0_Template_en", "Title_en", "Note_en", "Contents_en"};
if (this == GRIB2_20_0_0)
return new String[]{"GRIB2_20_0_0_Template_en", "Title_en", "Note_en", "Contents_en"};

return null;
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2014-12-23T15:16:25MST
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2017-12-01T15:26:28MST
230 inss [Instantaneous northward turbulent surface stress] (N m**-2)
110 ~ [Experimental product] (~)
231 ishf [Instantaneous surface sensible heat flux] (W m**-2)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2014-12-23T15:16:25MST
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2017-12-01T15:26:28MST
230 inssgrd [Instantaneous Y surface stress gradient] (N m**-2)
110 ~ [Experimental product] (~)
231 ishfgrd [Instantaneous surface heat flux gradient] (J m**-2)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2014-12-23T15:16:25MST
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2017-12-01T15:26:28MST
230 atzw [Adiabatic tendency of zonal wind] (m**2 s**-3)
231 atmwax [Adiabatic tendency of meridional wind] (m**2 s**-3)
210 tsuc [Top solar radiation upward, clear sky] (J m**-2)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2014-12-23T15:16:25MST
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2017-12-01T15:26:28MST
88 tpg300 [Total precipitation of at least 300 mm] (%)
89 pts [Probability of a tropical storm] (%)
49 10gp [10 metre wind gust probability] (%)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2014-12-23T15:16:25MST
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2017-12-01T15:26:28MST
165 10wsi [10 metre speed index] ((-1 to 1))
144 sfi [Snowfall index] ((-1 to 1))
255 ~ [Indicates a missing value] (~)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2014-12-23T15:16:25MST
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2017-12-01T15:26:28MST
44 sfpg10 [Snowfall probability of at least 10 mm] (%)
88 lccpg60 [Low Cloud Cover probability greater than 60%] (%)
45 sfpg20 [Snowfall probability of at least 20 mm] (%)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2014-12-23T15:16:25MST
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2017-12-01T15:26:28MST
230 mwd [Mean wave direction] (degrees)
231 pp1d [Peak period of 1D spectra] (s)
232 mwp [Mean wave period] (s)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2014-12-23T15:16:25MST
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2017-12-01T15:26:28MST
170 ~ [Turbulent kinetic energy input] (~)
171 nsf [Net surface heat flux] (~)
172 ~ [Surface solar radiation] (~)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2014-12-23T15:16:25MST
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2017-12-01T15:26:28MST
190 subi [Salinity increment (from salinity data)] (psu per time step)
191 sale [Salinity analysis error] (psu)
192 bsal [Background Salinity] (psu)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2014-12-23T15:16:25MST
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2017-12-01T15:26:28MST
190 ewov [East-West component of sub-gridscale orographic variance] (m**2)
191 nsov [North-South component of sub-gridscale orographic variance] (m**2)
192 nwov [North-West/South-East component of sub-gridscale orographic variance] (m**2)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2014-12-23T15:16:25MST
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2017-12-01T15:26:28MST
88 vilwe [Vertical integral of eastward cloud liquid water flux] (kg m**-1 s**-1)
89 vilwn [Vertical integral of northward cloud liquid water flux] (kg m**-1 s**-1)
230 ~ [Covariance of u component/ozone] (m s**-1)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2014-12-23T15:16:25MST
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2017-12-01T15:26:28MST
171 swl2 [Soil wetness level 2] (m)
151 msl [Mean sea level pressure] (Pa)
130 t [Temperature] (K)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2014-12-23T15:16:25MST
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2017-12-01T15:26:28MST
190 ewova [East-West component of sub-gridscale orographic variance anomaly] (m**2)
191 nsova [North-South component of sub-gridscale orographic variance anomaly] (m**2)
192 nwova [North-West/South-East component of sub-gridscale orographic variance anomaly] (m**2)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2014-12-23T15:16:25MST
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2017-12-01T15:26:28MST
44 esrate [Snow evaporation] (m of water s**-1)
45 ~ [Snowmelt] (m of water s**-1)
48 ~ [Magnitude of surface stress] (N m**-2)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2014-12-23T15:16:25MST
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2017-12-01T15:26:28MST
44 ~ [Snow evaporation anomaly] (m of water s**-1)
45 ~ [Snowmelt anomaly] (m of water s**-1)
48 ~ [Magnitude of surface stress anomaly] (N m**-2)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2014-12-23T15:16:25MST
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2017-12-01T15:26:28MST
88 ~ [1.5m dewpoint temperature over land] (K)
89 ~ [Top incoming solar radiation] (J m**-2)
49 ~ [10 metre wind gust in the last 24 hours] (m s**-1)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2014-12-23T15:16:25MST
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2017-12-01T15:26:28MST
88 ~ [1.5m dewpoint temperature over land] (K)
89 ~ [Top incoming solar radiation] (J m**-2)
49 ~ [10m wind gust in the last 24 hours] (m s**-1)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2014-12-23T15:16:25MST
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2017-12-01T15:26:28MST
172 lsm [Land-sea mask] ((0 - 1))
151 msl [Mean sea level pressure] (Pa)
130 t [Temperature] (K)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2014-12-23T15:16:25MST
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2017-12-01T15:26:28MST
170 cap [Field capacity] ((0 - 1))
171 wiltsien [Wilting point] ((0 - 1))
172 lsm [Land-sea mask] ((0 - 1))
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2014-12-23T15:16:25MST
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2017-12-01T15:26:28MST
230 inssdiff [Instantaneous Y surface stress difference] (N m**-2)
110 ~ [Experimental product] (~)
231 ishfdiff [Instantaneous surface heat flux difference] (J m**-2)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2014-12-23T15:16:25MST
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2017-12-01T15:26:28MST
150 ~ [coefficient of horizontal diffusion] (m**2 s**-1)
111 prr_con [surface precipitation rate, rain, convective] (kg s**-1 m**-2)
112 prs_con [surface precipitation rate, snow, convective] (kg s**-1 m**-2)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2014-12-23T15:16:25MST
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2017-12-01T15:26:28MST
230 aod2130 [Total aerosol optical depth at 2130 nm] (~)
231 c7h8fire [Wildfire Flux of Toluene (C7H8)] (kg m**-2 s**-1)
110 toluenefire [Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10)] (kg m**-2 s**-1)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2014-12-23T15:16:25MST
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2017-12-01T15:26:28MST
88 tpmfirediff [Wildfire flux of Total Particulate Matter] (kg m**-2 s**-1)
89 tcfirediff [Wildfire flux of Total Carbon in Aerosols] (kg m**-2 s**-1)
110 toluenefirediff [Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10)] (kg m**-2 s**-1)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2014-12-23T15:16:25MST
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2017-12-01T15:26:28MST
230 ~ [Experimental product] (~)
110 ~ [Experimental product] (~)
231 ~ [Experimental product] (~)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2014-12-23T15:16:25MST
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2017-12-01T15:26:28MST
1 sppt1 [Random pattern 1 for sppt] (dimensionless)
2 sppt2 [Random pattern 2 for sppt] (dimensionless)
3 sppt3 [Random pattern 3 for sppt] (dimensionless)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2014-12-23T15:16:25MST
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2017-12-01T15:26:28MST
44 uvsflxcs360365 [Clear-sky surface UV spectral flux (360-365 nm)] (W m**-2)
45 uvsflxcs365370 [Clear-sky surface UV spectral flux (365-370 nm)] (W m**-2)
46 uvsflxcs370375 [Clear-sky surface UV spectral flux (370-375 nm)] (W m**-2)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2014-12-23T15:16:25MST
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2017-12-01T15:26:28MST
88 aerodsu [Sulphate aerosol optical depth] (~)
89 accaod550 [Accumulated total aerosol optical depth at 550 nm] (s)
110 aodabs1020 [Total absorption aerosol optical depth at 1020 nm] (~)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2014-12-23T15:16:25MST
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2017-12-01T15:26:28MST
230 ~ [Experimental product] (~)
110 ~ [Experimental product] (~)
231 ~ [Experimental product] (~)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2014-12-23T15:16:25MST
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2017-12-01T15:26:28MST
44 mcooh [Methacrylic acid] (kg kg**-1)
45 c2h6 [Ethane] (kg kg**-1)
46 c2h5oh [Ethanol] (kg kg**-1)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2014-12-23T15:16:25MST
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2017-12-01T15:26:28MST
44 tc_mcooh [Total column methacrylic acid] (kg m**-2)
45 tc_c2h6 [Total column ethane] (kg m**-2)
46 tc_c2h5oh [Total column ethanol] (kg m**-2)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2014-12-23T15:16:25MST
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2017-12-01T15:26:28MST
44 e_mcooh [Methacrylic acid emissions] (kg m**-2)
45 e_c2h6 [Ethane emissions] (kg m**-2)
46 e_c2h5oh [Ethanol emissions] (kg m**-2)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2014-12-23T15:16:25MST
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2017-12-01T15:26:28MST
228 tpoc [Total precipitation observation count] (dimensionless)
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2014-12-23T15:16:25MST
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2017-12-01T15:26:28MST
44 dv_mcooh [Methacrylic acid deposition velocity] (m s**-1)
45 dv_c2h6 [Ethane deposition velocity] (m s**-1)
46 dv_c2h5oh [Ethanol deposition velocity] (m s**-1)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2014-12-23T15:16:25MST
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2017-12-01T15:26:28MST
88 tcslw [Total column supercooled liquid water] (kg m**-2)
89 tcrw [Total column rain water] (kg m**-2)
230 smos_tb_cdfb [SMOS second Brightness Temperature Bias Correction parameter] (dimensionless)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2014-12-23T15:16:25MST
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2017-12-01T15:26:28MST
22 cdirvar [Clear-sky direct solar radiation at surface (variable resolution)] (J m**-2)
44 esvar [Snow evaporation (variable resolution)] (kg m**-2)
45 smltvar [Snowmelt (variable resolution)] (kg m**-2)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2014-12-23T15:16:25MST
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2017-12-01T15:26:28MST
167 2ts [2 metre temperature significance] (%)
139 sts [Surface temperature significance] (%)
228 tps [Total precipitation significance] (%)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2014-12-23T15:16:25MST
# Generated by ucar.nc2.grib.grib1.tables.EcmwfLocalConcepts on 2017-12-01T15:26:28MST
98: -1: 128: 2.98.128.table
98: -1: 129: 2.98.129.table
98: -1: 130: 2.98.130.table
Expand Down
Loading