-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbatch_run.py
70 lines (58 loc) · 2.09 KB
/
batch_run.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
"""
This script is used to manually run a set of dates. Under normal circumstances
you shouldn't need to use this script, but in the event that bad data is encountered
by the GHA runs, or if the GHA runs get disabled for a period of time and a bunch of
data needs to be generated, this script can be used to fill those holes.
"""
import datetime
import json
import logging
import sys
import run
import os
log_config_path = os.path.join(os.path.dirname(__file__), 'config', 'logging.config')
logging.config.fileConfig(log_config_path)
LOGGER = logging.getLogger(__name__)
class BulkRun():
def __init__(self, min_date, max_date, sat):
self.min_date = min_date
self.max_date = max_date
self.sat = sat
def get_date_list(self):
"""
get a list of dates between the min and max date, will include the min and
the max dates in the list
"""
date_list = []
delta = max_date - min_date
for i in range(delta.days + 1):
day = min_date + datetime.timedelta(days=i)
date_list.append(day)
return date_list
def do_run(self):
date_list = self.get_date_list()
for date in date_list:
LOGGER.info(f"calling the running date: {date}")
# do the run here
self.run_date(date)
def run_date(self, date):
"""
run the date
"""
LOGGER.info(f"running date: {date}")
datestr = date.strftime("%Y.%m.%d")
LOGGER.info(f'running download for date: {datestr}')
run.down_load(sat=self.sat, date=datestr)
LOGGER.info(f'running process for date: {datestr}')
run.pro_cess(sat=self.sat, date=datestr, days=5)
LOGGER.info(f'running plot for date: {datestr}')
run.p_lot(sat=self.sat, date=datestr)
if __name__ == '__main__':
# the range of dates to run
min_date = datetime.datetime(2024, 5, 18)
max_date = datetime.datetime(2024, 6, 1)
sat = 'viirs'
br = BulkRun(min_date, max_date, sat)
date_list = br.get_date_list()
LOGGER.info(f"running dates: {date_list}")
br.do_run()