Skip to content

Commit

Permalink
change the path to Python scripts to accommodate new value of METPLOT…
Browse files Browse the repository at this point in the history
…PY_BASE
  • Loading branch information
TatianaBurek committed Feb 17, 2022
1 parent 864f06a commit 60c4489
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion java/edu/ucar/metviewer/jobManager/BarJobManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ public BarJobManager(MVBatch mvBatch) {
}
@Override
protected String getPythonScript() {
return "/plots/bar/bar.py";
return "/metplotpy/plots/bar/bar.py";
}
}
2 changes: 1 addition & 1 deletion java/edu/ucar/metviewer/jobManager/BoxJobManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ public BoxJobManager(MVBatch mvBatch) {
}
@Override
protected String getPythonScript() {
return "/plots/box/box.py";
return "/metplotpy/plots/box/box.py";
}
}
2 changes: 1 addition & 1 deletion java/edu/ucar/metviewer/jobManager/ContourJobManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,6 @@ protected Map<String, Object> createYamlInfoMap(MVPlotJob job) throws Validation
}
@Override
protected String getPythonScript() {
return "/plots/contour/contour.py";
return "/metplotpy/plots/contour/contour.py";
}
}
2 changes: 1 addition & 1 deletion java/edu/ucar/metviewer/jobManager/EclvJobManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,6 @@ protected void run(MVPlotJob job) throws ValidationException, ParseException, IO
}
@Override
protected String getPythonScript() {
return "/plots/eclv/eclv.py";
return "/metplotpy/plots/eclv/eclv.py";
}
}
2 changes: 1 addition & 1 deletion java/edu/ucar/metviewer/jobManager/EnsSsJobManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@ protected void validateNumDepSeries(MVPlotJob job, int intNumDepSeries) {
}
@Override
protected String getPythonScript() {
return "/plots/ens_ss/ens_ss.py";
return "/metplotpy/plots/ens_ss/ens_ss.py";
}
}
2 changes: 1 addition & 1 deletion java/edu/ucar/metviewer/jobManager/EtbJobManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public EtbJobManager(MVBatch mvBatch) {
}
@Override
protected String getPythonScript() {
return "/plots/equivalence_testing_bounds/equivalence_testing_bounds.py";
return "/metplotpy/plots/equivalence_testing_bounds/equivalence_testing_bounds.py";
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ protected int getNumberPlotCurves(Map.Entry[] listDep1Plot) {

@Override
protected String getPythonScript() {
return "/plots/performance_diagram/performance_diagram.py";
return "/metplotpy/plots/performance_diagram/performance_diagram.py";
}
@Override
protected Map<String, Object> addPlotConfigs(Map<String, Object> yamlInfo, MVPlotJob job, int intNumDepSeries) throws ValidationException {
Expand Down
2 changes: 1 addition & 1 deletion java/edu/ucar/metviewer/jobManager/PhistJobManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ public PhistJobManager(MVBatch mvBatch) {
}
@Override
protected String getPythonScript() {
return "/plots/histogram/prob_hist.py";
return "/metplotpy/plots/histogram/prob_hist.py";
}
}
2 changes: 1 addition & 1 deletion java/edu/ucar/metviewer/jobManager/RelpJobManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ public RelpJobManager(MVBatch mvBatch) {
}
@Override
protected String getPythonScript() {
return "/plots/histogram/rel_hist.py";
return "/metplotpy/plots/histogram/rel_hist.py";
}
}
2 changes: 1 addition & 1 deletion java/edu/ucar/metviewer/jobManager/RelyJobManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ protected void run(MVPlotJob job) throws ParseException, ValidationException, IO

@Override
protected String getPythonScript() {
return "/plots/reliability_diagram/reliability.py";
return "/metplotpy/plots/reliability_diagram/reliability.py";
}

}
2 changes: 1 addition & 1 deletion java/edu/ucar/metviewer/jobManager/RhistJobManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ protected void run(MVPlotJob job) throws ParseException, ValidationException, IO
}
@Override
protected String getPythonScript() {
return "/plots/histogram/rank_hist.py";
return "/metplotpy/plots/histogram/rank_hist.py";
}

}
2 changes: 1 addition & 1 deletion java/edu/ucar/metviewer/jobManager/RocJobManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ protected void run(MVPlotJob job) throws ParseException, ValidationException, IO

@Override
protected String getPythonScript() {
return "/plots/roc_diagram/roc_diagram.py";
return "/metplotpy/plots/roc_diagram/roc_diagram.py";
}

}
2 changes: 1 addition & 1 deletion java/edu/ucar/metviewer/jobManager/SeriesJobManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ protected void run(MVPlotJob job) throws ParseException, ValidationException, IO

@Override
protected String getPythonScript() {
return "/plots/line/line.py";
return "/metplotpy/plots/line/line.py";
}


Expand Down
2 changes: 1 addition & 1 deletion java/edu/ucar/metviewer/jobManager/TaylorJobManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ protected int getNumberPlotCurves(Map.Entry[] listDep1Plot) {
}
@Override
protected String getPythonScript() {
return "/plots/taylor_diagram/taylor_diagram.py";
return "/metplotpy/plots/taylor_diagram/taylor_diagram.py";
}

@Override
Expand Down

0 comments on commit 60c4489

Please sign in to comment.