Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
JeremyGrajeda authored Sep 11, 2024
1 parent 717741e commit 6db7809
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DatasetTools/DownloadByRotation.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,10 +148,10 @@

# Generate Query to get Record Time and QUALITY information
AIAquery = client.query(AIArequest,seg=AIAsegment,key=reckeys)
HMIquery = client.query(AIArequest,seg=AIAsegment,key=reckeys.split(', ')[1])
HMIquery = client.query(HMIrequest,seg=HMIsegment,key=reckeys)
T_REC = AIAquery[0][reckeys.split(', ')[0]][0]
QUALITY = AIAquery[0][reckeys.split(', ')[1]]
QUALITY = np.hstack([QUALITY,HMIquery[0][reckeys.split(', ')[1]][0]])
QUALITY = np.hstack([QUALITY,HMIquery[0][reckeys.split(', ')[1]]])

# Download if Data are of Expected Quality and Exist
if len(QUALITY) == ttlFiles and np.max(QUALITY) == 0:
Expand Down

0 comments on commit 6db7809

Please sign in to comment.