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
!143
No extra params
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
No extra params
ghsc/users/pcain/geomag-algorithms:no-extra-params
into
master
Overview
2
Commits
2
Pipelines
0
Changes
3
Merged
Cain, Payton David
requested to merge
ghsc/users/pcain/geomag-algorithms:no-extra-params
into
master
3 years ago
Overview
2
Commits
2
Pipelines
0
Changes
3
Expand
Fixes
#58 (closed)
0
0
Merge request reports
Compare
master
version 15
1b8c6c97
3 years ago
version 14
1178ec83
3 years ago
version 13
51cd47ad
3 years ago
version 12
e0761e34
3 years ago
version 11
bbb51e2f
3 years ago
version 10
0065b379
3 years ago
version 9
d55e38b5
3 years ago
version 8
41117194
3 years ago
version 7
9ad3b3aa
3 years ago
version 6
9006d783
3 years ago
version 5
07c8fc99
3 years ago
version 4
8adbf1e2
3 years ago
version 3
06d3a5bb
3 years ago
version 2
8ed2c9a3
3 years ago
version 1
c6052956
3 years ago
master (base)
and
version 1
latest version
591ac0ab
2 commits,
3 years ago
version 15
1b8c6c97
2 commits,
3 years ago
version 14
1178ec83
2 commits,
3 years ago
version 13
51cd47ad
2 commits,
3 years ago
version 12
e0761e34
2 commits,
3 years ago
version 11
bbb51e2f
2 commits,
3 years ago
version 10
0065b379
2 commits,
3 years ago
version 9
d55e38b5
2 commits,
3 years ago
version 8
41117194
1 commit,
3 years ago
version 7
9ad3b3aa
3 commits,
3 years ago
version 6
9006d783
3 commits,
3 years ago
version 5
07c8fc99
3 commits,
3 years ago
version 4
8adbf1e2
3 commits,
3 years ago
version 3
06d3a5bb
3 commits,
3 years ago
version 2
8ed2c9a3
3 commits,
3 years ago
version 1
c6052956
3 commits,
3 years ago
3 files
+
23
−
18
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
geomagio/api/ws/DataApiQuery.py
+
10
−
9
Options
@@ -4,7 +4,7 @@ import os
@@ -4,7 +4,7 @@ import os
from
typing
import
Dict
,
List
,
Union
from
typing
import
Dict
,
List
,
Union
from
obspy
import
UTCDateTime
from
obspy
import
UTCDateTime
from
pydantic
import
BaseModel
,
root_validator
,
validator
from
pydantic
import
BaseModel
,
Extra
,
root_validator
,
validator
from
...
import
pydantic_utcdatetime
from
...
import
pydantic_utcdatetime
from
.Element
import
ELEMENTS
from
.Element
import
ELEMENTS
@@ -46,19 +46,20 @@ class DataApiQuery(BaseModel):
@@ -46,19 +46,20 @@ class DataApiQuery(BaseModel):
endtime
:
UTCDateTime
=
None
endtime
:
UTCDateTime
=
None
elements
:
List
[
str
]
=
DEFAULT_ELEMENTS
elements
:
List
[
str
]
=
DEFAULT_ELEMENTS
sampling_period
:
SamplingPeriod
=
SamplingPeriod
.
MINUTE
sampling_period
:
SamplingPeriod
=
SamplingPeriod
.
MINUTE
data_
type
:
Union
[
DataType
,
str
]
=
DataType
.
VARIATION
type
:
Union
[
DataType
,
str
]
=
DataType
.
VARIATION
format
:
OutputFormat
=
OutputFormat
.
IAGA2002
format
:
OutputFormat
=
OutputFormat
.
IAGA2002
@validator
(
"
data_type
"
)
class
Config
:
def
validate_data_type
(
extra
=
Extra
.
forbid
cls
,
data_type
:
Union
[
DataType
,
str
]
)
->
Union
[
DataType
,
str
]:
@validator
(
"
type
"
)
if
data_type
not
in
DataType
.
values
()
and
len
(
data_type
)
!=
2
:
def
validate_data_type
(
cls
,
type
:
Union
[
DataType
,
str
])
->
Union
[
DataType
,
str
]:
if
type
not
in
DataType
.
values
()
and
len
(
type
)
!=
2
:
raise
ValueError
(
raise
ValueError
(
f
"
Bad data type value
'
{
data_
type
}
'
.
"
f
"
Bad data type value
'
{
type
}
'
.
"
f
"
Valid values are:
{
'
,
'
.
join
(
DataType
.
values
())
}
"
f
"
Valid values are:
{
'
,
'
.
join
(
DataType
.
values
())
}
"
)
)
return
data_
type
return
type
@validator
(
"
elements
"
,
pre
=
True
,
always
=
True
)
@validator
(
"
elements
"
,
pre
=
True
,
always
=
True
)
def
validate_elements
(
cls
,
elements
:
List
[
str
])
->
List
[
str
]:
def
validate_elements
(
cls
,
elements
:
List
[
str
])
->
List
[
str
]:
Loading