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

rdrgen: support j01

parent ea321929
No related branches found
No related tags found
No related merge requests found
......@@ -639,7 +639,7 @@ def make_rdr_filename(rdr_types, sat, aggr_begin, aggr_end, orbit_num, creation_
aggr_begin = iet_to_datetime(aggr_begin)
aggr_end = iet_to_datetime(aggr_end)
prod_ids = '-'.join(sorted(t.product_id for t in rdr_types))
sat = {'snpp': 'npp'}[sat]
sat = {'snpp': 'npp', 'j01': 'j01'}[sat]
if origin.endswith('-'):
origin = origin[:-1] + ('c' if compressed else 'u')
......@@ -698,6 +698,12 @@ def get_overlapping_granules(sat, gran_len, start_iet, stop_iet):
return rv
satellite_base_times = {'snpp': 1698019234000000}
platform_short_names = {'snpp': 'NPP'}
satellite_base_times = {
'snpp': 1698019234000000,
'j01': 1698019234000000,
}
platform_short_names = {
'snpp': 'NPP',
'j01': 'J01',
}
instrument_short_names = {'viirs': 'VIIRS', 'cris': 'CrIS', 'atms': 'ATMS', None: 'SPACECRAFT'}
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