Skip to content

Commit

Permalink
ENH: Updating pdf
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamTheisen committed Feb 8, 2024
1 parent f9f590f commit 62ffbfa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion afc_summary.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,11 @@ def get_dqr(ds):
for dqr_number in docs[quality_category]:
for time_range in docs[quality_category][dqr_number]['dates']:
starttime = np.datetime64(time_range['start_date'])
endtime = np.datetime64(time_range['end_date'])
print(time_range['end_date'] , type(time_range['end_date'] ))
if time_range['end_date'] != "None":
endtime = np.datetime64(time_range['end_date'])
else:
endtime = dt.datetime.strptime('3001-01-01', '%Y-%m-%d')

num.append(dqr_number)
sdate.append(starttime)
Expand Down
Binary file modified images/epc/epc_data_avail.pdf
Binary file not shown.

0 comments on commit 62ffbfa

Please sign in to comment.