Allow multiple CSV files; rename nexrad.archive.Archive methods

This commit is contained in:
XANTRONIX Industrial 2025-02-13 12:19:06 -05:00
parent a6e785281b
commit e5b24d5d71
2 changed files with 21 additions and 20 deletions

View file

@ -14,7 +14,7 @@ parser = argparse.ArgumentParser(
parser.add_argument('--quiet', action='store_true', help='Suppress output')
parser.add_argument('--dry-run', action='store_true', help='Do not actually archive data')
parser.add_argument('db', help='SQLite3 NEXRAD radar site database')
parser.add_argument('csv-report-details', help='Compressed storm report details CSV file')
parser.add_argument('csv-report-details', nargs='+', help='Compressed storm report details CSV file')
parser.add_argument('archive-dir', help='Target archive directory')
args = parser.parse_args()
@ -25,24 +25,25 @@ archive = Archive(getattr(args, 'archive-dir'), bucket)
i = 0
for report in StormReport.each_from_csv_file(getattr(args, 'csv-report-details')):
i += 1
for path in getattr(args, 'csv-report-details'):
for report in StormReport.each_from_csv_file(path):
i += 1
if not report.is_radar_significant():
continue
if not report.is_radar_significant():
continue
radars = report.nearby_radars(db)
radars = report.nearby_radars(db)
for key in bucket.each_matching_key(radars, report.timestamp_start, report.timestamp_end):
if archive.is_archived(key):
if not args.quiet:
print(f"{key} report {i} Already archived")
else:
if not args.quiet:
if args.dry_run:
print(f"{key} report {i} Would archive")
else:
print(f"{key} report {i} Archiving")
for key in bucket.each_matching_key(radars, report.timestamp_start, report.timestamp_end):
if archive.is_downloaded(key):
if not args.quiet:
print(f"{key} report {i} Already archived")
else:
if not args.quiet:
if args.dry_run:
print(f"{key} report {i} Would archive")
else:
print(f"{key} report {i} Archiving")
if not args.dry_run:
archive.archive(key)
if not args.dry_run:
archive.download(key)

View file

@ -10,10 +10,10 @@ class Archive():
self.path = path
self.bucket = bucket
def is_archived(self, key: str):
def is_downloaded(self, key: str):
return os.path.exists(os.path.join(self.path, key))
def archive(self, key: str):
def download(self, key: str):
path = os.path.join(self.path, key)
parent = os.path.dirname(path)