Skip to content

Commit

Permalink
Per #2168, this is not the real solution but just a placeholder for t…
Browse files Browse the repository at this point in the history
…he logic of the TC diagnostics computation scripts.
  • Loading branch information
JohnHalleyGotway committed Jun 2, 2023
1 parent 12242b1 commit 3d5f4ae
Showing 1 changed file with 150 additions and 2 deletions.
152 changes: 150 additions & 2 deletions scripts/python/tc_diag/compute_tc_diagnostics.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,156 @@

# Diagnostics dictionary
tc_diag = {
'Test100': 100,
'Test200': 200
'MAXWIND': 9999,
'RMW': 9999,
'MIN_SLP': 9999,
'SHR_MAG': 9999,
'SHR_HDG': 9999,
'STM_SPD': 9999,
'STM_HDG': 9999,
'SST': 9999,
'OHC': 9999,
'TPW': 9999,
'LAND': 9999,
'850TANG': 9999,
'850VORT': 9999,
'200DVRG': 9999,
'T_SURF': 9999,
'R_SURF': 9999,
'P_SURF': 9999,
'U_SURF': 9999,
'V_SURF': 9999,
'T_1000': 9999,
'R_1000': 9999,
'Z_1000': 9999,
'U_1000': 9999,
'V_1000': 9999,
'T_0975': 9999,
'R_0975': 9999,
'Z_0975': 9999,
'U_0975': 9999,
'V_0975': 9999,
'T_0950': 9999,
'R_0950': 9999,
'Z_0950': 9999,
'U_0950': 9999,
'V_0950': 9999,
'T_0925': 9999,
'R_0925': 9999,
'Z_0925': 9999,
'U_0925': 9999,
'V_0925': 9999,
'T_0900': 9999,
'R_0900': 9999,
'Z_0900': 9999,
'U_0900': 9999,
'V_0900': 9999,
'T_0850': 9999,
'R_0850': 9999,
'Z_0850': 9999,
'U_0850': 9999,
'V_0850': 9999,
'T_0800': 9999,
'R_0800': 9999,
'Z_0800': 9999,
'U_0800': 9999,
'V_0800': 9999,
'T_0750': 9999,
'R_0750': 9999,
'Z_0750': 9999,
'U_0750': 9999,
'V_0750': 9999,
'T_0700': 9999,
'R_0700': 9999,
'Z_0700': 9999,
'U_0700': 9999,
'V_0700': 9999,
'T_0650': 9999,
'R_0650': 9999,
'Z_0650': 9999,
'U_0650': 9999,
'V_0650': 9999,
'T_0600': 9999,
'R_0600': 9999,
'Z_0600': 9999,
'U_0600': 9999,
'V_0600': 9999,
'T_0550': 9999,
'R_0550': 9999,
'Z_0550': 9999,
'U_0550': 9999,
'V_0550': 9999,
'T_0500': 9999,
'R_0500': 9999,
'Z_0500': 9999,
'U_0500': 9999,
'V_0500': 9999,
'T_0450': 9999,
'R_0450': 9999,
'Z_0450': 9999,
'U_0450': 9999,
'V_0450': 9999,
'T_0400': 9999,
'R_0400': 9999,
'Z_0400': 9999,
'U_0400': 9999,
'V_0400': 9999,
'T_0350': 9999,
'R_0350': 9999,
'Z_0350': 9999,
'U_0350': 9999,
'V_0350': 9999,
'T_0300': 9999,
'R_0300': 9999,
'Z_0300': 9999,
'U_0300': 9999,
'V_0300': 9999,
'T_0250': 9999,
'R_0250': 9999,
'Z_0250': 9999,
'U_0250': 9999,
'V_0250': 9999,
'T_0200': 9999,
'R_0200': 9999,
'Z_0200': 9999,
'U_0200': 9999,
'V_0200': 9999,
'T_0150': 9999,
'R_0150': 9999,
'Z_0150': 9999,
'U_0150': 9999,
'V_0150': 9999,
'T_0100': 9999,
'R_0100': 9999,
'Z_0100': 9999,
'U_0100': 9999,
'V_0100': 9999,
'T_0070': 9999,
'R_0070': 9999,
'Z_0070': 9999,
'U_0070': 9999,
'V_0070': 9999,
'T_0050': 9999,
'R_0050': 9999,
'Z_0050': 9999,
'U_0050': 9999,
'V_0050': 9999,
'T_0030': 9999,
'R_0030': 9999,
'Z_0030': 9999,
'U_0030': 9999,
'V_0030': 9999,
'T_0020': 9999,
'R_0020': 9999,
'Z_0020': 9999,
'U_0020': 9999,
'V_0020': 9999,
'T_0010': 9999,
'R_0010': 9999,
'Z_0010': 9999,
'U_0010': 9999,
'V_0010': 9999,
'TGRD': 9999
}

print("Diagnostics:\t" + repr(tc_diag))

0 comments on commit 3d5f4ae

Please sign in to comment.