Skip to content
Snippets Groups Projects
Commit 1d643427 authored by tomrink's avatar tomrink
Browse files

snapshot...

parent a7638a80
No related branches found
No related tags found
No related merge requests found
......@@ -9,6 +9,7 @@ import h5py
import datetime
from datetime import timezone
goes_date_format = '%Y%j%H'
import re
goes16_directory = '/arcdata/goes/grb/goes16' # /year/date/abi/L1b/RadC
clavrx_dir = '/apollo/cloud/scratch/ICING/'
......@@ -203,7 +204,10 @@ def analyze(ice_dct, no_ice_dct):
sidxs = np.argsort(times)
for i in sidxs:
print(files[i])
filename = os.path.split(files[i])[1]
so = re.search('_s\\d{11}', filename)
dt_str = so.group()
print(dt_str)
def create_file(filename, ds_list, ds_types):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment