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
cc389143
Unverified
Commit
cc389143
authored
5 years ago
by
Erin (Josh) Rigler
Committed by
GitHub
5 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #252 from pcain-usgs/issue-121
Fixes issue 121
parents
0b3a4db8
bf0b84ed
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/imfv283/GOESIMFV283Factory.py
+4
-1
4 additions, 1 deletion
geomagio/imfv283/GOESIMFV283Factory.py
with
4 additions
and
1 deletion
geomagio/imfv283/GOESIMFV283Factory.py
+
4
−
1
View file @
cc389143
...
@@ -5,6 +5,7 @@ from .IMFV283Factory import IMFV283Factory
...
@@ -5,6 +5,7 @@ from .IMFV283Factory import IMFV283Factory
import
subprocess
import
subprocess
import
sys
import
sys
from
obspy.core
import
Stream
from
obspy.core
import
Stream
import
os
class
GOESIMFV283Factory
(
IMFV283Factory
):
class
GOESIMFV283Factory
(
IMFV283Factory
):
...
@@ -181,7 +182,9 @@ class GOESIMFV283Factory(IMFV283Factory):
...
@@ -181,7 +182,9 @@ class GOESIMFV283Factory(IMFV283Factory):
buf
.
append
(
'
RETRANSMITTED: N
\n
'
)
buf
.
append
(
'
RETRANSMITTED: N
\n
'
)
buf
.
append
(
'
ASCENDING_TIME: false
\n
'
)
buf
.
append
(
'
ASCENDING_TIME: false
\n
'
)
buf
.
append
(
'
RT_SETTLE_DELAY: true
\n
'
)
buf
.
append
(
'
RT_SETTLE_DELAY: true
\n
'
)
criteria_dir
=
os
.
path
.
dirname
(
criteria_file
)
if
not
os
.
path
.
exists
(
criteria_dir
):
os
.
makedirs
(
criteria_dir
)
with
open
(
criteria_file
,
'
wb
'
)
as
fh
:
with
open
(
criteria_file
,
'
wb
'
)
as
fh
:
fh
.
write
(
''
.
join
(
buf
))
fh
.
write
(
''
.
join
(
buf
))
fh
.
close
()
fh
.
close
()
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