-
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.
Browse files
Browse the repository at this point in the history
Co-authored-by: John Halley Gotway <johnhg@ucar.edu> Co-authored-by: Seth Linden <linden@seneca.rap.ucar.edu> Co-authored-by: jprestop <jpresto@ucar.edu> Co-authored-by: Daniel Adriaansen <dadriaan@ucar.edu> Co-authored-by: John and Cindy <halleygotway@Halleys-Mac-mini.local> Co-authored-by: Howard Soh <hsoh@seneca.rap.ucar.edu> Co-authored-by: George McCabe <23407799+georgemccabe@users.noreply.github.com> Co-authored-by: hsoh-u <hsoh@ucar.edu> Co-authored-by: MET Tools Test Account <met_test@seneca.rap.ucar.edu> Co-authored-by: Seth Linden <linden@ucar.edu> Co-authored-by: lisagoodrich <33230218+lisagoodrich@users.noreply.github.com> Co-authored-by: davidalbo <dave@ucar.edu> Co-authored-by: Lisa Goodrich <lisag@ucar.edu> Co-authored-by: metplus-bot <97135045+metplus-bot@users.noreply.github.com> Co-authored-by: j-opatz <59586397+j-opatz@users.noreply.github.com> Fix Python environment issue (#2407) fix definitions of G172 and G220 based on comments in NOAA-EMC/NCEPLIBS-w3emc#157. (#2406) fix #2380 develop override (#2382) fix #2408 develop empty config (#2410) fix #2390 develop compile zlib (#2404) fix #2412 develop climo (#2422) fix #2437 develop convert (#2439) fix for develop, for #2437, forgot one reference to the search_parent for a dictionary lookup. fix #2452 develop airnow (#2454) fix #2449 develop pdf (#2464) fix #2402 develop sonarqube (#2468) fix #2426 develop buoy (#2475) fix 2518 dtypes appf docs (#2519) fix 2531 compilation errors (#2533) fix #2531 compilation_errors_configure (#2535)
- Loading branch information
1 parent
7b144f6
commit e7cd0e3
Showing
71 changed files
with
5,731 additions
and
277 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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,150 @@ | ||
//////////////////////////////////////////////////////////////////////////////// | ||
// | ||
// TC-Diag configuration file. | ||
// | ||
// For additional information, please see the MET User's Guide. | ||
// | ||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
// | ||
// Filter input track data lines. | ||
// | ||
|
||
// | ||
// Model | ||
// | ||
model = []; | ||
|
||
// | ||
// Storm identifier | ||
// | ||
storm_id = ""; | ||
|
||
// | ||
// Basin | ||
// | ||
basin = ""; | ||
|
||
// | ||
// Cyclone number | ||
// | ||
cyclone = ""; | ||
|
||
// | ||
// Model initialization time | ||
// | ||
init_inc = ""; | ||
|
||
// | ||
// Subset by the valid time | ||
// | ||
valid_beg = ""; | ||
valid_end = ""; | ||
valid_inc = []; | ||
valid_exc = []; | ||
|
||
// | ||
// Subset by the valid hour and lead time. | ||
// | ||
valid_hour = []; | ||
lead = []; | ||
|
||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
// | ||
// Python diagnostic scripts to be run | ||
// May be set separately in each "domain_info" entry | ||
// | ||
diag_script = [ "MET_BASE/python/tc_diag/compute_tc_diagnostics.py" ]; | ||
|
||
// | ||
// Domain-specific cylindrical coordinate transformation | ||
// | ||
domain_info = [ | ||
{ | ||
domain = "parent"; | ||
n_range = 150; | ||
n_azimuth = 8; | ||
delta_range_km = 10.0; | ||
}, | ||
{ | ||
domain = "nest"; | ||
n_range = 150; | ||
n_azimuth = 8; | ||
delta_range_km = 2.0; | ||
} | ||
]; | ||
|
||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
// | ||
// Data censoring and conversion | ||
// May be set separately in each diag_data "field" entry | ||
// | ||
// censor_thresh = []; | ||
// censor_val = []; | ||
// convert(x) = x; | ||
// | ||
|
||
// | ||
// Data fields | ||
// | ||
data = { | ||
|
||
// If empty, the field is processed for all domains | ||
domain = []; | ||
|
||
// Pressure levels to be used, unless overridden below | ||
level = [ "P1000", "P925", "P850", "P700", "P500", | ||
"P400", "P300", "P250", "P200", "P150", | ||
"P100" ]; | ||
|
||
field = [ | ||
{ name = "TMP"; }, | ||
{ name = "UGRD"; }, | ||
{ name = "VGRD"; }, | ||
{ name = "RH"; }, | ||
{ name = "HGT"; }, | ||
{ name = "PRMSL"; level = "Z0"; }, | ||
{ name = "PWAT"; level = "L0"; }, | ||
{ name = "TMP"; level = "Z0"; }, | ||
{ name = "TMP"; level = "Z2"; }, | ||
{ name = "RH"; level = "Z2"; }, | ||
{ name = "UGRD"; level = "Z10"; }, | ||
{ name = "VGRD"; level = "Z10"; } | ||
]; | ||
} | ||
|
||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
// | ||
// Regridding options | ||
// | ||
regrid = { | ||
method = NEAREST; | ||
width = 1; | ||
vld_thresh = 0.5; | ||
shape = SQUARE; | ||
} | ||
|
||
// | ||
// Vortex removal flag | ||
// | ||
vortex_removal = FALSE; | ||
|
||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
// | ||
// Flags to control output files | ||
// | ||
nc_rng_azi_flag = TRUE; | ||
nc_diag_flag = FALSE; | ||
cira_diag_flag = FALSE; | ||
|
||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
tmp_dir = "/tmp"; | ||
output_prefix = ""; | ||
version = "V11.1.0"; | ||
|
||
//////////////////////////////////////////////////////////////////////////////// |
Oops, something went wrong.