Skip to content
Snippets Groups Projects
Commit 1ad0f96f authored by Bruce Flynn's avatar Bruce Flynn
Browse files

viirs_scan_bytes: Make sure inputs are sorted

parent e1cc9c69
No related branches found
No related tags found
No related merge requests found
......@@ -120,7 +120,7 @@ if __name__ == '__main__':
start, end = utc2tai(args.start), utc2tai(args.end)
destpath = args.start.strftime('viirs_scanbytes_d%Y%m%d_t%H%M%S.nc')
dataset = create_netcdf_file(destpath)
for filepath in [l.strip() for l in args.rdrs]:
for filepath in sorted([l.strip() for l in args.rdrs]):
print "reading", filepath
times, sizes = read_data_from_rdr(filepath, start, end)
......
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