Skip to content

Commit

Permalink
min_req cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
vrx- committed Mar 5, 2025
1 parent e6deeea commit b45bbc9
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions src/Applications/UMD_Etc/UMD_utils/ocean_obs.py
Original file line number Diff line number Diff line change
Expand Up @@ -1295,14 +1295,13 @@ def cs2_hice(list_of_obs):
fh.write(str(nobs)+'\n')

# check to make sure minimum observation types are in gmao- file
# instrument check (i.e. ARGO) follows below
ominreq=[3073, 5521, 5351] #Tz, Sz, ADT
# ominreq=[3073, 5351] #Tz, ADT
# ominreq=[3073] #Tz,
# ominreq[3073, 5521] #Tz, Sz
# ominreq=[5351] #ADT

for oid in ominreq:
minreq=[3073, 5521, 5351] #Tz, Sz, ADT
# minreq=[3073, 5351] #Tz, ADT
# minreq=[3073] #Tz,
# minreq[3073, 5521] #Tz, Sz
# minreq=[5351] #ADT

for oid in minreq:
if oid in typ:
print("Yes,found in List : ",oid, inv_dict(obsid_dict, oid))
else:
Expand Down

0 comments on commit b45bbc9

Please sign in to comment.