comparison artifacts/src/main/java/org/dive4elements/river/artifacts/sinfo/flowdepthdev/FlowDepthDevelopmentCalculationResult.java @ 8953:c40db8e8dcae

SINFO - Flow depth development - implemented exporters
author gernotbelger
date Mon, 19 Mar 2018 14:01:21 +0100
parents 322b0e6298ea
children d5802f22e4f5
comparison
equal deleted inserted replaced
8952:1a8f19f3b776 8953:c40db8e8dcae
58 } 58 }
59 59
60 public BedHeightInfo getHistoricalSounding() { 60 public BedHeightInfo getHistoricalSounding() {
61 return this.historicalSounding; 61 return this.historicalSounding;
62 } 62 }
63
64 public String getWaterlevelDifferenceLabel() {
65 return new StringBuilder(). //
66 append(this.currentWst.getLabel()). //
67 append(" - "). //
68 append(this.historicalWst.getLabel()). //
69 toString();
70 }
71
72 public String getBedHeightDifferenceLabel() {
73 return new StringBuilder(). //
74 append(this.currentSounding.getDescription()). //
75 append(" - "). //
76 append(this.historicalSounding.getDescription()). //
77 toString();
78 }
79
80 public String getFlowDepthCurrentLabel() {
81 return new StringBuilder(). //
82 append(this.currentWst.getLabel()). //
83 append(" - "). //
84 append(this.currentSounding.getDescription()). //
85 toString();
86 }
87
88 public String getFlowDepthHistoricalLabel() {
89 return new StringBuilder(). //
90 append(this.historicalWst.getLabel()). //
91 append(" - "). //
92 append(this.historicalSounding.getDescription()). //
93 toString();
94 }
63 } 95 }

http://dive4elements.wald.intevation.org