Newer
Older
Wernle, Alexandra Nicole
committed
import os
from datetime import datetime
import typer
from typing import Optional
Wernle, Alexandra Nicole
committed
from ..metadata import Metadata, MetadataFactory
from ..algorithm.SpikesAlgorithm import SpikesAlgorithm
def flag_spikes(
observatory: str = typer.Option(..., help="Observatory code"),
channels: str = typer.Option(
Wernle, Alexandra Nicole
committed
default="F", help="Channels to despike, default is F. Example input: HEZF"
Wernle, Alexandra Nicole
committed
starttime: datetime = typer.Option(
default=None,
help="Start time for metadata, default is None. CLI example usage: --starttime '2024-01-01' ",
),
endtime: datetime = typer.Option(
default=None,
help="End time for metadata, default is None. CLI example usage: --endtime '2024-01-01' ",
),
window_size: Optional[int] = typer.Option(
default=1000,
Wernle, Alexandra Nicole
committed
help="Window size for despike algorithm",
),
threshold: Optional[int] = typer.Option(
default=6,
Wernle, Alexandra Nicole
committed
help="Threshold for spike size",
),
metadata_token: str = typer.Option(
default=os.getenv("GITLAB_API_TOKEN"),
help="Token for metadata web service.",
metavar="TOKEN",
show_default="environment variable GITLAB_API_TOKEN",
),
metadata_url: str = typer.Option(
default="https://staging-geomag.cr.usgs.gov/ws/secure/metadata",
help="URL to metadata web service",
metavar="URL",
),
force: bool = typer.Option(
default=False,
help="Force skip the checks",
),
):
"""Flag spikes and create spike metadata in the metadata webservice."""
# TODO: Consider adding below variables as options
# run spike detection algorithm on data and return spike metadata
spike_algorithm = SpikesAlgorithm(
starttime=starttime,
endtime=endtime,
observatory=observatory,
window_size=window_size,
threshold=threshold,
Wernle, Alexandra Nicole
committed
type="variation",
interval="second",
metadata_token=metadata_token,
metadata_url=metadata_url,
)
spikes = spike_algorithm.run()
Wernle, Alexandra Nicole
committed
if len(spikes) == 0:
print("No spikes found")
raise typer.Abort()
Wernle, Alexandra Nicole
committed
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# confirm whether or not to create spike metadata
if not force:
typer.confirm(f"Are you sure you want to create flag metadata?", abort=True)
print("Creating flag metadata")
# write flag metadata to metadata service
with typer.progressbar(
iterable=spikes, label="Uploading to metadata service"
) as progressbar:
for spike in progressbar:
upload_spike_metadata(algorithm=spike_algorithm, spike=spike)
def main() -> None:
"""Entrypoint for flag spikes method."""
# for one command, can use typer.run
typer.run(flag_spikes)
def upload_spike_metadata(algorithm: SpikesAlgorithm, spike: Metadata) -> Metadata:
"""Upload new or existing spike metadata to metadata service.
Parameters
----------
algorithm: SpikesAlgorithm
algorithm to update/load spike metadata
spike: Metadata
spike metadata to be uploaded.
Returns
-------
Metadata
created metadata object.
"""
# check if metadata already exists for period before uploading
Wernle, Alexandra Nicole
committed
prior_metadata = SpikesAlgorithm.check_existing_metadata(algorithm, spike)
if prior_metadata:
Wernle, Alexandra Nicole
committed
# TODO: Confirm whether or not to add force or simply update automatically
typer.confirm(
f"Spikes already exist for this period, would you like to update this metadata?",
abort=True,
)
return SpikesAlgorithm.update_metadata(algorithm, spike)
else:
return SpikesAlgorithm.create_new_metadata(algorithm, spike)
if __name__ == "__main__":
main()