-
Notifications
You must be signed in to change notification settings - Fork 11
Feature/paramid normalisation mode #188
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -35,6 +35,14 @@ namespace metkit { | |||||||||||||||
|
|
||||||||||||||||
| //---------------------------------------------------------------------------------------------------------------------- | ||||||||||||||||
|
|
||||||||||||||||
| enum class NormalisationMode { | ||||||||||||||||
| Strict, // Exact match + wind conversion | ||||||||||||||||
| Loose, // Strict + partial match (dropping tables defined in param-matching.yaml) | ||||||||||||||||
| FullTableDropping | ||||||||||||||||
|
Comment on lines
+39
to
+41
|
||||||||||||||||
| Strict, // Exact match + wind conversion | |
| Loose, // Strict + partial match (dropping tables defined in param-matching.yaml) | |
| FullTableDropping | |
| Strict, // Exact match only (no partial table expansion) + wind conversion | |
| Loose, // GRIB1-style/value-based matching with partial table expansion from param-matching.yaml + | |
| // wind conversion | |
| FullTableDropping // GRIB1-style/value-based matching with full configured table dropping + wind conversion |
Uh oh!
There was an error while loading. Please reload this page.