Skip to content
Open
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
2 changes: 1 addition & 1 deletion share/metkit/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
list( APPEND files language.yaml modifiers.yaml reportype.yaml obstype.yaml paramids.yaml params.yaml params-static.yaml param-matching.yaml chemids.yaml bufr-subtypes.yaml axis.yaml shortname-context.yaml )
list( APPEND files language.yaml modifiers.yaml reportype.yaml obstype.yaml paramids.yaml params.yaml params-static.yaml param-matching.yaml params.bin chemids.yaml bufr-subtypes.yaml axis.yaml shortname-context.yaml )

foreach( _file ${files} )

Expand Down
6 changes: 1 addition & 5 deletions share/metkit/params-static.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,6 @@
- 155
- 210181
- 217009
- - class: od
levtype: sfc
stream: oper
type: fc
- - 3100
- - class: od
levtype: sfc
stream: enfo
Expand Down Expand Up @@ -230,6 +225,7 @@
- 163
- 3062
- 3099
- 3100
- 160198
- 228032
- 228143
Expand Down
Binary file added share/metkit/params.bin
Binary file not shown.
3 changes: 3 additions & 0 deletions src/metkit/config/LibMetkit.cc
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,9 @@ eckit::PathName LibMetkit::shortnameContextYamlFile() {
eckit::PathName LibMetkit::paramIDYamlFile() {
return LibMetkit::configFile("paramids.yaml");
}
eckit::PathName LibMetkit::paramsBinaryFile() {
return LibMetkit::configFile("params.bin");
}
eckit::PathName LibMetkit::paramMatchingYamlFile() {
return LibMetkit::configFile("param-matching.yaml");
}
Expand Down
1 change: 1 addition & 0 deletions src/metkit/config/LibMetkit.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ class LibMetkit : public eckit::system::Library {
static eckit::PathName paramYamlFile();
static eckit::PathName paramStaticYamlFile();
static eckit::PathName paramIDYamlFile();
static eckit::PathName paramsBinaryFile();
static eckit::PathName paramMatchingYamlFile();
static eckit::PathName shortnameContextYamlFile();
static eckit::PathName bufrSubtypesYamlFile();
Expand Down
Loading
Loading