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
71ff9976
Commit
71ff9976
authored
4 years ago
by
Cain, Payton David
Committed by
Jeremy M Fee
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Change __init__ imports
parent
8c8778cd
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/algorithm/__init__.py
+3
-3
3 additions, 3 deletions
geomagio/algorithm/__init__.py
with
3 additions
and
3 deletions
geomagio/algorithm/__init__.py
+
3
−
3
View file @
71ff9976
...
...
@@ -10,11 +10,11 @@ from .AlgorithmException import AlgorithmException
# algorithms
from
.AdjustedAlgorithm
import
AdjustedAlgorithm
from
.AverageAlgorithm
import
AverageAlgorithm
from
.DbDtAlgorithm
import
DbDtAlgorithm
from
.DeltaFAlgorithm
import
DeltaFAlgorithm
from
.FilterAlgorithm
import
FilterAlgorithm
from
.SqDistAlgorithm
import
SqDistAlgorithm
from
.XYZAlgorithm
import
XYZAlgorithm
from
.DBDTAlgorithm
import
DBDTAlgorithm
# algorithms is used by Controller to auto generate arguments
...
...
@@ -22,11 +22,11 @@ algorithms = {
"
identity
"
:
Algorithm
,
"
adjusted
"
:
AdjustedAlgorithm
,
"
average
"
:
AverageAlgorithm
,
"
dbdt
"
:
DbDtAlgorithm
,
"
deltaf
"
:
DeltaFAlgorithm
,
"
filter
"
:
FilterAlgorithm
,
"
sqdist
"
:
SqDistAlgorithm
,
"
xyz
"
:
XYZAlgorithm
,
"
dbdt
"
:
DBDTAlgorithm
,
}
...
...
@@ -37,9 +37,9 @@ __all__ = [
# algorithms
"
AdjustedAlgorithm
"
,
"
AverageAlgorithm
"
,
"
DbDtAlgorithm
"
,
"
DeltaFAlgorithm
"
,
"
FilterAlgorithm
"
,
"
SqDistAlgorithm
"
,
"
XYZAlgorithm
"
,
"
DBDTAlgorithm
"
,
]
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