Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
DART-WRF
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
DataAssimilation
DART-WRF
Commits
08cd16c2
Commit
08cd16c2
authored
3 years ago
by
lkugler
Browse files
Options
Downloads
Patches
Plain Diff
.
parent
7d97f72a
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
dartwrf/obsseq.py
+2
-2
2 additions, 2 deletions
dartwrf/obsseq.py
with
2 additions
and
2 deletions
dartwrf/obsseq.py
+
2
−
2
View file @
08cd16c2
...
@@ -62,11 +62,11 @@ class ObsRecord(pd.DataFrame):
...
@@ -62,11 +62,11 @@ class ObsRecord(pd.DataFrame):
def
get_prior_Hx
(
self
):
def
get_prior_Hx
(
self
):
"""
Return prior Hx array (n_obs, n_ens)
"""
"""
Return prior Hx array (n_obs, n_ens)
"""
return
self
.
_get_model_Hx
(
self
,
'
prior
'
)
return
self
.
_get_model_Hx
(
'
prior
'
)
def
get_posterior_Hx
(
self
):
def
get_posterior_Hx
(
self
):
"""
Return posterior Hx array (n_obs, n_ens)
"""
"""
Return posterior Hx array (n_obs, n_ens)
"""
return
self
.
_get_model_Hx
(
self
,
'
posterior
'
)
return
self
.
_get_model_Hx
(
'
posterior
'
)
def
get_truth_Hx
(
self
):
def
get_truth_Hx
(
self
):
return
self
[
'
truth
'
].
values
return
self
[
'
truth
'
].
values
...
...
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