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
617027f1
Commit
617027f1
authored
9 years ago
by
Hal Simpson
Browse files
Options
Downloads
Patches
Plain Diff
Change computed_f test to use 2 instead of 1.
parent
bcd3a5f8
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
geomagio/ChannelConverter_test.py
+15
-0
15 additions, 0 deletions
geomagio/ChannelConverter_test.py
with
15 additions
and
0 deletions
geomagio/ChannelConverter_test.py
+
15
−
0
View file @
617027f1
...
...
@@ -45,6 +45,21 @@ class ChannelConverterTest:
length to be cos(angle) and the opposite length to be sin(angle)
"""
def
test_get_computed_f_using_sqaures
(
self
):
"""
geomag.ChannelConverterTest.test_get_computed_f_using_sqaures
Computed f is the combination of the 3 vector components from
either the geographic coordinate system (X,Y,Z), or the observatory
coordinate system (h,e,z).
"""
h
=
2
e
=
2
z
=
2
fv
=
channel
.
get_computed_f_using_squares
(
h
,
e
,
z
)
fs
=
math
.
sqrt
(
12
)
assert_almost_equal
(
fv
,
fs
,
8
,
'
Expect fv to almost equal sqrt(12)
'
,
True
)
def
test_get_geo_from_obs
(
self
):
"""
geomag.ChannelConverterTest.test_get_geo_from_obs()
...
...
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