annotate backend/src/main/java/org/dive4elements/river/model/BedHeightValueType.java @ 9587:d116a791b1f8

zu Punkt 10.4 Sohlhöhe Feld 1 (links)...
author gernotbelger
date Thu, 10 Jan 2019 09:07:16 +0100
parents ecadc9ed0ba0
children
rev   line source
8964
45f1ad66560e Code cleanup concerning calculations: improved error handling; improved interpolation; bed heights are now always used for spatial discretisation
gernotbelger
parents:
diff changeset
1 /** Copyright (C) 2017 by Bundesanstalt für Gewässerkunde
45f1ad66560e Code cleanup concerning calculations: improved error handling; improved interpolation; bed heights are now always used for spatial discretisation
gernotbelger
parents:
diff changeset
2 * Software engineering by
45f1ad66560e Code cleanup concerning calculations: improved error handling; improved interpolation; bed heights are now always used for spatial discretisation
gernotbelger
parents:
diff changeset
3 * Björnsen Beratende Ingenieure GmbH
45f1ad66560e Code cleanup concerning calculations: improved error handling; improved interpolation; bed heights are now always used for spatial discretisation
gernotbelger
parents:
diff changeset
4 * Dr. Schumacher Ingenieurbüro für Wasser und Umwelt
45f1ad66560e Code cleanup concerning calculations: improved error handling; improved interpolation; bed heights are now always used for spatial discretisation
gernotbelger
parents:
diff changeset
5 *
45f1ad66560e Code cleanup concerning calculations: improved error handling; improved interpolation; bed heights are now always used for spatial discretisation
gernotbelger
parents:
diff changeset
6 * This file is Free Software under the GNU AGPL (>=v3)
45f1ad66560e Code cleanup concerning calculations: improved error handling; improved interpolation; bed heights are now always used for spatial discretisation
gernotbelger
parents:
diff changeset
7 * and comes with ABSOLUTELY NO WARRANTY! Check out the
45f1ad66560e Code cleanup concerning calculations: improved error handling; improved interpolation; bed heights are now always used for spatial discretisation
gernotbelger
parents:
diff changeset
8 * documentation coming with Dive4Elements River for details.
45f1ad66560e Code cleanup concerning calculations: improved error handling; improved interpolation; bed heights are now always used for spatial discretisation
gernotbelger
parents:
diff changeset
9 */
45f1ad66560e Code cleanup concerning calculations: improved error handling; improved interpolation; bed heights are now always used for spatial discretisation
gernotbelger
parents:
diff changeset
10 package org.dive4elements.river.model;
45f1ad66560e Code cleanup concerning calculations: improved error handling; improved interpolation; bed heights are now always used for spatial discretisation
gernotbelger
parents:
diff changeset
11
45f1ad66560e Code cleanup concerning calculations: improved error handling; improved interpolation; bed heights are now always used for spatial discretisation
gernotbelger
parents:
diff changeset
12 /**
45f1ad66560e Code cleanup concerning calculations: improved error handling; improved interpolation; bed heights are now always used for spatial discretisation
gernotbelger
parents:
diff changeset
13 * Enumerations that allows to access min/max/mean value of {@link BedHeight} in the same way.
45f1ad66560e Code cleanup concerning calculations: improved error handling; improved interpolation; bed heights are now always used for spatial discretisation
gernotbelger
parents:
diff changeset
14 *
45f1ad66560e Code cleanup concerning calculations: improved error handling; improved interpolation; bed heights are now always used for spatial discretisation
gernotbelger
parents:
diff changeset
15 * @author Gernot Belger
45f1ad66560e Code cleanup concerning calculations: improved error handling; improved interpolation; bed heights are now always used for spatial discretisation
gernotbelger
parents:
diff changeset
16 *
45f1ad66560e Code cleanup concerning calculations: improved error handling; improved interpolation; bed heights are now always used for spatial discretisation
gernotbelger
parents:
diff changeset
17 */
45f1ad66560e Code cleanup concerning calculations: improved error handling; improved interpolation; bed heights are now always used for spatial discretisation
gernotbelger
parents:
diff changeset
18 public enum BedHeightValueType {
45f1ad66560e Code cleanup concerning calculations: improved error handling; improved interpolation; bed heights are now always used for spatial discretisation
gernotbelger
parents:
diff changeset
19 min {
45f1ad66560e Code cleanup concerning calculations: improved error handling; improved interpolation; bed heights are now always used for spatial discretisation
gernotbelger
parents:
diff changeset
20 @Override
45f1ad66560e Code cleanup concerning calculations: improved error handling; improved interpolation; bed heights are now always used for spatial discretisation
gernotbelger
parents:
diff changeset
21 public Double getValue(final BedHeightValue bedheightValue) {
45f1ad66560e Code cleanup concerning calculations: improved error handling; improved interpolation; bed heights are now always used for spatial discretisation
gernotbelger
parents:
diff changeset
22 return bedheightValue.getMinHeight();
45f1ad66560e Code cleanup concerning calculations: improved error handling; improved interpolation; bed heights are now always used for spatial discretisation
gernotbelger
parents:
diff changeset
23 }
9587
d116a791b1f8 zu Punkt 10.4 Sohlhöhe Feld 1 (links)...
gernotbelger
parents: 9444
diff changeset
24
d116a791b1f8 zu Punkt 10.4 Sohlhöhe Feld 1 (links)...
gernotbelger
parents: 9444
diff changeset
25 @Override
d116a791b1f8 zu Punkt 10.4 Sohlhöhe Feld 1 (links)...
gernotbelger
parents: 9444
diff changeset
26 public String getLeftRightStringAppendix() {
d116a791b1f8 zu Punkt 10.4 Sohlhöhe Feld 1 (links)...
gernotbelger
parents: 9444
diff changeset
27 return "bundu_facet_field_bedheight.description.appendix.left";
d116a791b1f8 zu Punkt 10.4 Sohlhöhe Feld 1 (links)...
gernotbelger
parents: 9444
diff changeset
28
d116a791b1f8 zu Punkt 10.4 Sohlhöhe Feld 1 (links)...
gernotbelger
parents: 9444
diff changeset
29 }
8964
45f1ad66560e Code cleanup concerning calculations: improved error handling; improved interpolation; bed heights are now always used for spatial discretisation
gernotbelger
parents:
diff changeset
30 },
45f1ad66560e Code cleanup concerning calculations: improved error handling; improved interpolation; bed heights are now always used for spatial discretisation
gernotbelger
parents:
diff changeset
31 max {
45f1ad66560e Code cleanup concerning calculations: improved error handling; improved interpolation; bed heights are now always used for spatial discretisation
gernotbelger
parents:
diff changeset
32 @Override
45f1ad66560e Code cleanup concerning calculations: improved error handling; improved interpolation; bed heights are now always used for spatial discretisation
gernotbelger
parents:
diff changeset
33 public Double getValue(final BedHeightValue bedheightValue) {
45f1ad66560e Code cleanup concerning calculations: improved error handling; improved interpolation; bed heights are now always used for spatial discretisation
gernotbelger
parents:
diff changeset
34 return bedheightValue.getMaxHeight();
45f1ad66560e Code cleanup concerning calculations: improved error handling; improved interpolation; bed heights are now always used for spatial discretisation
gernotbelger
parents:
diff changeset
35 }
9587
d116a791b1f8 zu Punkt 10.4 Sohlhöhe Feld 1 (links)...
gernotbelger
parents: 9444
diff changeset
36
d116a791b1f8 zu Punkt 10.4 Sohlhöhe Feld 1 (links)...
gernotbelger
parents: 9444
diff changeset
37 @Override
d116a791b1f8 zu Punkt 10.4 Sohlhöhe Feld 1 (links)...
gernotbelger
parents: 9444
diff changeset
38 public String getLeftRightStringAppendix() {
d116a791b1f8 zu Punkt 10.4 Sohlhöhe Feld 1 (links)...
gernotbelger
parents: 9444
diff changeset
39 return "bundu_facet_field_bedheight.description.appendix.right";
d116a791b1f8 zu Punkt 10.4 Sohlhöhe Feld 1 (links)...
gernotbelger
parents: 9444
diff changeset
40 }
8964
45f1ad66560e Code cleanup concerning calculations: improved error handling; improved interpolation; bed heights are now always used for spatial discretisation
gernotbelger
parents:
diff changeset
41 },
45f1ad66560e Code cleanup concerning calculations: improved error handling; improved interpolation; bed heights are now always used for spatial discretisation
gernotbelger
parents:
diff changeset
42 value {
45f1ad66560e Code cleanup concerning calculations: improved error handling; improved interpolation; bed heights are now always used for spatial discretisation
gernotbelger
parents:
diff changeset
43 @Override
45f1ad66560e Code cleanup concerning calculations: improved error handling; improved interpolation; bed heights are now always used for spatial discretisation
gernotbelger
parents:
diff changeset
44 public Double getValue(final BedHeightValue bedheightValue) {
45f1ad66560e Code cleanup concerning calculations: improved error handling; improved interpolation; bed heights are now always used for spatial discretisation
gernotbelger
parents:
diff changeset
45 return bedheightValue.getHeight();
45f1ad66560e Code cleanup concerning calculations: improved error handling; improved interpolation; bed heights are now always used for spatial discretisation
gernotbelger
parents:
diff changeset
46 }
9444
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
47 },
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
48 field01 {
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
49 @Override
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
50 public Double getValue(final BedHeightValue bedheightValue) {
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
51 return bedheightValue.getHeight01();
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
52 }
9587
d116a791b1f8 zu Punkt 10.4 Sohlhöhe Feld 1 (links)...
gernotbelger
parents: 9444
diff changeset
53
d116a791b1f8 zu Punkt 10.4 Sohlhöhe Feld 1 (links)...
gernotbelger
parents: 9444
diff changeset
54 @Override
d116a791b1f8 zu Punkt 10.4 Sohlhöhe Feld 1 (links)...
gernotbelger
parents: 9444
diff changeset
55 public String getLeftRightStringAppendix() {
d116a791b1f8 zu Punkt 10.4 Sohlhöhe Feld 1 (links)...
gernotbelger
parents: 9444
diff changeset
56 return min.getLeftRightStringAppendix();
d116a791b1f8 zu Punkt 10.4 Sohlhöhe Feld 1 (links)...
gernotbelger
parents: 9444
diff changeset
57 }
9444
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
58 },
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
59 field02 {
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
60 @Override
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
61 public Double getValue(final BedHeightValue bedheightValue) {
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
62 return bedheightValue.getHeight02();
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
63 }
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
64 },
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
65 field03 {
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
66 @Override
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
67 public Double getValue(final BedHeightValue bedheightValue) {
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
68 return bedheightValue.getHeight03();
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
69 }
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
70 },
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
71 field04 {
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
72 @Override
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
73 public Double getValue(final BedHeightValue bedheightValue) {
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
74 return bedheightValue.getHeight04();
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
75 }
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
76 },
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
77 field05 {
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
78 @Override
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
79 public Double getValue(final BedHeightValue bedheightValue) {
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
80 return bedheightValue.getHeight05();
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
81 }
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
82 },
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
83 field06 {
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
84 @Override
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
85 public Double getValue(final BedHeightValue bedheightValue) {
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
86 return bedheightValue.getHeight06();
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
87 }
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
88 },
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
89 field07 {
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
90 @Override
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
91 public Double getValue(final BedHeightValue bedheightValue) {
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
92 return bedheightValue.getHeight07();
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
93 }
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
94 },
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
95 field08 {
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
96 @Override
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
97 public Double getValue(final BedHeightValue bedheightValue) {
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
98 return bedheightValue.getHeight08();
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
99 }
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
100 },
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
101 field09 {
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
102 @Override
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
103 public Double getValue(final BedHeightValue bedheightValue) {
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
104 return bedheightValue.getHeight09();
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
105 }
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
106 },
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
107 field10 {
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
108 @Override
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
109 public Double getValue(final BedHeightValue bedheightValue) {
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
110 return bedheightValue.getHeight10();
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
111 }
9587
d116a791b1f8 zu Punkt 10.4 Sohlhöhe Feld 1 (links)...
gernotbelger
parents: 9444
diff changeset
112
d116a791b1f8 zu Punkt 10.4 Sohlhöhe Feld 1 (links)...
gernotbelger
parents: 9444
diff changeset
113 @Override
d116a791b1f8 zu Punkt 10.4 Sohlhöhe Feld 1 (links)...
gernotbelger
parents: 9444
diff changeset
114 public String getLeftRightStringAppendix() {
d116a791b1f8 zu Punkt 10.4 Sohlhöhe Feld 1 (links)...
gernotbelger
parents: 9444
diff changeset
115 return max.getLeftRightStringAppendix();
d116a791b1f8 zu Punkt 10.4 Sohlhöhe Feld 1 (links)...
gernotbelger
parents: 9444
diff changeset
116 }
8964
45f1ad66560e Code cleanup concerning calculations: improved error handling; improved interpolation; bed heights are now always used for spatial discretisation
gernotbelger
parents:
diff changeset
117 };
45f1ad66560e Code cleanup concerning calculations: improved error handling; improved interpolation; bed heights are now always used for spatial discretisation
gernotbelger
parents:
diff changeset
118
45f1ad66560e Code cleanup concerning calculations: improved error handling; improved interpolation; bed heights are now always used for spatial discretisation
gernotbelger
parents:
diff changeset
119 public abstract Double getValue(final BedHeightValue bedheightValue);
9444
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
120
9587
d116a791b1f8 zu Punkt 10.4 Sohlhöhe Feld 1 (links)...
gernotbelger
parents: 9444
diff changeset
121 public String getLeftRightStringAppendix() {
d116a791b1f8 zu Punkt 10.4 Sohlhöhe Feld 1 (links)...
gernotbelger
parents: 9444
diff changeset
122 return "";
d116a791b1f8 zu Punkt 10.4 Sohlhöhe Feld 1 (links)...
gernotbelger
parents: 9444
diff changeset
123 }
d116a791b1f8 zu Punkt 10.4 Sohlhöhe Feld 1 (links)...
gernotbelger
parents: 9444
diff changeset
124
9444
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
125 /**
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
126 * Enum constant of a section height
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
127 *
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
128 * @param index
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
129 * 1-based section index
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
130 */
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
131 public static BedHeightValueType field(final int index) {
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
132 return valueOf(String.format("field%02d", index));
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
133 }
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
134
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
135 public static final int FIELD_FIRST_INDEX = 1;
ecadc9ed0ba0 Added heights and depths of cross section fields in the bundu bzws calculation and longitudinal section charts
mschaefer
parents: 8964
diff changeset
136 public static final int FIELD_LAST_INDEX = 10;
8964
45f1ad66560e Code cleanup concerning calculations: improved error handling; improved interpolation; bed heights are now always used for spatial discretisation
gernotbelger
parents:
diff changeset
137 }

http://dive4elements.wald.intevation.org