-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Per #3006, committing changes since the code is compiling. Added IODA…
…DataConfig_default file to store default settings for reading IODA data.
- Loading branch information
1 parent
ac43a80
commit 9ae08da
Showing
9 changed files
with
225 additions
and
288 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
//////////////////////////////////////////////////////////////////////////////// | ||
// | ||
// IODA Data configuration file. | ||
// | ||
// For additional information, please see the MET User's Guide. | ||
// | ||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
// | ||
// Mapping of input IODA variable names to output variables names. | ||
// The default IODA map, obs_var_map, is appended to this map. | ||
// | ||
obs_name_map = []; | ||
|
||
// | ||
// Default mapping for Metadata. | ||
// | ||
metadata_map = [ | ||
{ key = "message_type"; val = "msg_type,station_ob"; }, | ||
{ key = "station_id"; val = "station_id,report_identifier"; }, | ||
{ key = "pressure"; val = "air_pressure,pressure"; }, | ||
{ key = "height"; val = "height,height_above_mean_sea_level"; }, | ||
{ key = "datetime"; val = "datetime,dateTime"; }, | ||
{ key = "elevation"; val = "elevation,station_elevation"; }, | ||
{ key = "nlocs"; val = "Location"; } | ||
]; | ||
|
||
// | ||
// Default mapping for obs to qc. | ||
// | ||
obs_to_qc_map = [ | ||
{ key = "wind_from_direction"; val = "eastward_wind,northward_wind"; }, | ||
{ key = "wind_speed"; val = "eastward_wind,northward_wind"; } | ||
]; | ||
|
||
missing_thresh = [ <=-1e9, >=1e9, ==-9999 ]; | ||
|
||
//////////////////////////////////////////////////////////////////////////////// |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.