annotate artifacts/src/main/java/org/dive4elements/river/artifacts/bundu/BunduResultType.java @ 9453:9e471031cc1e

Merge
author gernotbelger
date Thu, 23 Aug 2018 11:02:47 +0200
parents af163ce96eb4 fd6621f47a72
children 7228bd10a8cc
rev   line source
9318
7b2b086e45f0 collision pdf details, ResultType refactoring, bezugswst result
gernotbelger
parents:
diff changeset
1 /** Copyright (C) 2017 by Bundesanstalt für Gewässerkunde
7b2b086e45f0 collision pdf details, ResultType refactoring, bezugswst result
gernotbelger
parents:
diff changeset
2 * Software engineering by
7b2b086e45f0 collision pdf details, ResultType refactoring, bezugswst result
gernotbelger
parents:
diff changeset
3 * Björnsen Beratende Ingenieure GmbH
7b2b086e45f0 collision pdf details, ResultType refactoring, bezugswst result
gernotbelger
parents:
diff changeset
4 * Dr. Schumacher Ingenieurbüro für Wasser und Umwelt
7b2b086e45f0 collision pdf details, ResultType refactoring, bezugswst result
gernotbelger
parents:
diff changeset
5 *
7b2b086e45f0 collision pdf details, ResultType refactoring, bezugswst result
gernotbelger
parents:
diff changeset
6 * This file is Free Software under the GNU AGPL (>=v3)
7b2b086e45f0 collision pdf details, ResultType refactoring, bezugswst result
gernotbelger
parents:
diff changeset
7 * and comes with ABSOLUTELY NO WARRANTY! Check out the
7b2b086e45f0 collision pdf details, ResultType refactoring, bezugswst result
gernotbelger
parents:
diff changeset
8 * documentation coming with Dive4Elements River for details.
7b2b086e45f0 collision pdf details, ResultType refactoring, bezugswst result
gernotbelger
parents:
diff changeset
9 */
7b2b086e45f0 collision pdf details, ResultType refactoring, bezugswst result
gernotbelger
parents:
diff changeset
10 package org.dive4elements.river.artifacts.bundu;
7b2b086e45f0 collision pdf details, ResultType refactoring, bezugswst result
gernotbelger
parents:
diff changeset
11
7b2b086e45f0 collision pdf details, ResultType refactoring, bezugswst result
gernotbelger
parents:
diff changeset
12 import java.text.NumberFormat;
7b2b086e45f0 collision pdf details, ResultType refactoring, bezugswst result
gernotbelger
parents:
diff changeset
13
7b2b086e45f0 collision pdf details, ResultType refactoring, bezugswst result
gernotbelger
parents:
diff changeset
14 import org.dive4elements.artifacts.CallContext;
7b2b086e45f0 collision pdf details, ResultType refactoring, bezugswst result
gernotbelger
parents:
diff changeset
15 import org.dive4elements.river.artifacts.common.AbstractResultType;
7b2b086e45f0 collision pdf details, ResultType refactoring, bezugswst result
gernotbelger
parents:
diff changeset
16 import org.dive4elements.river.artifacts.common.I18NStrings;
7b2b086e45f0 collision pdf details, ResultType refactoring, bezugswst result
gernotbelger
parents:
diff changeset
17 import org.dive4elements.river.utils.Formatter;
7b2b086e45f0 collision pdf details, ResultType refactoring, bezugswst result
gernotbelger
parents:
diff changeset
18
7b2b086e45f0 collision pdf details, ResultType refactoring, bezugswst result
gernotbelger
parents:
diff changeset
19 /**
7b2b086e45f0 collision pdf details, ResultType refactoring, bezugswst result
gernotbelger
parents:
diff changeset
20 * @author Domenico Nardi Tironi
7b2b086e45f0 collision pdf details, ResultType refactoring, bezugswst result
gernotbelger
parents:
diff changeset
21 *
7b2b086e45f0 collision pdf details, ResultType refactoring, bezugswst result
gernotbelger
parents:
diff changeset
22 */
7b2b086e45f0 collision pdf details, ResultType refactoring, bezugswst result
gernotbelger
parents:
diff changeset
23 public abstract class BunduResultType extends AbstractResultType {
7b2b086e45f0 collision pdf details, ResultType refactoring, bezugswst result
gernotbelger
parents:
diff changeset
24
7b2b086e45f0 collision pdf details, ResultType refactoring, bezugswst result
gernotbelger
parents:
diff changeset
25 protected BunduResultType(final String unit, final String csvHeader, final String pdfHeader) {
7b2b086e45f0 collision pdf details, ResultType refactoring, bezugswst result
gernotbelger
parents:
diff changeset
26 super(unit, csvHeader, pdfHeader);
7b2b086e45f0 collision pdf details, ResultType refactoring, bezugswst result
gernotbelger
parents:
diff changeset
27 }
7b2b086e45f0 collision pdf details, ResultType refactoring, bezugswst result
gernotbelger
parents:
diff changeset
28
9330
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
29 protected BunduResultType(final String unit, final String csvHeader) {
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
30 super(unit, csvHeader, csvHeader);
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
31 }
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
32
9318
7b2b086e45f0 collision pdf details, ResultType refactoring, bezugswst result
gernotbelger
parents:
diff changeset
33 private static final long serialVersionUID = 1L;
7b2b086e45f0 collision pdf details, ResultType refactoring, bezugswst result
gernotbelger
parents:
diff changeset
34
9330
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
35 public static final BunduResultType bezugswst = new BunduResultType(I18NStrings.UNIT_NONE, "bundu.wst.export.csv.meta.header.bezugswst",
9432
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
36 "bundu.wst.export.pdf.meta.header.bezugswst") { // Unit dynamic
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
37
9318
7b2b086e45f0 collision pdf details, ResultType refactoring, bezugswst result
gernotbelger
parents:
diff changeset
38 private static final long serialVersionUID = 1L;
7b2b086e45f0 collision pdf details, ResultType refactoring, bezugswst result
gernotbelger
parents:
diff changeset
39
7b2b086e45f0 collision pdf details, ResultType refactoring, bezugswst result
gernotbelger
parents:
diff changeset
40 @Override
7b2b086e45f0 collision pdf details, ResultType refactoring, bezugswst result
gernotbelger
parents:
diff changeset
41 public String exportValue(final CallContext context, final Object value) {
7b2b086e45f0 collision pdf details, ResultType refactoring, bezugswst result
gernotbelger
parents:
diff changeset
42 final double doubleValue = asDouble(value);
7b2b086e45f0 collision pdf details, ResultType refactoring, bezugswst result
gernotbelger
parents:
diff changeset
43 return exportDoubleValue(context, doubleValue);
7b2b086e45f0 collision pdf details, ResultType refactoring, bezugswst result
gernotbelger
parents:
diff changeset
44 }
7b2b086e45f0 collision pdf details, ResultType refactoring, bezugswst result
gernotbelger
parents:
diff changeset
45
7b2b086e45f0 collision pdf details, ResultType refactoring, bezugswst result
gernotbelger
parents:
diff changeset
46 @Override
7b2b086e45f0 collision pdf details, ResultType refactoring, bezugswst result
gernotbelger
parents:
diff changeset
47 protected NumberFormat createFormatter(final CallContext context) {
9432
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
48 return Formatter.getFlowDepth(context); // REMARK same as SInfoResultType.waterlevel
9318
7b2b086e45f0 collision pdf details, ResultType refactoring, bezugswst result
gernotbelger
parents:
diff changeset
49 }
7b2b086e45f0 collision pdf details, ResultType refactoring, bezugswst result
gernotbelger
parents:
diff changeset
50 };
7b2b086e45f0 collision pdf details, ResultType refactoring, bezugswst result
gernotbelger
parents:
diff changeset
51
9330
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
52 public static final BunduResultType sounding = new BunduResultType(I18NStrings.UNIT_NONE, "bundu.export.bezugswst.csv.meta.miss.sounding") {
9432
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
53
9330
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
54 private static final long serialVersionUID = 1L;
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
55
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
56 @Override
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
57 public String exportValue(final CallContext context, final Object value) {
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
58 return exportStringValue(value);
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
59 }
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
60
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
61 @Override
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
62 protected NumberFormat createFormatter(final CallContext context) {
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
63 throw new UnsupportedOperationException();
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
64 }
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
65 };
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
66
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
67 public static final BunduResultType channelLowerEdge = new BunduResultType(I18NStrings.UNIT_NONE, "bundu.export.bezugswst.csv.meta.miss.channel.lower_edge",
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
68 "bundu.export.bezugswst.pdf.meta.miss.channel.lower_edge") { // Unit dynamic
9432
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
69
9330
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
70 private static final long serialVersionUID = 1L;
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
71
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
72 @Override
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
73 public String exportValue(final CallContext context, final Object value) {
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
74 final double doubleValue = asDouble(value);
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
75 return exportDoubleValue(context, doubleValue);
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
76 }
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
77
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
78 @Override
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
79 protected NumberFormat createFormatter(final CallContext context) {
9432
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
80 return Formatter.getFlowDepth(context); // REMARK same as SInfoResultType.waterlevel
9330
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
81 }
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
82 };
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
83
9432
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
84 public static final BunduResultType channelDepth = new BunduResultType(I18NStrings.UNIT_M, "bundu.export.bezugswst.csv.meta.miss.channel.min_depth",
9330
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
85 "bundu.export.bezugswst.pdf.meta.miss.channel.min_depth") {
9432
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
86
9330
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
87 private static final long serialVersionUID = 1L;
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
88
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
89 @Override
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
90 public String exportValue(final CallContext context, final Object value) {
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
91 final double doubleValue = asDouble(value);
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
92 return exportDoubleValue(context, doubleValue);
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
93 }
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
94
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
95 @Override
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
96 protected NumberFormat createFormatter(final CallContext context) {
9450
7e1fb8d0cb0d Bundu bzws calculation nearly completed, some corrections with csv output, started with linking the minfo density calculation
mschaefer
parents: 9448
diff changeset
97 return Formatter.getFlowDepth(context);
9330
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
98 }
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
99 };
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
100
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
101 public static final BunduResultType hasMissingDepth = new BunduResultType(I18NStrings.UNIT_NONE, "bundu.export.bezugswst.csv.meta.miss.exists",
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
102 "bundu.export.bezugswst.pdf.meta.miss.exists") {
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
103 private static final long serialVersionUID = 1L;
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
104
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
105 @Override
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
106 public String exportValue(final CallContext context, final Object value) {
9448
d32b11d585cd CSV-Export bundu.wst fehlvolumen
gernotbelger
parents: 9446
diff changeset
107 return exportBooleanValue(context, value);
9330
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
108 }
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
109
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
110 @Override
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
111 protected NumberFormat createFormatter(final CallContext context) {
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
112 throw new UnsupportedOperationException();
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
113 }
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
114 };
9432
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
115 public static final BunduResultType missVolumeTotal = new BunduResultType(I18NStrings.UNIT_CUBIC_M, "bundu.export.bezugswst.csv.meta.miss.volume.total") {
9330
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
116 private static final long serialVersionUID = 1L;
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
117
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
118 @Override
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
119 public String exportValue(final CallContext context, final Object value) {
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
120 final double doubleValue = asDouble(value);
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
121 return exportDoubleValue(context, doubleValue);
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
122 }
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
123
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
124 @Override
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
125 protected NumberFormat createFormatter(final CallContext context) {
9432
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
126 return Formatter.getIntegerFormatter(context);
9330
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
127 }
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
128 };
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
129
9452
af163ce96eb4 pdf export result 3 miss vol
gernotbelger
parents: 9450
diff changeset
130 public static final BunduResultType missMassTotal = new BunduResultType(I18NStrings.UNIT_TON, "bundu.export.bezugswst.csv.meta.miss.mass.total") {
9330
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
131 private static final long serialVersionUID = 1L;
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
132
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
133 @Override
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
134 public String exportValue(final CallContext context, final Object value) {
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
135 final double doubleValue = asDouble(value);
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
136 return exportDoubleValue(context, doubleValue);
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
137 }
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
138
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
139 @Override
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
140 protected NumberFormat createFormatter(final CallContext context) {
9432
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
141 return Formatter.getMassFormat(context);
9330
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
142 }
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
143 };
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
144
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
145 public static final BunduResultType excavationVolume = new BunduResultType(I18NStrings.UNIT_CUBIC_M, "bundu.export.bezugswst.csv.meta.miss.excavation",
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
146 "bundu.export.bezugswst.pdf.meta.miss.excavation") {
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
147 private static final long serialVersionUID = 1L;
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
148
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
149 @Override
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
150 public String exportValue(final CallContext context, final Object value) {
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
151 final double doubleValue = asDouble(value);
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
152 return exportDoubleValue(context, doubleValue);
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
153 }
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
154
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
155 @Override
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
156 protected NumberFormat createFormatter(final CallContext context) {
9432
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
157 return Formatter.getIntegerFormatter(context);
9330
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
158 }
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
159 };
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
160
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
161 public static final BunduResultType excavationCosts = new BunduResultType(I18NStrings.UNIT_EURO, "bundu.export.bezugswst.csv.meta.miss.costs",
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
162 "bundu.export.bezugswst.pdf.meta.miss.costs") {
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
163 private static final long serialVersionUID = 1L;
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
164
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
165 @Override
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
166 public String exportValue(final CallContext context, final Object value) {
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
167 final double doubleValue = asDouble(value);
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
168 return exportDoubleValue(context, doubleValue);
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
169 }
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
170
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
171 @Override
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
172 protected NumberFormat createFormatter(final CallContext context) {
9432
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
173 return Formatter.getCurrencyFormat(context);
9330
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
174 }
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
175 };
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
176
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
177 public static final BunduResultType channelWidth = new BunduResultType(I18NStrings.UNIT_M, "bundu.export.bezugswst.csv.meta.miss.channel.width",
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
178 "bundu.export.bezugswst.pdf.meta.miss.channel.width") {
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
179 private static final long serialVersionUID = 1L;
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
180
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
181 @Override
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
182 public String exportValue(final CallContext context, final Object value) {
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
183 final double doubleValue = asDouble(value);
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
184 return exportDoubleValue(context, doubleValue);
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
185 }
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
186
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
187 @Override
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
188 protected NumberFormat createFormatter(final CallContext context) {
9432
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
189 return Formatter.getChannelWidth(context);
9330
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
190 }
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
191 };
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
192
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
193 public static final BunduResultType density = new BunduResultType(I18NStrings.UNIT_M, "bundu.export.bezugswst.csv.meta.miss.density",
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
194 "bundu.export.bezugswst.pdf.meta.miss.density") {
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
195 private static final long serialVersionUID = 1L;
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
196
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
197 @Override
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
198 public String exportValue(final CallContext context, final Object value) {
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
199 final double doubleValue = asDouble(value);
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
200 return exportDoubleValue(context, doubleValue);
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
201 }
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
202
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
203 @Override
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
204 protected NumberFormat createFormatter(final CallContext context) {
9432
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
205 return Formatter.getDensityFormat(context);
9330
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
206 }
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
207 };
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
208
9450
7e1fb8d0cb0d Bundu bzws calculation nearly completed, some corrections with csv output, started with linking the minfo density calculation
mschaefer
parents: 9448
diff changeset
209 public static final BunduResultType missDepthMeanBed = new BunduResultType(I18NStrings.UNIT_NONE, null) {
7e1fb8d0cb0d Bundu bzws calculation nearly completed, some corrections with csv output, started with linking the minfo density calculation
mschaefer
parents: 9448
diff changeset
210
7e1fb8d0cb0d Bundu bzws calculation nearly completed, some corrections with csv output, started with linking the minfo density calculation
mschaefer
parents: 9448
diff changeset
211 private static final long serialVersionUID = 1L;
7e1fb8d0cb0d Bundu bzws calculation nearly completed, some corrections with csv output, started with linking the minfo density calculation
mschaefer
parents: 9448
diff changeset
212
7e1fb8d0cb0d Bundu bzws calculation nearly completed, some corrections with csv output, started with linking the minfo density calculation
mschaefer
parents: 9448
diff changeset
213 @Override
7e1fb8d0cb0d Bundu bzws calculation nearly completed, some corrections with csv output, started with linking the minfo density calculation
mschaefer
parents: 9448
diff changeset
214 public String exportValue(final CallContext context, final Object value) {
7e1fb8d0cb0d Bundu bzws calculation nearly completed, some corrections with csv output, started with linking the minfo density calculation
mschaefer
parents: 9448
diff changeset
215 final double doubleValue = asDouble(value);
7e1fb8d0cb0d Bundu bzws calculation nearly completed, some corrections with csv output, started with linking the minfo density calculation
mschaefer
parents: 9448
diff changeset
216 return exportDoubleValue(context, doubleValue);
7e1fb8d0cb0d Bundu bzws calculation nearly completed, some corrections with csv output, started with linking the minfo density calculation
mschaefer
parents: 9448
diff changeset
217 }
7e1fb8d0cb0d Bundu bzws calculation nearly completed, some corrections with csv output, started with linking the minfo density calculation
mschaefer
parents: 9448
diff changeset
218
7e1fb8d0cb0d Bundu bzws calculation nearly completed, some corrections with csv output, started with linking the minfo density calculation
mschaefer
parents: 9448
diff changeset
219 @Override
7e1fb8d0cb0d Bundu bzws calculation nearly completed, some corrections with csv output, started with linking the minfo density calculation
mschaefer
parents: 9448
diff changeset
220 protected NumberFormat createFormatter(final CallContext context) {
7e1fb8d0cb0d Bundu bzws calculation nearly completed, some corrections with csv output, started with linking the minfo density calculation
mschaefer
parents: 9448
diff changeset
221 return Formatter.getFlowDepth(context);
7e1fb8d0cb0d Bundu bzws calculation nearly completed, some corrections with csv output, started with linking the minfo density calculation
mschaefer
parents: 9448
diff changeset
222 }
7e1fb8d0cb0d Bundu bzws calculation nearly completed, some corrections with csv output, started with linking the minfo density calculation
mschaefer
parents: 9448
diff changeset
223 };
7e1fb8d0cb0d Bundu bzws calculation nearly completed, some corrections with csv output, started with linking the minfo density calculation
mschaefer
parents: 9448
diff changeset
224
7e1fb8d0cb0d Bundu bzws calculation nearly completed, some corrections with csv output, started with linking the minfo density calculation
mschaefer
parents: 9448
diff changeset
225 public static final BunduResultType missAreaMeanBed = new BunduResultType(I18NStrings.UNIT_NONE, null) {
7e1fb8d0cb0d Bundu bzws calculation nearly completed, some corrections with csv output, started with linking the minfo density calculation
mschaefer
parents: 9448
diff changeset
226
7e1fb8d0cb0d Bundu bzws calculation nearly completed, some corrections with csv output, started with linking the minfo density calculation
mschaefer
parents: 9448
diff changeset
227 private static final long serialVersionUID = 1L;
7e1fb8d0cb0d Bundu bzws calculation nearly completed, some corrections with csv output, started with linking the minfo density calculation
mschaefer
parents: 9448
diff changeset
228
7e1fb8d0cb0d Bundu bzws calculation nearly completed, some corrections with csv output, started with linking the minfo density calculation
mschaefer
parents: 9448
diff changeset
229 @Override
7e1fb8d0cb0d Bundu bzws calculation nearly completed, some corrections with csv output, started with linking the minfo density calculation
mschaefer
parents: 9448
diff changeset
230 public String exportValue(final CallContext context, final Object value) {
7e1fb8d0cb0d Bundu bzws calculation nearly completed, some corrections with csv output, started with linking the minfo density calculation
mschaefer
parents: 9448
diff changeset
231 final double doubleValue = asDouble(value);
7e1fb8d0cb0d Bundu bzws calculation nearly completed, some corrections with csv output, started with linking the minfo density calculation
mschaefer
parents: 9448
diff changeset
232 return exportDoubleValue(context, doubleValue);
7e1fb8d0cb0d Bundu bzws calculation nearly completed, some corrections with csv output, started with linking the minfo density calculation
mschaefer
parents: 9448
diff changeset
233 }
7e1fb8d0cb0d Bundu bzws calculation nearly completed, some corrections with csv output, started with linking the minfo density calculation
mschaefer
parents: 9448
diff changeset
234
7e1fb8d0cb0d Bundu bzws calculation nearly completed, some corrections with csv output, started with linking the minfo density calculation
mschaefer
parents: 9448
diff changeset
235 @Override
7e1fb8d0cb0d Bundu bzws calculation nearly completed, some corrections with csv output, started with linking the minfo density calculation
mschaefer
parents: 9448
diff changeset
236 protected NumberFormat createFormatter(final CallContext context) {
7e1fb8d0cb0d Bundu bzws calculation nearly completed, some corrections with csv output, started with linking the minfo density calculation
mschaefer
parents: 9448
diff changeset
237 return Formatter.getMassFormat(context);
7e1fb8d0cb0d Bundu bzws calculation nearly completed, some corrections with csv output, started with linking the minfo density calculation
mschaefer
parents: 9448
diff changeset
238 }
7e1fb8d0cb0d Bundu bzws calculation nearly completed, some corrections with csv output, started with linking the minfo density calculation
mschaefer
parents: 9448
diff changeset
239 };
7e1fb8d0cb0d Bundu bzws calculation nearly completed, some corrections with csv output, started with linking the minfo density calculation
mschaefer
parents: 9448
diff changeset
240
9432
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
241 public static final BunduResultType missVolumeMeanBed = new BunduResultType(I18NStrings.UNIT_NONE, "bundu.export.bezugswst.csv.meta.miss.volume.mean_bed") {
9330
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
242
9432
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
243 private static final long serialVersionUID = 1L;
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
244
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
245 @Override
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
246 public String exportValue(final CallContext context, final Object value) {
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
247 final double doubleValue = asDouble(value);
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
248 return exportDoubleValue(context, doubleValue);
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
249 }
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
250
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
251 @Override
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
252 protected NumberFormat createFormatter(final CallContext context) {
9450
7e1fb8d0cb0d Bundu bzws calculation nearly completed, some corrections with csv output, started with linking the minfo density calculation
mschaefer
parents: 9448
diff changeset
253 return Formatter.getMassFormat(context);
9432
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
254 }
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
255 };
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
256
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
257 public static final BunduResultType missMassMeanBed = new BunduResultType(I18NStrings.UNIT_NONE, "bundu.export.bezugswst.csv.meta.miss.mass.mean_bed") {
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
258
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
259 private static final long serialVersionUID = 1L;
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
260
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
261 @Override
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
262 public String exportValue(final CallContext context, final Object value) {
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
263 final double doubleValue = asDouble(value);
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
264 return exportDoubleValue(context, doubleValue);
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
265 }
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
266
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
267 @Override
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
268 protected NumberFormat createFormatter(final CallContext context) {
9450
7e1fb8d0cb0d Bundu bzws calculation nearly completed, some corrections with csv output, started with linking the minfo density calculation
mschaefer
parents: 9448
diff changeset
269 return Formatter.getMassFormat(context);
9432
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
270 }
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
271 };
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
272
9444
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
273 /**
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
274 * List of bed height values of the 10 fields of a cross section
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
275 */
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
276 public static final BunduResultType bedHeightFields = new BunduResultType(null, null) {
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
277
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
278 private static final long serialVersionUID = 1L;
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
279
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
280 @Override
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
281 public String exportValue(final CallContext context, final Object value) {
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
282 final double doubleValue = asDouble(value);
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
283 return exportDoubleValue(context, doubleValue);
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
284 }
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
285
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
286 @Override
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
287 protected NumberFormat createFormatter(final CallContext context) {
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
288 throw new UnsupportedOperationException();
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
289 }
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
290 };
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
291
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
292 /**
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
293 * List of depth values of the 10 fields of a cross section
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
294 */
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
295 public static final BunduResultType depthFields = new BunduResultType(I18NStrings.UNIT_NONE, null) {
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
296
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
297 private static final long serialVersionUID = 1L;
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
298
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
299 @Override
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
300 public String exportValue(final CallContext context, final Object value) {
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
301 final double doubleValue = asDouble(value);
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
302 return exportDoubleValue(context, doubleValue);
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
303 }
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
304
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
305 @Override
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
306 protected NumberFormat createFormatter(final CallContext context) {
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
307 throw new UnsupportedOperationException();
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
308 }
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
309 };
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
310
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
311 /**
9446
e60584f2a531 Added bundu bzws calculation for missing volumes (masses still not yet ready) and results1/2/3
mschaefer
parents: 9444
diff changeset
312 * List of missing depth values of the 10 fields of a cross section
e60584f2a531 Added bundu bzws calculation for missing volumes (masses still not yet ready) and results1/2/3
mschaefer
parents: 9444
diff changeset
313 */
e60584f2a531 Added bundu bzws calculation for missing volumes (masses still not yet ready) and results1/2/3
mschaefer
parents: 9444
diff changeset
314 public static final BunduResultType missDepthFields = new BunduResultType(I18NStrings.UNIT_NONE, null) {
e60584f2a531 Added bundu bzws calculation for missing volumes (masses still not yet ready) and results1/2/3
mschaefer
parents: 9444
diff changeset
315
e60584f2a531 Added bundu bzws calculation for missing volumes (masses still not yet ready) and results1/2/3
mschaefer
parents: 9444
diff changeset
316 private static final long serialVersionUID = 1L;
e60584f2a531 Added bundu bzws calculation for missing volumes (masses still not yet ready) and results1/2/3
mschaefer
parents: 9444
diff changeset
317
e60584f2a531 Added bundu bzws calculation for missing volumes (masses still not yet ready) and results1/2/3
mschaefer
parents: 9444
diff changeset
318 @Override
e60584f2a531 Added bundu bzws calculation for missing volumes (masses still not yet ready) and results1/2/3
mschaefer
parents: 9444
diff changeset
319 public String exportValue(final CallContext context, final Object value) {
e60584f2a531 Added bundu bzws calculation for missing volumes (masses still not yet ready) and results1/2/3
mschaefer
parents: 9444
diff changeset
320 final double doubleValue = asDouble(value);
e60584f2a531 Added bundu bzws calculation for missing volumes (masses still not yet ready) and results1/2/3
mschaefer
parents: 9444
diff changeset
321 return exportDoubleValue(context, doubleValue);
e60584f2a531 Added bundu bzws calculation for missing volumes (masses still not yet ready) and results1/2/3
mschaefer
parents: 9444
diff changeset
322 }
e60584f2a531 Added bundu bzws calculation for missing volumes (masses still not yet ready) and results1/2/3
mschaefer
parents: 9444
diff changeset
323
e60584f2a531 Added bundu bzws calculation for missing volumes (masses still not yet ready) and results1/2/3
mschaefer
parents: 9444
diff changeset
324 @Override
e60584f2a531 Added bundu bzws calculation for missing volumes (masses still not yet ready) and results1/2/3
mschaefer
parents: 9444
diff changeset
325 protected NumberFormat createFormatter(final CallContext context) {
e60584f2a531 Added bundu bzws calculation for missing volumes (masses still not yet ready) and results1/2/3
mschaefer
parents: 9444
diff changeset
326 throw new UnsupportedOperationException();
e60584f2a531 Added bundu bzws calculation for missing volumes (masses still not yet ready) and results1/2/3
mschaefer
parents: 9444
diff changeset
327 }
e60584f2a531 Added bundu bzws calculation for missing volumes (masses still not yet ready) and results1/2/3
mschaefer
parents: 9444
diff changeset
328 };
e60584f2a531 Added bundu bzws calculation for missing volumes (masses still not yet ready) and results1/2/3
mschaefer
parents: 9444
diff changeset
329
e60584f2a531 Added bundu bzws calculation for missing volumes (masses still not yet ready) and results1/2/3
mschaefer
parents: 9444
diff changeset
330 /**
e60584f2a531 Added bundu bzws calculation for missing volumes (masses still not yet ready) and results1/2/3
mschaefer
parents: 9444
diff changeset
331 * List of missing width values of the 10 fields of a cross section
e60584f2a531 Added bundu bzws calculation for missing volumes (masses still not yet ready) and results1/2/3
mschaefer
parents: 9444
diff changeset
332 */
e60584f2a531 Added bundu bzws calculation for missing volumes (masses still not yet ready) and results1/2/3
mschaefer
parents: 9444
diff changeset
333 public static final BunduResultType missWidthFields = new BunduResultType(I18NStrings.UNIT_NONE, null) {
e60584f2a531 Added bundu bzws calculation for missing volumes (masses still not yet ready) and results1/2/3
mschaefer
parents: 9444
diff changeset
334
e60584f2a531 Added bundu bzws calculation for missing volumes (masses still not yet ready) and results1/2/3
mschaefer
parents: 9444
diff changeset
335 private static final long serialVersionUID = 1L;
e60584f2a531 Added bundu bzws calculation for missing volumes (masses still not yet ready) and results1/2/3
mschaefer
parents: 9444
diff changeset
336
e60584f2a531 Added bundu bzws calculation for missing volumes (masses still not yet ready) and results1/2/3
mschaefer
parents: 9444
diff changeset
337 @Override
e60584f2a531 Added bundu bzws calculation for missing volumes (masses still not yet ready) and results1/2/3
mschaefer
parents: 9444
diff changeset
338 public String exportValue(final CallContext context, final Object value) {
e60584f2a531 Added bundu bzws calculation for missing volumes (masses still not yet ready) and results1/2/3
mschaefer
parents: 9444
diff changeset
339 final double doubleValue = asDouble(value);
e60584f2a531 Added bundu bzws calculation for missing volumes (masses still not yet ready) and results1/2/3
mschaefer
parents: 9444
diff changeset
340 return exportDoubleValue(context, doubleValue);
e60584f2a531 Added bundu bzws calculation for missing volumes (masses still not yet ready) and results1/2/3
mschaefer
parents: 9444
diff changeset
341 }
e60584f2a531 Added bundu bzws calculation for missing volumes (masses still not yet ready) and results1/2/3
mschaefer
parents: 9444
diff changeset
342
e60584f2a531 Added bundu bzws calculation for missing volumes (masses still not yet ready) and results1/2/3
mschaefer
parents: 9444
diff changeset
343 @Override
e60584f2a531 Added bundu bzws calculation for missing volumes (masses still not yet ready) and results1/2/3
mschaefer
parents: 9444
diff changeset
344 protected NumberFormat createFormatter(final CallContext context) {
e60584f2a531 Added bundu bzws calculation for missing volumes (masses still not yet ready) and results1/2/3
mschaefer
parents: 9444
diff changeset
345 throw new UnsupportedOperationException();
e60584f2a531 Added bundu bzws calculation for missing volumes (masses still not yet ready) and results1/2/3
mschaefer
parents: 9444
diff changeset
346 }
e60584f2a531 Added bundu bzws calculation for missing volumes (masses still not yet ready) and results1/2/3
mschaefer
parents: 9444
diff changeset
347 };
e60584f2a531 Added bundu bzws calculation for missing volumes (masses still not yet ready) and results1/2/3
mschaefer
parents: 9444
diff changeset
348
e60584f2a531 Added bundu bzws calculation for missing volumes (masses still not yet ready) and results1/2/3
mschaefer
parents: 9444
diff changeset
349 /**
e60584f2a531 Added bundu bzws calculation for missing volumes (masses still not yet ready) and results1/2/3
mschaefer
parents: 9444
diff changeset
350 * List of missing area values of the 10 fields of a cross section
e60584f2a531 Added bundu bzws calculation for missing volumes (masses still not yet ready) and results1/2/3
mschaefer
parents: 9444
diff changeset
351 */
e60584f2a531 Added bundu bzws calculation for missing volumes (masses still not yet ready) and results1/2/3
mschaefer
parents: 9444
diff changeset
352 public static final BunduResultType missAreaFields = new BunduResultType(I18NStrings.UNIT_NONE, null) {
e60584f2a531 Added bundu bzws calculation for missing volumes (masses still not yet ready) and results1/2/3
mschaefer
parents: 9444
diff changeset
353
e60584f2a531 Added bundu bzws calculation for missing volumes (masses still not yet ready) and results1/2/3
mschaefer
parents: 9444
diff changeset
354 private static final long serialVersionUID = 1L;
e60584f2a531 Added bundu bzws calculation for missing volumes (masses still not yet ready) and results1/2/3
mschaefer
parents: 9444
diff changeset
355
e60584f2a531 Added bundu bzws calculation for missing volumes (masses still not yet ready) and results1/2/3
mschaefer
parents: 9444
diff changeset
356 @Override
e60584f2a531 Added bundu bzws calculation for missing volumes (masses still not yet ready) and results1/2/3
mschaefer
parents: 9444
diff changeset
357 public String exportValue(final CallContext context, final Object value) {
e60584f2a531 Added bundu bzws calculation for missing volumes (masses still not yet ready) and results1/2/3
mschaefer
parents: 9444
diff changeset
358 final double doubleValue = asDouble(value);
e60584f2a531 Added bundu bzws calculation for missing volumes (masses still not yet ready) and results1/2/3
mschaefer
parents: 9444
diff changeset
359 return exportDoubleValue(context, doubleValue);
e60584f2a531 Added bundu bzws calculation for missing volumes (masses still not yet ready) and results1/2/3
mschaefer
parents: 9444
diff changeset
360 }
e60584f2a531 Added bundu bzws calculation for missing volumes (masses still not yet ready) and results1/2/3
mschaefer
parents: 9444
diff changeset
361
e60584f2a531 Added bundu bzws calculation for missing volumes (masses still not yet ready) and results1/2/3
mschaefer
parents: 9444
diff changeset
362 @Override
e60584f2a531 Added bundu bzws calculation for missing volumes (masses still not yet ready) and results1/2/3
mschaefer
parents: 9444
diff changeset
363 protected NumberFormat createFormatter(final CallContext context) {
e60584f2a531 Added bundu bzws calculation for missing volumes (masses still not yet ready) and results1/2/3
mschaefer
parents: 9444
diff changeset
364 throw new UnsupportedOperationException();
e60584f2a531 Added bundu bzws calculation for missing volumes (masses still not yet ready) and results1/2/3
mschaefer
parents: 9444
diff changeset
365 }
e60584f2a531 Added bundu bzws calculation for missing volumes (masses still not yet ready) and results1/2/3
mschaefer
parents: 9444
diff changeset
366 };
e60584f2a531 Added bundu bzws calculation for missing volumes (masses still not yet ready) and results1/2/3
mschaefer
parents: 9444
diff changeset
367
e60584f2a531 Added bundu bzws calculation for missing volumes (masses still not yet ready) and results1/2/3
mschaefer
parents: 9444
diff changeset
368 /**
9444
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
369 * List of volume values of the 10 fields of a cross section
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
370 */
9432
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
371 public static final BunduResultType missVolumeFields = new BunduResultType(I18NStrings.UNIT_NONE, "bundu.export.bezugswst.csv.meta.miss.volume.field") {
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
372
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
373 private static final long serialVersionUID = 1L;
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
374
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
375 @Override
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
376 public String exportValue(final CallContext context, final Object value) {
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
377 final double doubleValue = asDouble(value);
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
378 return exportDoubleValue(context, doubleValue);
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
379 }
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
380
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
381 @Override
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
382 protected NumberFormat createFormatter(final CallContext context) {
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
383 return Formatter.getMassFormat(context);
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
384 }
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
385 };
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
386
9444
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
387 /**
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
388 * List of mass values of the 10 fields of a cross section
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
389 */
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
390 public static final BunduResultType missMassFields = new BunduResultType(I18NStrings.UNIT_NONE, "bundu.export.bezugswst.csv.meta.miss.mass.field") {
9432
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
391
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
392 private static final long serialVersionUID = 1L;
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
393
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
394 @Override
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
395 public String exportValue(final CallContext context, final Object value) {
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
396 final double doubleValue = asDouble(value);
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
397 return exportDoubleValue(context, doubleValue);
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
398 }
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
399
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
400 @Override
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
401 protected NumberFormat createFormatter(final CallContext context) {
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
402 return Formatter.getMassFormat(context);
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
403 }
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
404 };
d194c5b24bf8 Added bundu bzws w calculation and longitudinal sections of wspl and depth
mschaefer
parents: 9332
diff changeset
405
9451
fd6621f47a72 Bundu bzws density calculation completed
mschaefer
parents: 9450
diff changeset
406 public static final BunduResultType missStationRangeFrom = new BunduResultType(I18NStrings.UNIT_KM, "bundu.export.bezugswst.csv.meta.miss.km_from") {
9444
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
407
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
408 private static final long serialVersionUID = 1L;
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
409
9330
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
410 @Override
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
411 public String exportValue(final CallContext context, final Object value) {
9444
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
412 final double doubleValue = asDouble(value);
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
413 return exportDoubleValue(context, doubleValue);
9330
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
414 }
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
415
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
416 @Override
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
417 protected NumberFormat createFormatter(final CallContext context) {
9444
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
418 return Formatter.getWaterlevelKM(context);
9330
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
419 }
0a0937f33bb5 bundu.bezugswst first result for missing volume added
gernotbelger
parents: 9318
diff changeset
420 };
9331
127638669052 bundu bezugswst result 2
gernotbelger
parents: 9330
diff changeset
421
9451
fd6621f47a72 Bundu bzws density calculation completed
mschaefer
parents: 9450
diff changeset
422 public static final BunduResultType missStationRangeTo = new BunduResultType(I18NStrings.UNIT_KM, "bundu.export.bezugswst.csv.meta.miss.km_to") {
9444
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
423
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
424 private static final long serialVersionUID = 1L;
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
425
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
426 @Override
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
427 public String exportValue(final CallContext context, final Object value) {
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
428 final double doubleValue = asDouble(value);
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
429 return exportDoubleValue(context, doubleValue);
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
430 }
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
431
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
432 @Override
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
433 protected NumberFormat createFormatter(final CallContext context) {
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
434 return Formatter.getWaterlevelKM(context);
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
435 }
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 9432
diff changeset
436 };
9318
7b2b086e45f0 collision pdf details, ResultType refactoring, bezugswst result
gernotbelger
parents:
diff changeset
437 }

http://dive4elements.wald.intevation.org