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
Commits
97b18fa3
Commit
97b18fa3
authored
4 years ago
by
Cain, Payton David
Browse files
Options
Downloads
Patches
Plain Diff
Change measurement types from strings
parent
dd768158
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
geomagio/residual/Calculation.py
+27
-27
27 additions, 27 deletions
geomagio/residual/Calculation.py
with
27 additions
and
27 deletions
geomagio/residual/Calculation.py
+
27
−
27
View file @
97b18fa3
...
@@ -82,7 +82,7 @@ def calculate_I(measurements, ordinates, ordinates_index, mean, metadata):
...
@@ -82,7 +82,7 @@ def calculate_I(measurements, ordinates, ordinates_index, mean, metadata):
Returns inclination angle and calculated average f
Returns inclination angle and calculated average f
"""
"""
# get first inclination angle, assumed to be the southdown angle
# get first inclination angle, assumed to be the southdown angle
Iprime
=
average_angle
(
measurements
,
"
SouthDown
"
)
Iprime
=
average_angle
(
measurements
,
mt
.
SOUTH_DOWN
)
if
Iprime
>=
100
:
if
Iprime
>=
100
:
Iprime
-=
200
Iprime
-=
200
# get multiplier for hempisphere the observatory is located in
# get multiplier for hempisphere the observatory is located in
...
@@ -94,36 +94,36 @@ def calculate_I(measurements, ordinates, ordinates_index, mean, metadata):
...
@@ -94,36 +94,36 @@ def calculate_I(measurements, ordinates, ordinates_index, mean, metadata):
shift
=-
200
,
shift
=-
200
,
ud
=
1
,
ud
=
1
,
pm
=
1
,
pm
=
1
,
angle
=
average_angle
(
measurements
,
"
SouthDown
"
),
angle
=
average_angle
(
measurements
,
mt
.
SOUTH_DOWN
),
residual
=
average_residual
(
measurements
,
"
SouthDown
"
),
residual
=
average_residual
(
measurements
,
mt
.
SOUTH_DOWN
),
ordinate
=
average_ordinate
(
ordinates_index
,
"
SouthDown
"
),
ordinate
=
average_ordinate
(
ordinates_index
,
mt
.
SOUTH_DOWN
),
)
)
southup
=
Calculate
(
southup
=
Calculate
(
shift
=
200
,
shift
=
200
,
ud
=-
1
,
ud
=-
1
,
pm
=-
1
,
pm
=-
1
,
angle
=
average_angle
(
measurements
,
"
SouthUp
"
),
angle
=
average_angle
(
measurements
,
mt
.
SOUTH_UP
),
residual
=
average_residual
(
measurements
,
"
SouthUp
"
),
residual
=
average_residual
(
measurements
,
mt
.
SOUTH_UP
),
ordinate
=
average_ordinate
(
ordinates_index
,
"
SouthUp
"
),
ordinate
=
average_ordinate
(
ordinates_index
,
mt
.
SOUTH_UP
),
)
)
northup
=
Calculate
(
northup
=
Calculate
(
shift
=
0
,
shift
=
0
,
ud
=-
1
,
ud
=-
1
,
pm
=
1
,
pm
=
1
,
angle
=
average_angle
(
measurements
,
"
NorthUp
"
),
angle
=
average_angle
(
measurements
,
mt
.
NORTH_UP
),
residual
=
average_residual
(
measurements
,
"
NorthUp
"
),
residual
=
average_residual
(
measurements
,
mt
.
NORTH_UP
),
ordinate
=
average_ordinate
(
ordinates_index
,
"
NorthUp
"
),
ordinate
=
average_ordinate
(
ordinates_index
,
mt
.
NORTH_UP
),
)
)
northdown
=
Calculate
(
northdown
=
Calculate
(
shift
=
400
,
shift
=
400
,
ud
=
1
,
ud
=
1
,
pm
=-
1
,
pm
=-
1
,
angle
=
average_angle
(
measurements
,
"
NorthDown
"
),
angle
=
average_angle
(
measurements
,
mt
.
NORTH_DOWN
),
residual
=
average_residual
(
measurements
,
"
NorthDown
"
),
residual
=
average_residual
(
measurements
,
mt
.
NORTH_DOWN
),
ordinate
=
average_ordinate
(
ordinates_index
,
"
NorthDown
"
),
ordinate
=
average_ordinate
(
ordinates_index
,
mt
.
NORTH_DOWN
),
)
)
# set inclination value for looping = Iprime
# set inclination value for looping = Iprime
inclination
=
Iprime
inclination
=
Iprime
...
@@ -188,27 +188,27 @@ def calculate_D(ordinates_index, measurements, measurements_index, azimuth, h_b)
...
@@ -188,27 +188,27 @@ def calculate_D(ordinates_index, measurements, measurements_index, azimuth, h_b)
# West facing measurements have a multiplier of -1
# West facing measurements have a multiplier of -1
# East facing measurements have a multipllier of 1
# East facing measurements have a multipllier of 1
westdown
=
Calculate
(
westdown
=
Calculate
(
angle
=
average_angle
(
measurements_index
,
"
WestDown
"
),
angle
=
average_angle
(
measurements_index
,
mt
.
WEST_DOWN
),
residual
=
average_residual
(
measurements_index
,
"
WestDown
"
),
residual
=
average_residual
(
measurements_index
,
mt
.
WEST_DOWN
),
ordinate
=
average_ordinate
(
ordinates_index
,
"
WestDown
"
),
ordinate
=
average_ordinate
(
ordinates_index
,
mt
.
WEST_DOWN
),
pm
=-
1
,
pm
=-
1
,
)
)
westup
=
Calculate
(
westup
=
Calculate
(
angle
=
average_angle
(
measurements_index
,
"
WestUp
"
),
angle
=
average_angle
(
measurements_index
,
mt
.
WEST_UP
),
residual
=
average_residual
(
measurements_index
,
"
WestUp
"
),
residual
=
average_residual
(
measurements_index
,
mt
.
WEST_UP
),
ordinate
=
average_ordinate
(
ordinates_index
,
"
WestUp
"
),
ordinate
=
average_ordinate
(
ordinates_index
,
mt
.
WEST_UP
),
pm
=-
1
,
pm
=-
1
,
)
)
eastdown
=
Calculate
(
eastdown
=
Calculate
(
angle
=
average_angle
(
measurements_index
,
"
EastDown
"
),
angle
=
average_angle
(
measurements_index
,
mt
.
EAST_DOWN
),
residual
=
average_residual
(
measurements_index
,
"
EastDown
"
),
residual
=
average_residual
(
measurements_index
,
mt
.
EAST_DOWN
),
ordinate
=
average_ordinate
(
ordinates_index
,
"
EastDown
"
),
ordinate
=
average_ordinate
(
ordinates_index
,
mt
.
EAST_DOWN
),
pm
=
1
,
pm
=
1
,
)
)
eastup
=
Calculate
(
eastup
=
Calculate
(
angle
=
average_angle
(
measurements_index
,
"
EastUp
"
),
angle
=
average_angle
(
measurements_index
,
mt
.
EAST_UP
),
residual
=
average_residual
(
measurements_index
,
"
EastUp
"
),
residual
=
average_residual
(
measurements_index
,
mt
.
EAST_UP
),
ordinate
=
average_ordinate
(
ordinates_index
,
"
EastUp
"
),
ordinate
=
average_ordinate
(
ordinates_index
,
mt
.
EAST_UP
),
pm
=
1
,
pm
=
1
,
)
)
# convert azimuth to geon
# convert azimuth to geon
...
@@ -224,8 +224,8 @@ def calculate_D(ordinates_index, measurements, measurements_index, azimuth, h_b)
...
@@ -224,8 +224,8 @@ def calculate_D(ordinates_index, measurements, measurements_index, azimuth, h_b)
d_b
=
round
(
D_b
*
54
,
2
)
d_b
=
round
(
D_b
*
54
,
2
)
d_b_dms
=
int
(
d_b
/
60
)
*
100
+
((
d_b
/
60
)
%
1
)
*
60
d_b_dms
=
int
(
d_b
/
60
)
*
100
+
((
d_b
/
60
)
%
1
)
*
60
# gather first declination measurements' H ans E ordinates
# gather first declination measurements' H ans E ordinates
wd_E_1
=
ordinates_index
[
"
WestDown
"
][
0
].
e
wd_E_1
=
ordinates_index
[
mt
.
WEST_DOWN
][
0
].
e
wd_H_1
=
ordinates_index
[
"
WestDown
"
][
0
].
h
wd_H_1
=
ordinates_index
[
mt
.
WEST_DOWN
][
0
].
h
# calculate Declination baseline
# calculate Declination baseline
d_abs
=
D_b
+
np
.
arctan
(
wd_E_1
/
(
h_b
+
wd_H_1
))
*
(
200
/
np
.
pi
)
d_abs
=
D_b
+
np
.
arctan
(
wd_E_1
/
(
h_b
+
wd_H_1
))
*
(
200
/
np
.
pi
)
d_abs
=
round
(
d_abs
*
54
,
1
)
d_abs
=
round
(
d_abs
*
54
,
1
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment