Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • ghsc/geomag/geomag-algorithms
1 result
Show changes
Commits on Source (15)
# -*- coding: utf-8 -*-
"""
Created on Thu Jul 7 11:05:19 2022
@author: awernle
"""
import json
import os
from datetime import date, datetime, time, timedelta
from typing import List
import typer
from obspy import UTCDateTime
from ..metadata import Metadata, MetadataCategory, MetadataFactory
from ..residual import Reading, WebAbsolutesFactory
TODAY = datetime.combine(date.today(), time(0, 0, 0))
def copy_absolutes(
observatory: str = typer.Option(..., help="Observatory code"),
starttime: datetime = typer.Option(
default=TODAY - timedelta(days=1), help="Search start time, default "
),
endtime: datetime = typer.Option(default=TODAY),
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://geomag.usgs.gov/ws/secure",
help="URL to metadata web service",
metavar="URL",
),
web_absolutes_url: str = typer.Option(
default="https://geomag.usgs.gov/baselines/observation.json.php",
help="URL to web absolutes service",
metavar="URL",
),
):
"""Copy absolutes from the web absolutes service into the metadata service."""
# read readings from web absolutes
web_absolutes_factory = WebAbsolutesFactory(url=web_absolutes_url)
readings = get_readings(
factory=web_absolutes_factory,
observatory=observatory,
starttime=UTCDateTime(starttime),
endtime=UTCDateTime(endtime),
)
print(f"Found {len(readings)} absolutes")
# write readings to metadata service
metadata_factory = MetadataFactory(token=metadata_token, url=metadata_url)
with typer.progressbar(
iterable=readings, label="Uploading to metadata service"
) as progressbar:
for reading in progressbar:
upload_reading(factory=metadata_factory, reading=reading)
def create_reading_metadata(reading: Reading) -> Metadata:
"""Create reading metadata object.
Parameters
----------
reading:
reading to convert to metadata.
Returns
-------
metadata object for reading
"""
measurement_times = [m.time for m in reading.measurements if m.time]
metadata = Metadata(
category=MetadataCategory.READING,
created_by=reading.metadata.get("observer", "copy_absolutes"),
endtime=max(measurement_times),
metadata=json.loads(reading.json()),
network="NT",
starttime=min(measurement_times),
station=reading.metadata["station"],
status="reviewed" if reading.metadata.get("reviewed") else "new",
updated_by=reading.metadata.get("reviewer"),
)
return metadata
def get_readings(
factory: WebAbsolutesFactory,
observatory: str,
starttime: UTCDateTime,
endtime: UTCDateTime,
) -> List[Reading]:
"""Get readings from web absolutes.
Parameters
----------
factory
configured WebAbsolutesFactory
observatory
search observatory
starttime
search start time
endtime
search end time
Returns
-------
list of found readings
"""
readings = factory.get_readings(
observatory=observatory,
starttime=UTCDateTime(starttime),
endtime=UTCDateTime(endtime),
include_measurements=True,
)
return readings
def main() -> None:
"""Entrypoint for copy absolutes method."""
# for one command, can use typer.run
typer.run(copy_absolutes)
def upload_reading(factory: MetadataFactory, reading: Reading) -> Metadata:
"""Upload reading to metadata service
Parameters
----------
factory
factory configured for metadata service
reading
reading to upload
Returns
-------
created metadata object
"""
metadata = create_reading_metadata(reading=reading)
# TODO: should this check if metadata was already uploaded?
# TODO: should that check occur before calling this method?
return factory.create_metadata(metadata=metadata)
if __name__ == "__main__":
main()
......@@ -95,6 +95,12 @@ def calculate_D_absolute(
D Absolute
"""
mean = average_measurement(measurements, DECLINATION_TYPES)
if reference:
starttime = reference.time
endtime = reference.time
else:
starttime = mean.time
endtime = mean.endtime
reference = reference or mean
# average mark
average_mark = average_measurement(measurements, MARK_TYPES)
......@@ -136,8 +142,8 @@ def calculate_D_absolute(
absolute=d_abs,
baseline=d_b,
shift=shift,
starttime=mean.time,
endtime=mean.endtime,
starttime=starttime,
endtime=endtime,
),
meridian,
)
......@@ -173,21 +179,26 @@ def calculate_HZ_absolutes(
if reference:
h_abs = np.sqrt((h_b + reference.h) ** 2 + (reference.e) ** 2)
z_abs = z_b + reference.z
starttime = reference.time
endtime = reference.time
else:
starttime = mean.time
endtime = mean.endtime
# return absolutes
return (
Absolute(
element="H",
baseline=h_b,
absolute=h_abs,
starttime=mean.time,
endtime=mean.endtime,
starttime=starttime,
endtime=endtime,
),
Absolute(
element="Z",
baseline=z_b,
absolute=z_abs,
starttime=mean.time,
endtime=mean.endtime,
starttime=starttime,
endtime=endtime,
),
)
......
......@@ -320,22 +320,46 @@ class SpreadsheetAbsolutesFactory(object):
degrees=sheet["C12"].value, minutes=sheet["D12"].value
),
baseline=Angle.from_dms(minutes=sheet["F12"].value),
endtime=parse_relative_time(base_date, sheet["B12"].value),
starttime=parse_relative_time(base_date, sheet["B12"].value),
endtime=parse_relative_time(
# base_date is already a string; sheet "times" are ints
base_date,
"{:04d}".format(sheet["B12"].value),
),
starttime=parse_relative_time(
# base_date is already a string; sheet "times" are ints
base_date,
"{:04d}".format(sheet["B12"].value),
),
),
Absolute(
element="H",
absolute=sheet["C17"].value,
baseline=sheet["F17"].value,
endtime=parse_relative_time(base_date, sheet["B17"].value),
starttime=parse_relative_time(base_date, sheet["B17"].value),
endtime=parse_relative_time(
# base_date is already a string; sheet "times" are ints
base_date,
"{:04d}".format(sheet["B17"].value),
),
starttime=parse_relative_time(
# base_date is already a string; sheet "times" are ints
base_date,
"{:04d}".format(sheet["B17"].value),
),
),
Absolute(
element="Z",
absolute=sheet["C22"].value,
baseline=sheet["F22"].value,
endtime=parse_relative_time(base_date, sheet["B22"].value),
starttime=parse_relative_time(base_date, sheet["B22"].value),
endtime=parse_relative_time(
# base_date is already a string; sheet "times" are ints
base_date,
"{:04d}".format(sheet["B22"].value),
),
starttime=parse_relative_time(
# base_date is already a string; sheet "times" are ints
base_date,
"{:04d}".format(sheet["B22"].value),
),
),
]
return absolutes
......@@ -355,7 +379,11 @@ class SpreadsheetAbsolutesFactory(object):
residual = "residual" in m and sheet[m["residual"]].value or None
time = (
"time" in m
and parse_relative_time(base_date, sheet[m["time"]].value)
and parse_relative_time(
# base_date is already a string; sheet "times" are ints
base_date,
"{:06d}".format(sheet[m["time"]].value),
)
or None
)
h = "h" in m and sheet[m["h"]].value or None
......
This diff is collapsed.
......@@ -32,7 +32,7 @@ requests = "^2.27.1"
scipy = "^1.8.0"
typer = "^0.4.0"
# webservice
alembic = "^1.7.7"
alembic = "^1.8.0"
Authlib = "^1.0.0"
cryptography = "^36.0.2"
databases = {extras = ["mysql", "sqlite"], version = "^0.5.5"}
......@@ -71,3 +71,4 @@ geomag-py = "geomagio.Controller:main"
magproc-prepfiles = "geomagio.processing.magproc:main"
make-cal = "geomagio.processing.make_cal:main"
geomag-filter = "geomagio.processing.filters:main"
copy-absolutes = "geomagio.processing.copy_absolutes:main"
\ No newline at end of file