Skip to content

Commit

Permalink
Merge pull request #369 from dtcenter/issue/366-rank
Browse files Browse the repository at this point in the history
Change field name "rank" in table line_data_orank to obs_rank #366
  • Loading branch information
TatianaBurek authored Feb 4, 2022
2 parents 1ae50f1 + 208d682 commit 9ec2233
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion java/edu/ucar/metviewer/MVUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,7 @@ public class MVUtil {

static {
statsOrank.put("ORANK_PIT", new String[]{""});
statsOrank.put("ORANK_RANK", new String[]{""});
statsOrank.put("ORANK_OBS_RANK", new String[]{""});
statsOrank.put("ORANK_ENS_MEAN", new String[]{""});
statsOrank.put("ORANK_SPREAD", new String[]{""});
statsOrank.put("ORANK_CLIMO_MEAN", new String[]{""});
Expand Down
2 changes: 1 addition & 1 deletion sql/mv_mysql.sql
Original file line number Diff line number Diff line change
Expand Up @@ -1509,7 +1509,7 @@ CREATE TABLE line_data_orank
obs_elv VARCHAR(64),
obs DOUBLE,
pit DOUBLE,
rank INT,
obs_rank INT,
n_ens_vld INT UNSIGNED,
n_ens INT UNSIGNED,
obs_qc VARCHAR(32),
Expand Down
2 changes: 1 addition & 1 deletion webapp/metviewer/js/metviewer_common.js
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ value_to_desc_map['CURVATURERATIO'] = 'Ratio of the curvature of two objects def

value_to_desc_map['ORANK_OBS'] = 'Value of the observation';
value_to_desc_map['ORANK_PIT'] = 'Probability Integral Transform';
value_to_desc_map['ORANK_RANK'] = 'Rank of the observation';
value_to_desc_map['ORANK_OBS_RANK'] = 'Rank of the observation';
value_to_desc_map['ORANK_ENS_MEAN'] = 'The unperturbed ensemble mean value';
value_to_desc_map['ORANK_SPREAD'] = 'The spread of the unperturbed ensemble member values';
value_to_desc_map['ORANK_CLIMO'] = 'The value of the inluded climatology';
Expand Down
4 changes: 2 additions & 2 deletions webapp/metviewer/js/metviewer_common.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 9ec2233

Please sign in to comment.