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
Merge requests
!96
SNCL/SNCLFactory
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
SNCL/SNCLFactory
ghsc/users/pcain/geomag-algorithms:sncl-updates
into
master
Overview
8
Commits
7
Pipelines
0
Changes
10
Merged
Cain, Payton David
requested to merge
ghsc/users/pcain/geomag-algorithms:sncl-updates
into
master
3 years ago
Overview
8
Commits
7
Pipelines
0
Changes
1
Expand
Fixes
#16 (closed)
0
0
Merge request reports
Compare
version 5
version 9
48686488
3 years ago
version 8
0128defb
3 years ago
version 7
a032831d
3 years ago
version 6
5f78e21d
3 years ago
version 5
afef4072
3 years ago
version 4
71ca3692
3 years ago
version 3
1a4c9acf
3 years ago
version 2
927767f4
3 years ago
version 1
189921d5
3 years ago
master (base)
and
version 6
latest version
712f5c99
7 commits,
3 years ago
version 9
48686488
6 commits,
3 years ago
version 8
0128defb
6 commits,
3 years ago
version 7
a032831d
6 commits,
3 years ago
version 6
5f78e21d
6 commits,
3 years ago
version 5
afef4072
6 commits,
3 years ago
version 4
71ca3692
6 commits,
3 years ago
version 3
1a4c9acf
6 commits,
3 years ago
version 2
927767f4
5 commits,
3 years ago
version 1
189921d5
4 commits,
3 years ago
Show latest version
1 file
+
129
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
docs/elements.md
0 → 100644
+
129
−
0
Options
# Geomagnetic Elements
## Obsrio
Elements generated by observatories running the Obsrio data acquisition system.
### Acquired elements
-
10Hz volt + bin
-
U, V, W
-
1Hz engineering units
-
F, T1-4
### Derived variation
-
1Hz engineering units
-
U, V, W
uses instrument metadata from `geomagio.Metadata.get_instrument` to convert volt+bin to engineering units.
uses `geomagio.algorithm.FilterAlgorithm` to filter from 10Hz to 1Hz.
-
1 minute engineering units
-
T1-4
uses `geomagio.algorithm.FilterAlgorithm` to filter from 1Hz to 1 minute.
## PCDCP
Elements generated by observatories running the PCDCP data acquisition system.
### Acquired elements
-
1Hz legacy engineering units
-
H, E, Z, F
-
H, E, Z volt + bin
-
1 minute legacy engineering units
-
T1-4
-
H, E, Z, F
-
instrument battery voltage
### Derived variation
-
1Hz engineering units
-
U, V, W, F copied from legacy engineering units
-
1 minute engineering units
-
T1-4 copied from legacy engineering units
## Common
Derived elements calculated for all observatories.
### Derived variation
-
1Hz engineering units
-
D, X, Y
uses `geomagio.algorithm.XYZAlgorithm` to rotate coordinates from observatory (U,V) to observatory D and geographic (X,Y).
-
G
uses `geomagio.algorithm.DeltaFAlgorithm` to generate delta F from U,V,W,F.
-
1 minute/hour/day engineering units
-
U, V, W, F, T1-4
uses `geomagio.algorithm.FilterAlgorithm` to filter from 1Hz to 1 minute or 1 minute to 1 hour/day.
-
D, X, Y
uses `geomagio.algorithm.XYZAlgorithm` to rotate coordinates from observatory (U,V) to observatory D and geographic (X,Y).
-
G
uses `geomagio.algorithm.DeltaFAlgorithm` to generate delta F from U,V,W,F.
-
H_SQ, H_SV, H_Dist
uses `geomagio.algorithm.SqDistAlgorithm` to produce solar quiet(SQ), secular variation(SV) and
magnetic disturbance(Dist) at 1 minute interval.
### Derived adjusted
-
1Hz engineering units
-
X, Y, Z, F
uses `geomagio.algorithm.AdjustedAlgorithm` with per-observatory matrices stored in filesystem.
-
H, D
uses `geomagio.algorithm.XYZAlgorithm` to rotate coordinates from geographic (X,Y) to magnetic (H,D).
-
G
uses `geomagio.algorithm.DeltaFAlgorithm` to generate delta F from X,Y,Z,F.
-
1 minute/hour/day engineering units
-
X, Y, Z, F
uses `geomagio.algorithm.FilterAlgorithm` to filter from 1Hz to 1 minute or 1 minute to 1 hour/day.
-
H, D
uses `geomagio.algorithm.XYZAlgorithm` to rotate coordinates from geographic (X,Y) to magnetic (H,D).
-
G
uses `geomagio.algorithm.DeltaFAlgorithm` to generate delta F from X,Y,Z,F.
-
H_SQ, H_SV, H_Dist
uses `geomagio.algorithm.SqDistAlgorithm` to produce solar quiet(SQ), secular variation(SV) and
magnetic disturbance(Dist) at 1 minute interval.
\ No newline at end of file
Loading