Skip to content
Snippets Groups Projects
Commit 3e5add22 authored by Cain, Payton David's avatar Cain, Payton David
Browse files

move monitor.py to processing, add typer functionality

parent a27c7688
No related branches found
No related tags found
2 merge requests!146Release CMO metadata to production,!123Poetry
...@@ -3,6 +3,12 @@ ...@@ -3,6 +3,12 @@
"""Monitor """ """Monitor """
from os import path from os import path
import sys import sys
from typing import List
import argparse
import sys
from obspy.core import UTCDateTime
import typer
# ensure geomag is on the path before importing # ensure geomag is on the path before importing
try: try:
...@@ -11,13 +17,14 @@ except ImportError: ...@@ -11,13 +17,14 @@ except ImportError:
script_dir = path.dirname(path.abspath(__file__)) script_dir = path.dirname(path.abspath(__file__))
sys.path.append(path.normpath(path.join(script_dir, ".."))) sys.path.append(path.normpath(path.join(script_dir, "..")))
import argparse
import sys
from obspy.core import UTCDateTime
import geomagio.TimeseriesUtility as TimeseriesUtility import geomagio.TimeseriesUtility as TimeseriesUtility
import geomagio.edge as edge import geomagio.edge as edge
def _main():
typer.run(generate_report)
def calculate_warning_threshold(warning_threshold, interval): def calculate_warning_threshold(warning_threshold, interval):
"""Calculate warning_threshold for the giving interval """Calculate warning_threshold for the giving interval
Parameters Parameters
...@@ -183,28 +190,35 @@ def print_html_header(starttime, endtime, title): ...@@ -183,28 +190,35 @@ def print_html_header(starttime, endtime, title):
) )
def print_observatories(args): def print_observatories(
starttime: UTCDateTime,
endtime: UTCDateTime,
observatories: List[str],
edge_host: str,
channels: List[str],
data_type: str,
gaps_only: bool,
intervals: List[str],
location_code: str,
warning_threshold: int,
):
"""Print all the observatories """Print all the observatories
Parameters
---------
args: dictionary
Holds all the command line arguments. See parse_args
Returns Returns
------- -------
Boolean: if a warning was issued. Boolean: if a warning was issued.
""" """
intervals = args.intervals intervals = intervals
channels = args.channels channels = channels
starttime = args.starttime starttime = starttime
endtime = args.endtime endtime = endtime
host = args.edge_host host = edge_host
table_header = get_table_header() table_header = get_table_header()
warning_issued = False warning_issued = False
table_end = "</tbody>\n" + "</table>\n" table_end = "</tbody>\n" + "</table>\n"
for observatory in args.observatories: for observatory in observatories:
summary_table = "" summary_table = ""
gap_details = "" gap_details = ""
print_it = False print_it = False
...@@ -215,23 +229,21 @@ def print_observatories(args): ...@@ -215,23 +229,21 @@ def print_observatories(args):
host=host, host=host,
port=2060, port=2060,
observatory=observatory, observatory=observatory,
type=args.type, type=data_type,
channels=channels, channels=channels,
locationCode=args.locationcode, locationCode=location_code,
interval=interval, interval=interval,
) )
timeseries = factory.get_timeseries(starttime=starttime, endtime=endtime) timeseries = factory.get_timeseries(starttime=starttime, endtime=endtime)
gaps = TimeseriesUtility.get_stream_gaps(timeseries) gaps = TimeseriesUtility.get_stream_gaps(timeseries)
if args.gaps_only and not has_gaps(gaps): if gaps_only and not has_gaps(gaps):
continue continue
else: else:
print_it = True print_it = True
warning = "" warning = ""
warning_threshold = calculate_warning_threshold( warning_threshold = calculate_warning_threshold(warning_threshold, interval)
args.warning_threshold, interval
)
summary_table += "<tr>" summary_table += "<tr>"
summary_table += '<td style="text-align:center;">' summary_table += '<td style="text-align:center;">'
...@@ -279,6 +291,39 @@ def print_observatories(args): ...@@ -279,6 +291,39 @@ def print_observatories(args):
return warning_issued return warning_issued
def generate_report(
starttime: str,
endtime: str,
observatories: List[str],
edge_host: str = "127.0.0.1",
channels: List[str] = ["H", "E", "Z", "F"],
data_type: str = "variation",
gaps_only: bool = True,
intervals: List[str] = ("minute",),
location_code: str = "R0",
title: str = "",
warning_threshold: int = 60,
):
starttime = UTCDateTime(starttime)
endtime = UTCDateTime(endtime)
print_html_header(starttime=starttime, endtime=endtime, title=title)
warning_issued = print_observatories(
starttime=starttime,
endtime=endtime,
observatories=observatories,
edge_host=edge_host,
channels=channels,
data_type=data_type,
gaps_only=gaps_only,
intervals=intervals,
location_code=location_code,
warning_threshold=warning_threshold,
)
print("</body>\n" + "</html>\n")
sys.exit(warning_issued)
def main(args): def main(args):
"""command line tool for building geomag monitoring reports """command line tool for building geomag monitoring reports
...@@ -291,12 +336,19 @@ def main(args): ...@@ -291,12 +336,19 @@ def main(args):
parses command line options using argparse parses command line options using argparse
Output is in HTML. Output is in HTML.
""" """
print_html_header(args.starttime, args.endtime, args.title) generate_report(
starttime=args.starttime,
warning_issued = print_observatories(args) endtime=args.endtime,
print("</body>\n" + "</html>\n") observatories=args.observatories,
edge_host=args.edge_host,
sys.exit(warning_issued) channels=args.channels,
data_type=args.type,
gaps_only=args.gaps_only,
intervals=args.intervals,
location_code=args.locationcode,
title=args.title,
warning_threshold=args.warning_threshold,
)
def parse_args(args): def parse_args(args):
...@@ -318,18 +370,23 @@ def parse_args(args): ...@@ -318,18 +370,23 @@ def parse_args(args):
parser.add_argument( parser.add_argument(
"--starttime", "--starttime",
required=True, required=True,
type=UTCDateTime, type=str,
default=None, default=None,
help="UTC date YYYY-MM-DD HH:MM:SS", help="UTC date YYYY-MM-DD HH:MM:SS",
) )
parser.add_argument( parser.add_argument(
"--endtime", "--endtime",
required=True, required=True,
type=UTCDateTime, type=str,
default=None, default=None,
help="UTC date YYYY-MM-DD HH:MM:SS", help="UTC date YYYY-MM-DD HH:MM:SS",
) )
parser.add_argument("--edge-host", required=True, help="IP/URL for edge connection") parser.add_argument(
"--edge-host",
required=False,
default="127.0.0.1",
help="IP/URL for edge connection",
)
parser.add_argument( parser.add_argument(
"--observatories", "--observatories",
required=True, required=True,
......
...@@ -64,4 +64,5 @@ geomag-metadata = "geomagio.metadata.main:main" ...@@ -64,4 +64,5 @@ geomag-metadata = "geomagio.metadata.main:main"
geomag-py = "geomagio.Controller:main" geomag-py = "geomagio.Controller:main"
magproc-prepfiles = "geomagio.processing.magproc:main" magproc-prepfiles = "geomagio.processing.magproc:main"
make-cal = "geomagio.processing.make_cal:main" make-cal = "geomagio.processing.make_cal:main"
monitor = "geomagio.processing.monitor:_main"
obsrio-filter = "geomagio.processing.obsrio:main" obsrio-filter = "geomagio.processing.obsrio:main"
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