Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
geomag-algorithms
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ghsc
National Geomagnetism Program
geomag-algorithms
Compare revisions
db7e4d0078e332d05b4b09666ea53111d383358c to 1b839cf0d784a2f8a331c08000dd70a8d5898dea
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
ghsc/geomag/geomag-algorithms
Select target project
No results found
1b839cf0d784a2f8a331c08000dd70a8d5898dea
Select Git revision
Swap
Target
ghsc/geomag/geomag-algorithms
Select target project
ghsc/geomag/geomag-algorithms
1 result
db7e4d0078e332d05b4b09666ea53111d383358c
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
Clean up copy_absolutes
· a9d3ea16
Jeremy M Fee
authored
2 years ago
a9d3ea16
Merge branch 'add_absolutes' into 'master'
· 1b839cf0
Jeremy M Fee
authored
2 years ago
Add absolutes See merge request
!189
1b839cf0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
geomagio/processing/copy_absolutes.py
+9
-15
9 additions, 15 deletions
geomagio/processing/copy_absolutes.py
with
9 additions
and
15 deletions
geomagio/processing/copy_absolutes.py
View file @
1b839cf0
...
...
@@ -4,16 +4,15 @@ Created on Thu Jul 7 11:05:19 2022
@author: awernle
"""
import
os
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
,
Metadata
Fact
ory
,
Metadata
Categ
ory
from
..metadata
import
Metadata
,
Metadata
Categ
ory
,
Metadata
Fact
ory
from
..residual
import
Reading
,
WebAbsolutesFactory
TODAY
=
datetime
.
combine
(
date
.
today
(),
time
(
0
,
0
,
0
))
...
...
@@ -51,7 +50,7 @@ def copy_absolutes(
starttime
=
UTCDateTime
(
starttime
),
endtime
=
UTCDateTime
(
endtime
),
)
typer
.
echo
(
f
"
Found
{
len
(
readings
)
}
absolutes
"
)
print
(
f
"
Found
{
len
(
readings
)
}
absolutes
"
)
# write readings to metadata service
metadata_factory
=
MetadataFactory
(
token
=
metadata_token
,
url
=
metadata_url
)
with
typer
.
progressbar
(
...
...
@@ -73,25 +72,20 @@ def create_reading_metadata(reading: Reading) -> Metadata:
-------
metadata object for reading
"""
json_string
=
reading
.
json
()
reading_dict
=
json
.
loads
(
json_string
)
reviewer
=
reading
.
metadata
.
get
[
"
reviewer
"
]
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
"
,
updated_by
=
reviewer
,
status
=
"
reviewed
"
if
reading
.
metadata
.
get
(
"
reviewed
"
)
else
"
new
"
,
starttime
=
min
([
m
.
time
for
m
in
reading
.
measurements
if
m
.
time
]),
endtime
=
max
([
m
.
time
for
m
in
reading
.
measurements
if
m
.
time
]),
starttime
=
min
(
measurement_times
),
station
=
reading
.
metadata
[
"
station
"
],
metadata
=
reading_dict
,
status
=
"
reviewed
"
if
reading
.
metadata
.
get
(
"
reviewed
"
)
else
"
new
"
,
updated_by
=
reading
.
metadata
.
get
(
"
reviewer
"
),
)
return
metadata
pass
def
get_readings
(
factory
:
WebAbsolutesFactory
,
...
...
This diff is collapsed.
Click to expand it.