annotate artifacts/src/main/java/org/dive4elements/river/exports/ComputedDischargeCurveGenerator.java @ 6748:aee8cb5c801a

Removed obsolete imports.
author Sascha L. Teichmann <teichmann@intevation.de>
date Mon, 05 Aug 2013 15:24:44 +0200
parents 6791411ed1fc
children 7a02e613a61c
rev   line source
5863
4897a58c8746 River artifacts: Added new copyright headers.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5838
diff changeset
1 /* Copyright (C) 2011, 2012, 2013 by Bundesanstalt für Gewässerkunde
4897a58c8746 River artifacts: Added new copyright headers.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5838
diff changeset
2 * Software engineering by Intevation GmbH
4897a58c8746 River artifacts: Added new copyright headers.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5838
diff changeset
3 *
5994
af13ceeba52a Removed trailing whitespace.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5867
diff changeset
4 * This file is Free Software under the GNU AGPL (>=v3)
5863
4897a58c8746 River artifacts: Added new copyright headers.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5838
diff changeset
5 * and comes with ABSOLUTELY NO WARRANTY! Check out the
5994
af13ceeba52a Removed trailing whitespace.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5867
diff changeset
6 * documentation coming with Dive4Elements River for details.
5863
4897a58c8746 River artifacts: Added new copyright headers.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5838
diff changeset
7 */
4897a58c8746 River artifacts: Added new copyright headers.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5838
diff changeset
8
5831
bd047b71ab37 Repaired internal references
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5420
diff changeset
9 package org.dive4elements.river.exports;
1679
69929c471646 Improved the creation/rendering of annotations (km favorites, mainvalues).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1113
diff changeset
10
5831
bd047b71ab37 Repaired internal references
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5420
diff changeset
11 import org.dive4elements.artifactdatabase.state.ArtifactAndFacet;
bd047b71ab37 Repaired internal references
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5420
diff changeset
12 import org.dive4elements.artifactdatabase.state.Facet;
5867
59ff03ff48f1 River artifacts: Renamed FLYSArtifact(Collection) to D4EArtifact(Collection).
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5865
diff changeset
13 import org.dive4elements.river.artifacts.D4EArtifact;
5831
bd047b71ab37 Repaired internal references
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5420
diff changeset
14 import org.dive4elements.river.artifacts.StaticWKmsArtifact;
bd047b71ab37 Repaired internal references
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5420
diff changeset
15 import org.dive4elements.river.artifacts.WINFOArtifact;
bd047b71ab37 Repaired internal references
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5420
diff changeset
16 import org.dive4elements.river.artifacts.model.FacetTypes;
bd047b71ab37 Repaired internal references
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5420
diff changeset
17 import org.dive4elements.river.artifacts.model.WKms;
bd047b71ab37 Repaired internal references
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5420
diff changeset
18 import org.dive4elements.river.artifacts.model.WQKms;
5864
f2e46a668fe6 River artifacts: Renamed FLYSAnnotation to RiverAnnotation.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5863
diff changeset
19 import org.dive4elements.river.jfree.RiverAnnotation;
5831
bd047b71ab37 Repaired internal references
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5420
diff changeset
20 import org.dive4elements.river.jfree.StickyAxisAnnotation;
bd047b71ab37 Repaired internal references
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5420
diff changeset
21 import org.dive4elements.river.jfree.StyledXYSeries;
1850
0463e1f80bfd Handle MainValue Facets in Duration Curve Diagrams.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1819
diff changeset
22
5865
73da40528cf2 River artifacts: Renamed FLYSUtils to RiverUtils.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5864
diff changeset
23 import org.dive4elements.river.utils.RiverUtils;
5420
0bb57e72b8ea Fix flys/issue1206 (reference system in discharge curve).
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 4047
diff changeset
24
6423
654ed1732035 issue1370: helper to find Gauge datum if any.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6403
diff changeset
25 import java.awt.Font;
654ed1732035 issue1370: helper to find Gauge datum if any.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6403
diff changeset
26
3409
97ad960f5579 Add subtitle to Fix W/Q chart and refactor addSubtitle() method(s)
Christian Lins <christian.lins@intevation.de>
parents: 3054
diff changeset
27 import java.util.ArrayList;
97ad960f5579 Add subtitle to Fix W/Q chart and refactor addSubtitle() method(s)
Christian Lins <christian.lins@intevation.de>
parents: 3054
diff changeset
28 import java.util.List;
97ad960f5579 Add subtitle to Fix W/Q chart and refactor addSubtitle() method(s)
Christian Lins <christian.lins@intevation.de>
parents: 3054
diff changeset
29
6423
654ed1732035 issue1370: helper to find Gauge datum if any.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6403
diff changeset
30 import org.jfree.chart.axis.NumberAxis;
654ed1732035 issue1370: helper to find Gauge datum if any.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6403
diff changeset
31 import org.jfree.data.xy.XYSeries;
654ed1732035 issue1370: helper to find Gauge datum if any.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6403
diff changeset
32
3409
97ad960f5579 Add subtitle to Fix W/Q chart and refactor addSubtitle() method(s)
Christian Lins <christian.lins@intevation.de>
parents: 3054
diff changeset
33 import org.apache.log4j.Logger;
6423
654ed1732035 issue1370: helper to find Gauge datum if any.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6403
diff changeset
34
3409
97ad960f5579 Add subtitle to Fix W/Q chart and refactor addSubtitle() method(s)
Christian Lins <christian.lins@intevation.de>
parents: 3054
diff changeset
35 import org.w3c.dom.Document;
97ad960f5579 Add subtitle to Fix W/Q chart and refactor addSubtitle() method(s)
Christian Lins <christian.lins@intevation.de>
parents: 3054
diff changeset
36
392
72177020db92 Improved the transition model and added classes to enable the WINFO artifact to create computed discharge curves - NOTE: each of the new classes is just a stub.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff changeset
37
72177020db92 Improved the transition model and added classes to enable the WINFO artifact to create computed discharge curves - NOTE: each of the new classes is just a stub.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff changeset
38 /**
72177020db92 Improved the transition model and added classes to enable the WINFO artifact to create computed discharge curves - NOTE: each of the new classes is just a stub.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff changeset
39 * An OutGenerator that generates discharge curves.
72177020db92 Improved the transition model and added classes to enable the WINFO artifact to create computed discharge curves - NOTE: each of the new classes is just a stub.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff changeset
40 *
72177020db92 Improved the transition model and added classes to enable the WINFO artifact to create computed discharge curves - NOTE: each of the new classes is just a stub.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff changeset
41 * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a>
72177020db92 Improved the transition model and added classes to enable the WINFO artifact to create computed discharge curves - NOTE: each of the new classes is just a stub.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff changeset
42 */
696
708b270dfd30 OutGenerators use now facets to fetch necessary data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 695
diff changeset
43 public class ComputedDischargeCurveGenerator
708b270dfd30 OutGenerators use now facets to fetch necessary data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 695
diff changeset
44 extends DischargeCurveGenerator
708b270dfd30 OutGenerators use now facets to fetch necessary data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 695
diff changeset
45 implements FacetTypes
708b270dfd30 OutGenerators use now facets to fetch necessary data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 695
diff changeset
46 {
1081
d10efbe2e5c0 Minor cosmetics.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 924
diff changeset
47 /** The logger used in this generator. */
392
72177020db92 Improved the transition model and added classes to enable the WINFO artifact to create computed discharge curves - NOTE: each of the new classes is just a stub.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff changeset
48 private static Logger logger =
72177020db92 Improved the transition model and added classes to enable the WINFO artifact to create computed discharge curves - NOTE: each of the new classes is just a stub.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff changeset
49 Logger.getLogger(ComputedDischargeCurveGenerator.class);
72177020db92 Improved the transition model and added classes to enable the WINFO artifact to create computed discharge curves - NOTE: each of the new classes is just a stub.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff changeset
50
408
fc3ac59c3c8b Enabled i18n support for charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 400
diff changeset
51 public static final String I18N_CHART_TITLE =
fc3ac59c3c8b Enabled i18n support for charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 400
diff changeset
52 "chart.computed.discharge.curve.title";
fc3ac59c3c8b Enabled i18n support for charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 400
diff changeset
53
414
0385bcc4229a Added subtitles to the available charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 408
diff changeset
54 public static final String I18N_CHART_SUBTITLE =
0385bcc4229a Added subtitles to the available charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 408
diff changeset
55 "chart.computed.discharge.curve.subtitle";
0385bcc4229a Added subtitles to the available charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 408
diff changeset
56
408
fc3ac59c3c8b Enabled i18n support for charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 400
diff changeset
57 public static final String I18N_YAXIS_LABEL =
fc3ac59c3c8b Enabled i18n support for charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 400
diff changeset
58 "chart.computed.discharge.curve.yaxis.label";
fc3ac59c3c8b Enabled i18n support for charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 400
diff changeset
59
fc3ac59c3c8b Enabled i18n support for charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 400
diff changeset
60 public static final String I18N_CHART_TITLE_DEFAULT = "Abflusskurve";
fc3ac59c3c8b Enabled i18n support for charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 400
diff changeset
61 public static final String I18N_YAXIS_LABEL_DEFAULT = "W [NN + m]";
fc3ac59c3c8b Enabled i18n support for charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 400
diff changeset
62
6424
11d3d04f3925 issue1370: Let a hypothetical second y axis be an SyncNumberAxis depending on first.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6423
diff changeset
63 protected NumberAxis firstYAxis;
1083
d0db31d1f64c Enable plotting of some annotations that look like MainValues.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1081
diff changeset
64
d0db31d1f64c Enable plotting of some annotations that look like MainValues.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1081
diff changeset
65 /** Trivial Constructor. */
d0db31d1f64c Enable plotting of some annotations that look like MainValues.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1081
diff changeset
66 public ComputedDischargeCurveGenerator () {
d0db31d1f64c Enable plotting of some annotations that look like MainValues.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1081
diff changeset
67 super();
d0db31d1f64c Enable plotting of some annotations that look like MainValues.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1081
diff changeset
68 }
d0db31d1f64c Enable plotting of some annotations that look like MainValues.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1081
diff changeset
69
408
fc3ac59c3c8b Enabled i18n support for charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 400
diff changeset
70
392
72177020db92 Improved the transition model and added classes to enable the WINFO artifact to create computed discharge curves - NOTE: each of the new classes is just a stub.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff changeset
71 @Override
2048
3157a78e6494 Improved chart title and subtitle creation in ChartGenerators - all ChartGenerators make now use of title and subtitle provided by ChartSettings.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1989
diff changeset
72 protected String getDefaultChartTitle() {
408
fc3ac59c3c8b Enabled i18n support for charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 400
diff changeset
73 return msg(I18N_CHART_TITLE, I18N_CHART_TITLE_DEFAULT);
400
7e5c2e93e449 Changed the y-axis title of the computed discharge curve.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 393
diff changeset
74 }
7e5c2e93e449 Changed the y-axis title of the computed discharge curve.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 393
diff changeset
75
7e5c2e93e449 Changed the y-axis title of the computed discharge curve.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 393
diff changeset
76
7e5c2e93e449 Changed the y-axis title of the computed discharge curve.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 393
diff changeset
77 @Override
2048
3157a78e6494 Improved chart title and subtitle creation in ChartGenerators - all ChartGenerators make now use of title and subtitle provided by ChartSettings.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1989
diff changeset
78 protected String getDefaultChartSubtitle() {
1113
5b38cdf65307 Cosmetics.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1098
diff changeset
79 double[] dist = getRange();
414
0385bcc4229a Added subtitles to the available charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 408
diff changeset
80
0385bcc4229a Added subtitles to the available charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 408
diff changeset
81 Object[] args = new Object[] {
0385bcc4229a Added subtitles to the available charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 408
diff changeset
82 getRiverName(),
0385bcc4229a Added subtitles to the available charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 408
diff changeset
83 dist[0]
0385bcc4229a Added subtitles to the available charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 408
diff changeset
84 };
0385bcc4229a Added subtitles to the available charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 408
diff changeset
85
1989
156304542edf Finished the ChartSection part of the chart Settings returned by the XYChartGenerator.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1948
diff changeset
86 return msg(I18N_CHART_SUBTITLE, "", args);
156304542edf Finished the ChartSection part of the chart Settings returned by the XYChartGenerator.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1948
diff changeset
87 }
156304542edf Finished the ChartSection part of the chart Settings returned by the XYChartGenerator.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1948
diff changeset
88
156304542edf Finished the ChartSection part of the chart Settings returned by the XYChartGenerator.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1948
diff changeset
89
6423
654ed1732035 issue1370: helper to find Gauge datum if any.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6403
diff changeset
90
1989
156304542edf Finished the ChartSection part of the chart Settings returned by the XYChartGenerator.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1948
diff changeset
91 @Override
2051
4ba5036109d2 Make use of user defined axes labels during chart creation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2048
diff changeset
92 protected String getDefaultYAxisLabel(int pos) {
5867
59ff03ff48f1 River artifacts: Renamed FLYSArtifact(Collection) to D4EArtifact(Collection).
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5865
diff changeset
93 D4EArtifact flys = (D4EArtifact) master;
5420
0bb57e72b8ea Fix flys/issue1206 (reference system in discharge curve).
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 4047
diff changeset
94
5865
73da40528cf2 River artifacts: Renamed FLYSUtils to RiverUtils.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5864
diff changeset
95 String unit = RiverUtils.getRiver(flys).getWstUnit().getName();
6454
e860fa106f56 issue1370: Now that the default first y axis is in cm, change default label.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6453
diff changeset
96 if (pos == 0 && getCurrentGaugeDatum() != 0)
6446
49760b45d4df Adjust label of second y axis to show cm if it is the "cm" axis.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6445
diff changeset
97 unit = "cm";
5420
0bb57e72b8ea Fix flys/issue1206 (reference system in discharge curve).
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 4047
diff changeset
98
0bb57e72b8ea Fix flys/issue1206 (reference system in discharge curve).
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 4047
diff changeset
99 return msg(I18N_YAXIS_LABEL, I18N_YAXIS_LABEL_DEFAULT, new Object[] { unit });
400
7e5c2e93e449 Changed the y-axis title of the computed discharge curve.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 393
diff changeset
100 }
7e5c2e93e449 Changed the y-axis title of the computed discharge curve.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 393
diff changeset
101
7e5c2e93e449 Changed the y-axis title of the computed discharge curve.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 393
diff changeset
102
2731
55a3b575f644 Handle 'classical' discharges, theoretically.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2685
diff changeset
103 /**
6447
dad4f0424783 Add doc and override-annotation.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6446
diff changeset
104 * Create Y (range) axis for given index, here with a special axis
dad4f0424783 Add doc and override-annotation.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6446
diff changeset
105 * that depends on other axis (does translation and scaling for
dad4f0424783 Add doc and override-annotation.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6446
diff changeset
106 * special case at gauge in cm).
6424
11d3d04f3925 issue1370: Let a hypothetical second y axis be an SyncNumberAxis depending on first.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6423
diff changeset
107 */
6447
dad4f0424783 Add doc and override-annotation.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6446
diff changeset
108 @Override
6424
11d3d04f3925 issue1370: Let a hypothetical second y axis be an SyncNumberAxis depending on first.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6423
diff changeset
109 protected NumberAxis createYAxis(int index) {
11d3d04f3925 issue1370: Let a hypothetical second y axis be an SyncNumberAxis depending on first.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6423
diff changeset
110 if (index == 0) {
11d3d04f3925 issue1370: Let a hypothetical second y axis be an SyncNumberAxis depending on first.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6423
diff changeset
111 firstYAxis = super.createYAxis(0);
11d3d04f3925 issue1370: Let a hypothetical second y axis be an SyncNumberAxis depending on first.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6423
diff changeset
112 return firstYAxis;
11d3d04f3925 issue1370: Let a hypothetical second y axis be an SyncNumberAxis depending on first.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6423
diff changeset
113 }
11d3d04f3925 issue1370: Let a hypothetical second y axis be an SyncNumberAxis depending on first.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6423
diff changeset
114 YAxisWalker walker = getYAxisWalker();
11d3d04f3925 issue1370: Let a hypothetical second y axis be an SyncNumberAxis depending on first.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6423
diff changeset
115
11d3d04f3925 issue1370: Let a hypothetical second y axis be an SyncNumberAxis depending on first.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6423
diff changeset
116 Font labelFont = new Font(
11d3d04f3925 issue1370: Let a hypothetical second y axis be an SyncNumberAxis depending on first.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6423
diff changeset
117 DEFAULT_FONT_NAME,
11d3d04f3925 issue1370: Let a hypothetical second y axis be an SyncNumberAxis depending on first.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6423
diff changeset
118 Font.BOLD,
11d3d04f3925 issue1370: Let a hypothetical second y axis be an SyncNumberAxis depending on first.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6423
diff changeset
119 getYAxisFontSize(index));
11d3d04f3925 issue1370: Let a hypothetical second y axis be an SyncNumberAxis depending on first.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6423
diff changeset
120
11d3d04f3925 issue1370: Let a hypothetical second y axis be an SyncNumberAxis depending on first.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6423
diff changeset
121 SyncNumberAxis axis = new SyncNumberAxis(
11d3d04f3925 issue1370: Let a hypothetical second y axis be an SyncNumberAxis depending on first.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6423
diff changeset
122 walker.getId(index),
11d3d04f3925 issue1370: Let a hypothetical second y axis be an SyncNumberAxis depending on first.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6423
diff changeset
123 getYAxisLabel(index),
11d3d04f3925 issue1370: Let a hypothetical second y axis be an SyncNumberAxis depending on first.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6423
diff changeset
124 firstYAxis);
11d3d04f3925 issue1370: Let a hypothetical second y axis be an SyncNumberAxis depending on first.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6423
diff changeset
125
11d3d04f3925 issue1370: Let a hypothetical second y axis be an SyncNumberAxis depending on first.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6423
diff changeset
126 axis.setAutoRangeIncludesZero(false);
11d3d04f3925 issue1370: Let a hypothetical second y axis be an SyncNumberAxis depending on first.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6423
diff changeset
127 axis.setLabelFont(labelFont);
11d3d04f3925 issue1370: Let a hypothetical second y axis be an SyncNumberAxis depending on first.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6423
diff changeset
128 axis.setTickLabelFont(labelFont);
6441
216ea53b77b3 ComputedDischargeCurveGenerator: Renamed function.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6429
diff changeset
129 axis.setShift((double)-getCurrentGaugeDatum());
6424
11d3d04f3925 issue1370: Let a hypothetical second y axis be an SyncNumberAxis depending on first.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6423
diff changeset
130
11d3d04f3925 issue1370: Let a hypothetical second y axis be an SyncNumberAxis depending on first.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6423
diff changeset
131 return axis;
11d3d04f3925 issue1370: Let a hypothetical second y axis be an SyncNumberAxis depending on first.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6423
diff changeset
132 }
11d3d04f3925 issue1370: Let a hypothetical second y axis be an SyncNumberAxis depending on first.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6423
diff changeset
133
11d3d04f3925 issue1370: Let a hypothetical second y axis be an SyncNumberAxis depending on first.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6423
diff changeset
134
11d3d04f3925 issue1370: Let a hypothetical second y axis be an SyncNumberAxis depending on first.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6423
diff changeset
135 /**
2731
55a3b575f644 Handle 'classical' discharges, theoretically.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2685
diff changeset
136 * Process data, build up plot.
55a3b575f644 Handle 'classical' discharges, theoretically.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2685
diff changeset
137 */
400
7e5c2e93e449 Changed the y-axis title of the computed discharge curve.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 393
diff changeset
138 @Override
1684
bdb05dc9b763 Bugfix: #353 Enabled chart's to be drawn with proper axes set even if no data is contained.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1679
diff changeset
139 public void doOut(
1944
21a4d2c677a1 Changed doOut signature, side effect from blackboard feature (to come).
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1937
diff changeset
140 ArtifactAndFacet artifactFacet,
21a4d2c677a1 Changed doOut signature, side effect from blackboard feature (to come).
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1937
diff changeset
141 Document attr,
21a4d2c677a1 Changed doOut signature, side effect from blackboard feature (to come).
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1937
diff changeset
142 boolean visible
1684
bdb05dc9b763 Bugfix: #353 Enabled chart's to be drawn with proper axes set even if no data is contained.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1679
diff changeset
143 ) {
1944
21a4d2c677a1 Changed doOut signature, side effect from blackboard feature (to come).
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1937
diff changeset
144 String name = artifactFacet.getFacetName();
393
befedd7629d5 Enabled the WINFO artifact to compute the data for discharge curves (computed) - ComputedDischargeCurveGenerator uses those values now to create the chart.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 392
diff changeset
145
696
708b270dfd30 OutGenerators use now facets to fetch necessary data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 695
diff changeset
146 logger.debug("ComputedDischargeCurveGenerator.doOut: " + name);
393
befedd7629d5 Enabled the WINFO artifact to compute the data for discharge curves (computed) - ComputedDischargeCurveGenerator uses those values now to create the chart.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 392
diff changeset
147
1085
07878836ee0d Plot "real" (respecting parameters) W and Q MainValues, yet in wrong scale.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1083
diff changeset
148 if (name == null) {
07878836ee0d Plot "real" (respecting parameters) W and Q MainValues, yet in wrong scale.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1083
diff changeset
149 logger.warn("Broken facet in computed discharge out generation.");
07878836ee0d Plot "real" (respecting parameters) W and Q MainValues, yet in wrong scale.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1083
diff changeset
150 return;
07878836ee0d Plot "real" (respecting parameters) W and Q MainValues, yet in wrong scale.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1083
diff changeset
151 }
07878836ee0d Plot "real" (respecting parameters) W and Q MainValues, yet in wrong scale.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1083
diff changeset
152
4047
3dc26ec2558d Removed dead code
Sascha L. Teichmann <teichmann@intevation.de>
parents: 4036
diff changeset
153 //XXX DEAD CODE // Facet facet = artifactFacet.getFacet();
696
708b270dfd30 OutGenerators use now facets to fetch necessary data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 695
diff changeset
154
1083
d0db31d1f64c Enable plotting of some annotations that look like MainValues.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1081
diff changeset
155 if (name.equals(COMPUTED_DISCHARGE_Q)) {
6429
e32b166c881b issue1370: Add discharge q data to second axis.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6424
diff changeset
156 doDischargeQOut((WQKms) artifactFacet.getData(context), artifactFacet, attr, visible);
696
708b270dfd30 OutGenerators use now facets to fetch necessary data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 695
diff changeset
157 }
1901
da52932f3bc1 Handle interpolated WQ data in Computed Discharge Curve Diagram.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1850
diff changeset
158 else if (name.equals(STATIC_WQ)) {
2605
15a3684c6bce #366 Display correct descriptions in legend panel of charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2570
diff changeset
159 doWQOut(artifactFacet.getData(context), artifactFacet, attr, visible);
1901
da52932f3bc1 Handle interpolated WQ data in Computed Discharge Curve Diagram.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1850
diff changeset
160 }
1915
6b7557ffe2f8 Handle STATIC_WQ_ANNOTATION type facets in Computed Discharge Curve Diagrams.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1902
diff changeset
161 else if (name.equals(STATIC_WQ_ANNOTATIONS)) {
2325
1fcaeced48f2 #485 Fixed broken renaming of chart themes.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2206
diff changeset
162 doWQAnnotations(
1fcaeced48f2 #485 Fixed broken renaming of chart themes.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2206
diff changeset
163 artifactFacet.getData(context),
1fcaeced48f2 #485 Fixed broken renaming of chart themes.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2206
diff changeset
164 artifactFacet,
1fcaeced48f2 #485 Fixed broken renaming of chart themes.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2206
diff changeset
165 attr,
1fcaeced48f2 #485 Fixed broken renaming of chart themes.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2206
diff changeset
166 visible);
1915
6b7557ffe2f8 Handle STATIC_WQ_ANNOTATION type facets in Computed Discharge Curve Diagrams.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1902
diff changeset
167 }
1812
dd084cf3f284 Refactored to allow mainvalues in discharge curve diagrams, too.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1721
diff changeset
168 else if (name.equals(COMPUTED_DISCHARGE_MAINVALUES_Q)
1850
0463e1f80bfd Handle MainValue Facets in Duration Curve Diagrams.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1819
diff changeset
169 || name.equals(MAINVALUES_Q)
0463e1f80bfd Handle MainValue Facets in Duration Curve Diagrams.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1819
diff changeset
170 || name.equals(COMPUTED_DISCHARGE_MAINVALUES_W)
0463e1f80bfd Handle MainValue Facets in Duration Curve Diagrams.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1819
diff changeset
171 || name.equals(MAINVALUES_W)
0463e1f80bfd Handle MainValue Facets in Duration Curve Diagrams.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1819
diff changeset
172 ) {
6453
f11165468f0a issue1370: swap default axis (now in cm), translate annotations if in cm.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6447
diff changeset
173 RiverAnnotation mainValues = (RiverAnnotation) artifactFacet.getData(context);
f11165468f0a issue1370: swap default axis (now in cm), translate annotations if in cm.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6447
diff changeset
174 translateRiverAnnotation(mainValues);
f11165468f0a issue1370: swap default axis (now in cm), translate annotations if in cm.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6447
diff changeset
175 doAnnotations(
f11165468f0a issue1370: swap default axis (now in cm), translate annotations if in cm.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6447
diff changeset
176 mainValues,
f11165468f0a issue1370: swap default axis (now in cm), translate annotations if in cm.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6447
diff changeset
177 artifactFacet, attr, visible);
1083
d0db31d1f64c Enable plotting of some annotations that look like MainValues.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1081
diff changeset
178 }
2731
55a3b575f644 Handle 'classical' discharges, theoretically.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2685
diff changeset
179 else if (name.equals(STATIC_WKMS_INTERPOL) || name.equals(HEIGHTMARKS_POINTS)) {
2325
1fcaeced48f2 #485 Fixed broken renaming of chart themes.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2206
diff changeset
180 doWAnnotations(
1fcaeced48f2 #485 Fixed broken renaming of chart themes.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2206
diff changeset
181 artifactFacet.getData(context),
1fcaeced48f2 #485 Fixed broken renaming of chart themes.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2206
diff changeset
182 artifactFacet,
1fcaeced48f2 #485 Fixed broken renaming of chart themes.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2206
diff changeset
183 attr,
1fcaeced48f2 #485 Fixed broken renaming of chart themes.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2206
diff changeset
184 visible);
1921
d99fdc234da1 Add annotaitons for STATIC_WKMS_INTERPOL facets in Computed Discharge Curves.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1915
diff changeset
185 }
2769
de60d1dfdcdf Let Generators handle slightly more types.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2731
diff changeset
186 else if (name.equals(STATIC_WKMS)) {
de60d1dfdcdf Let Generators handle slightly more types.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2731
diff changeset
187 doWAnnotations(
de60d1dfdcdf Let Generators handle slightly more types.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2731
diff changeset
188 artifactFacet.getData(context),
de60d1dfdcdf Let Generators handle slightly more types.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2731
diff changeset
189 artifactFacet,
de60d1dfdcdf Let Generators handle slightly more types.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2731
diff changeset
190 attr,
de60d1dfdcdf Let Generators handle slightly more types.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2731
diff changeset
191 visible);
de60d1dfdcdf Let Generators handle slightly more types.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2731
diff changeset
192 }
2206
e2124ca11adb Add manual point handling for many different chart types.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2161
diff changeset
193 else if (FacetTypes.IS.MANUALPOINTS(name)) {
e2124ca11adb Add manual point handling for many different chart types.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2161
diff changeset
194 doPoints(artifactFacet.getData(context),
2325
1fcaeced48f2 #485 Fixed broken renaming of chart themes.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2206
diff changeset
195 artifactFacet,
2206
e2124ca11adb Add manual point handling for many different chart types.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2161
diff changeset
196 attr, visible, YAXIS.W.idx);
e2124ca11adb Add manual point handling for many different chart types.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2161
diff changeset
197 }
2731
55a3b575f644 Handle 'classical' discharges, theoretically.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2685
diff changeset
198 else if (name.equals(DISCHARGE_CURVE)) {
55a3b575f644 Handle 'classical' discharges, theoretically.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2685
diff changeset
199 doDischargeOut(
55a3b575f644 Handle 'classical' discharges, theoretically.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2685
diff changeset
200 (WINFOArtifact) artifactFacet.getArtifact(),
55a3b575f644 Handle 'classical' discharges, theoretically.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2685
diff changeset
201 artifactFacet.getData(context),
55a3b575f644 Handle 'classical' discharges, theoretically.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2685
diff changeset
202 artifactFacet.getFacetDescription(),
55a3b575f644 Handle 'classical' discharges, theoretically.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2685
diff changeset
203 attr,
55a3b575f644 Handle 'classical' discharges, theoretically.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2685
diff changeset
204 visible);
55a3b575f644 Handle 'classical' discharges, theoretically.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2685
diff changeset
205 }
696
708b270dfd30 OutGenerators use now facets to fetch necessary data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 695
diff changeset
206 else {
708b270dfd30 OutGenerators use now facets to fetch necessary data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 695
diff changeset
207 logger.warn("Unknown facet type for computed discharge: " + name);
708b270dfd30 OutGenerators use now facets to fetch necessary data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 695
diff changeset
208 return;
708b270dfd30 OutGenerators use now facets to fetch necessary data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 695
diff changeset
209 }
708b270dfd30 OutGenerators use now facets to fetch necessary data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 695
diff changeset
210 }
708b270dfd30 OutGenerators use now facets to fetch necessary data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 695
diff changeset
211
2206
e2124ca11adb Add manual point handling for many different chart types.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2161
diff changeset
212
1901
da52932f3bc1 Handle interpolated WQ data in Computed Discharge Curve Diagram.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1850
diff changeset
213 /**
da52932f3bc1 Handle interpolated WQ data in Computed Discharge Curve Diagram.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1850
diff changeset
214 * Add WQ Data to plot.
2570
e123c5643f23 Cosmetics, docs.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2325
diff changeset
215 * @param wqkms data as double[][]
1901
da52932f3bc1 Handle interpolated WQ data in Computed Discharge Curve Diagram.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1850
diff changeset
216 */
da52932f3bc1 Handle interpolated WQ data in Computed Discharge Curve Diagram.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1850
diff changeset
217 protected void doWQOut(
2605
15a3684c6bce #366 Display correct descriptions in legend panel of charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2570
diff changeset
218 Object wqkms,
15a3684c6bce #366 Display correct descriptions in legend panel of charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2570
diff changeset
219 ArtifactAndFacet aaf,
15a3684c6bce #366 Display correct descriptions in legend panel of charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2570
diff changeset
220 Document theme,
15a3684c6bce #366 Display correct descriptions in legend panel of charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2570
diff changeset
221 boolean visible
1901
da52932f3bc1 Handle interpolated WQ data in Computed Discharge Curve Diagram.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1850
diff changeset
222 ) {
3054
8bd4cf11c25a Interpolate wkms in computed discharges.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2769
diff changeset
223 logger.debug("ComputedDischargeCurveGenerator: doWQOut");
1901
da52932f3bc1 Handle interpolated WQ data in Computed Discharge Curve Diagram.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1850
diff changeset
224 double [][] data = (double [][]) wqkms;
da52932f3bc1 Handle interpolated WQ data in Computed Discharge Curve Diagram.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1850
diff changeset
225
2605
15a3684c6bce #366 Display correct descriptions in legend panel of charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2570
diff changeset
226 XYSeries series = new StyledXYSeries(aaf.getFacetDescription(), theme);
2685
5652a851f1b4 Fix water-through-mountain in cross sections.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2605
diff changeset
227 StyledSeriesBuilder.addPoints(series, data, true);
1902
6c5229d0b8e5 Refactored to use StyledSeriesBuilder to add Points to DataSeries.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1901
diff changeset
228
1933
9e9cfc036a3f Better use multiple axis feature in chart generators.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1931
diff changeset
229 addAxisSeries(series, YAXIS.W.idx, visible);
1901
da52932f3bc1 Handle interpolated WQ data in Computed Discharge Curve Diagram.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1850
diff changeset
230 }
696
708b270dfd30 OutGenerators use now facets to fetch necessary data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 695
diff changeset
231
1944
21a4d2c677a1 Changed doOut signature, side effect from blackboard feature (to come).
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1937
diff changeset
232
1083
d0db31d1f64c Enable plotting of some annotations that look like MainValues.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1081
diff changeset
233 /**
6429
e32b166c881b issue1370: Add discharge q data to second axis.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6424
diff changeset
234 * Add discharge Q-Series to plot, scale if at gauge.
e32b166c881b issue1370: Add discharge q data to second axis.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6424
diff changeset
235 * @param wqkms actual data
e32b166c881b issue1370: Add discharge q data to second axis.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6424
diff changeset
236 * @param theme theme to use.
e32b166c881b issue1370: Add discharge q data to second axis.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6424
diff changeset
237 */
e32b166c881b issue1370: Add discharge q data to second axis.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6424
diff changeset
238 protected void doDischargeQOut(
e32b166c881b issue1370: Add discharge q data to second axis.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6424
diff changeset
239 WQKms wqkms,
e32b166c881b issue1370: Add discharge q data to second axis.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6424
diff changeset
240 ArtifactAndFacet aaf,
e32b166c881b issue1370: Add discharge q data to second axis.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6424
diff changeset
241 Document theme,
e32b166c881b issue1370: Add discharge q data to second axis.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6424
diff changeset
242 boolean visible
e32b166c881b issue1370: Add discharge q data to second axis.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6424
diff changeset
243 ) {
e32b166c881b issue1370: Add discharge q data to second axis.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6424
diff changeset
244 logger.debug("ComputedDischargeCurveGenerator: doDischargeQOut");
e32b166c881b issue1370: Add discharge q data to second axis.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6424
diff changeset
245 XYSeries series = new StyledXYSeries(aaf.getFacetDescription(), theme);
e32b166c881b issue1370: Add discharge q data to second axis.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6424
diff changeset
246
6445
192fbd23d97f Moved code from ComputedDischargeCurveGenerator to DischargeCurveGenerator.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6444
diff changeset
247 double subtractPNP = getCurrentGaugeDatum();
6429
e32b166c881b issue1370: Add discharge q data to second axis.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6424
diff changeset
248
6445
192fbd23d97f Moved code from ComputedDischargeCurveGenerator to DischargeCurveGenerator.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6444
diff changeset
249 if (subtractPNP == 0d) {
6429
e32b166c881b issue1370: Add discharge q data to second axis.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6424
diff changeset
250 StyledSeriesBuilder.addPointsQW(series, wqkms);
e32b166c881b issue1370: Add discharge q data to second axis.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6424
diff changeset
251 addAxisSeries(series, YAXIS.W.idx, visible);
e32b166c881b issue1370: Add discharge q data to second axis.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6424
diff changeset
252 }
e32b166c881b issue1370: Add discharge q data to second axis.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6424
diff changeset
253 else {
e32b166c881b issue1370: Add discharge q data to second axis.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6424
diff changeset
254 XYSeries series2 = new StyledXYSeries(aaf.getFacetDescription(), theme);
e32b166c881b issue1370: Add discharge q data to second axis.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6424
diff changeset
255 StyledSeriesBuilder.addPointsQW(series2, wqkms);
e32b166c881b issue1370: Add discharge q data to second axis.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6424
diff changeset
256 addAxisSeries(series2, YAXIS.W.idx, false);
e32b166c881b issue1370: Add discharge q data to second axis.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6424
diff changeset
257
e32b166c881b issue1370: Add discharge q data to second axis.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6424
diff changeset
258 // Use second axis...
e32b166c881b issue1370: Add discharge q data to second axis.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6424
diff changeset
259 StyledSeriesBuilder.addPointsQW(series, wqkms, -subtractPNP, 100d);
e32b166c881b issue1370: Add discharge q data to second axis.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6424
diff changeset
260 addAxisSeries(series, YAXIS.WCm.idx, visible);
e32b166c881b issue1370: Add discharge q data to second axis.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6424
diff changeset
261 }
e32b166c881b issue1370: Add discharge q data to second axis.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6424
diff changeset
262 }
e32b166c881b issue1370: Add discharge q data to second axis.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6424
diff changeset
263
e32b166c881b issue1370: Add discharge q data to second axis.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6424
diff changeset
264
e32b166c881b issue1370: Add discharge q data to second axis.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6424
diff changeset
265 /**
6464
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6460
diff changeset
266 * Add W/Q-Series to plot.
1083
d0db31d1f64c Enable plotting of some annotations that look like MainValues.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1081
diff changeset
267 * @param wqkms actual data
d0db31d1f64c Enable plotting of some annotations that look like MainValues.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1081
diff changeset
268 * @param theme theme to use.
d0db31d1f64c Enable plotting of some annotations that look like MainValues.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1081
diff changeset
269 */
1712
7e19449d7826 #253 Modified the title creation of chart curves - titles will now equal the Facet's description.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1684
diff changeset
270 protected void doQOut(
2605
15a3684c6bce #366 Display correct descriptions in legend panel of charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2570
diff changeset
271 WQKms wqkms,
15a3684c6bce #366 Display correct descriptions in legend panel of charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2570
diff changeset
272 ArtifactAndFacet aaf,
15a3684c6bce #366 Display correct descriptions in legend panel of charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2570
diff changeset
273 Document theme,
15a3684c6bce #366 Display correct descriptions in legend panel of charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2570
diff changeset
274 boolean visible
1712
7e19449d7826 #253 Modified the title creation of chart curves - titles will now equal the Facet's description.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1684
diff changeset
275 ) {
6464
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6460
diff changeset
276 logger.debug("ComputedDischargeCurveGenerator: doQOut (add W/Q data).");
2605
15a3684c6bce #366 Display correct descriptions in legend panel of charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2570
diff changeset
277 XYSeries series = new StyledXYSeries(aaf.getFacetDescription(), theme);
1902
6c5229d0b8e5 Refactored to use StyledSeriesBuilder to add Points to DataSeries.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1901
diff changeset
278 StyledSeriesBuilder.addPointsQW(series, wqkms);
393
befedd7629d5 Enabled the WINFO artifact to compute the data for discharge curves (computed) - ComputedDischargeCurveGenerator uses those values now to create the chart.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 392
diff changeset
279
1933
9e9cfc036a3f Better use multiple axis feature in chart generators.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1931
diff changeset
280 addAxisSeries(series, YAXIS.W.idx, visible);
393
befedd7629d5 Enabled the WINFO artifact to compute the data for discharge curves (computed) - ComputedDischargeCurveGenerator uses those values now to create the chart.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 392
diff changeset
281 }
1915
6b7557ffe2f8 Handle STATIC_WQ_ANNOTATION type facets in Computed Discharge Curve Diagrams.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1902
diff changeset
282
6b7557ffe2f8 Handle STATIC_WQ_ANNOTATION type facets in Computed Discharge Curve Diagrams.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1902
diff changeset
283
6b7557ffe2f8 Handle STATIC_WQ_ANNOTATION type facets in Computed Discharge Curve Diagrams.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1902
diff changeset
284 /**
6b7557ffe2f8 Handle STATIC_WQ_ANNOTATION type facets in Computed Discharge Curve Diagrams.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1902
diff changeset
285 * Add WQ-Annotations to plot.
6b7557ffe2f8 Handle STATIC_WQ_ANNOTATION type facets in Computed Discharge Curve Diagrams.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1902
diff changeset
286 * @param wqkms actual data
6b7557ffe2f8 Handle STATIC_WQ_ANNOTATION type facets in Computed Discharge Curve Diagrams.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1902
diff changeset
287 * @param theme theme to use.
6b7557ffe2f8 Handle STATIC_WQ_ANNOTATION type facets in Computed Discharge Curve Diagrams.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1902
diff changeset
288 */
6b7557ffe2f8 Handle STATIC_WQ_ANNOTATION type facets in Computed Discharge Curve Diagrams.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1902
diff changeset
289 protected void doWQAnnotations(
6b7557ffe2f8 Handle STATIC_WQ_ANNOTATION type facets in Computed Discharge Curve Diagrams.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1902
diff changeset
290 Object wqkms,
2325
1fcaeced48f2 #485 Fixed broken renaming of chart themes.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2206
diff changeset
291 ArtifactAndFacet aandf,
1915
6b7557ffe2f8 Handle STATIC_WQ_ANNOTATION type facets in Computed Discharge Curve Diagrams.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1902
diff changeset
292 Document theme,
6b7557ffe2f8 Handle STATIC_WQ_ANNOTATION type facets in Computed Discharge Curve Diagrams.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1902
diff changeset
293 boolean visible
6b7557ffe2f8 Handle STATIC_WQ_ANNOTATION type facets in Computed Discharge Curve Diagrams.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1902
diff changeset
294 ) {
2161
c68f4f227c09 Somewhat unified Annotation handling, use jfreechart-house-toolkit instead of custom StickyAxisAnnotation.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2074
diff changeset
295 List<StickyAxisAnnotation> xy = new ArrayList<StickyAxisAnnotation>();
1915
6b7557ffe2f8 Handle STATIC_WQ_ANNOTATION type facets in Computed Discharge Curve Diagrams.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1902
diff changeset
296 double [][] data = (double [][]) wqkms;
6b7557ffe2f8 Handle STATIC_WQ_ANNOTATION type facets in Computed Discharge Curve Diagrams.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1902
diff changeset
297 for (int i = 0; i< data[0].length; i++) {
3054
8bd4cf11c25a Interpolate wkms in computed discharges.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2769
diff changeset
298 // TODO we need linear interpolation?
2325
1fcaeced48f2 #485 Fixed broken renaming of chart themes.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2206
diff changeset
299 xy.add(new StickyAxisAnnotation(aandf.getFacetDescription(),
1915
6b7557ffe2f8 Handle STATIC_WQ_ANNOTATION type facets in Computed Discharge Curve Diagrams.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1902
diff changeset
300 (float) data[0][i], StickyAxisAnnotation.SimpleAxis.X_AXIS));
2325
1fcaeced48f2 #485 Fixed broken renaming of chart themes.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2206
diff changeset
301 xy.add(new StickyAxisAnnotation(aandf.getFacetDescription(),
1915
6b7557ffe2f8 Handle STATIC_WQ_ANNOTATION type facets in Computed Discharge Curve Diagrams.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1902
diff changeset
302 (float) data[1][i], StickyAxisAnnotation.SimpleAxis.Y_AXIS));
6b7557ffe2f8 Handle STATIC_WQ_ANNOTATION type facets in Computed Discharge Curve Diagrams.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1902
diff changeset
303 }
6b7557ffe2f8 Handle STATIC_WQ_ANNOTATION type facets in Computed Discharge Curve Diagrams.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1902
diff changeset
304
5864
f2e46a668fe6 River artifacts: Renamed FLYSAnnotation to RiverAnnotation.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5863
diff changeset
305 doAnnotations(new RiverAnnotation(aandf.getFacetDescription(), xy),
2325
1fcaeced48f2 #485 Fixed broken renaming of chart themes.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2206
diff changeset
306 aandf, theme, visible);
1915
6b7557ffe2f8 Handle STATIC_WQ_ANNOTATION type facets in Computed Discharge Curve Diagrams.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1902
diff changeset
307 }
1921
d99fdc234da1 Add annotaitons for STATIC_WKMS_INTERPOL facets in Computed Discharge Curves.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1915
diff changeset
308
1944
21a4d2c677a1 Changed doOut signature, side effect from blackboard feature (to come).
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1937
diff changeset
309
1921
d99fdc234da1 Add annotaitons for STATIC_WKMS_INTERPOL facets in Computed Discharge Curves.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1915
diff changeset
310 /**
d99fdc234da1 Add annotaitons for STATIC_WKMS_INTERPOL facets in Computed Discharge Curves.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1915
diff changeset
311 * Add W-Annotations to plot.
2570
e123c5643f23 Cosmetics, docs.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2325
diff changeset
312 * @param wqkms actual data (double[][]).
1921
d99fdc234da1 Add annotaitons for STATIC_WKMS_INTERPOL facets in Computed Discharge Curves.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1915
diff changeset
313 * @param theme theme to use.
d99fdc234da1 Add annotaitons for STATIC_WKMS_INTERPOL facets in Computed Discharge Curves.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1915
diff changeset
314 */
d99fdc234da1 Add annotaitons for STATIC_WKMS_INTERPOL facets in Computed Discharge Curves.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1915
diff changeset
315 protected void doWAnnotations(
d99fdc234da1 Add annotaitons for STATIC_WKMS_INTERPOL facets in Computed Discharge Curves.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1915
diff changeset
316 Object wqkms,
2325
1fcaeced48f2 #485 Fixed broken renaming of chart themes.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2206
diff changeset
317 ArtifactAndFacet aandf,
1921
d99fdc234da1 Add annotaitons for STATIC_WKMS_INTERPOL facets in Computed Discharge Curves.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1915
diff changeset
318 Document theme,
d99fdc234da1 Add annotaitons for STATIC_WKMS_INTERPOL facets in Computed Discharge Curves.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1915
diff changeset
319 boolean visible
d99fdc234da1 Add annotaitons for STATIC_WKMS_INTERPOL facets in Computed Discharge Curves.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1915
diff changeset
320 ) {
2325
1fcaeced48f2 #485 Fixed broken renaming of chart themes.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2206
diff changeset
321 Facet facet = aandf.getFacet();
1fcaeced48f2 #485 Fixed broken renaming of chart themes.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2206
diff changeset
322
2161
c68f4f227c09 Somewhat unified Annotation handling, use jfreechart-house-toolkit instead of custom StickyAxisAnnotation.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2074
diff changeset
323 List<StickyAxisAnnotation> xy = new ArrayList<StickyAxisAnnotation>();
2731
55a3b575f644 Handle 'classical' discharges, theoretically.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2685
diff changeset
324 // Try to find them as WKms as well...
55a3b575f644 Handle 'classical' discharges, theoretically.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2685
diff changeset
325 if (wqkms instanceof double[][]) {
3054
8bd4cf11c25a Interpolate wkms in computed discharges.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2769
diff changeset
326 logger.debug("its double[][] time, baby");
2731
55a3b575f644 Handle 'classical' discharges, theoretically.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2685
diff changeset
327 double [][] data = (double [][]) wqkms;
3054
8bd4cf11c25a Interpolate wkms in computed discharges.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2769
diff changeset
328 // TODO Do we need interpolation?
2731
55a3b575f644 Handle 'classical' discharges, theoretically.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2685
diff changeset
329 for (int i = 0; i< data[0].length; i++) {
55a3b575f644 Handle 'classical' discharges, theoretically.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2685
diff changeset
330 xy.add(new StickyAxisAnnotation(aandf.getFacetDescription(),
55a3b575f644 Handle 'classical' discharges, theoretically.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2685
diff changeset
331 (float) data[1][i], StickyAxisAnnotation.SimpleAxis.Y_AXIS));
55a3b575f644 Handle 'classical' discharges, theoretically.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2685
diff changeset
332 }
55a3b575f644 Handle 'classical' discharges, theoretically.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2685
diff changeset
333
5864
f2e46a668fe6 River artifacts: Renamed FLYSAnnotation to RiverAnnotation.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5863
diff changeset
334 doAnnotations(new RiverAnnotation(facet.getDescription(), xy),
2731
55a3b575f644 Handle 'classical' discharges, theoretically.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2685
diff changeset
335 aandf, theme, visible);
55a3b575f644 Handle 'classical' discharges, theoretically.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2685
diff changeset
336 }
55a3b575f644 Handle 'classical' discharges, theoretically.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2685
diff changeset
337 else {
3054
8bd4cf11c25a Interpolate wkms in computed discharges.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2769
diff changeset
338 logger.debug("its wkms time, baby");
2731
55a3b575f644 Handle 'classical' discharges, theoretically.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2685
diff changeset
339 WKms data = (WKms) wqkms;
3054
8bd4cf11c25a Interpolate wkms in computed discharges.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2769
diff changeset
340 // Assume its WKms.
4047
3dc26ec2558d Removed dead code
Sascha L. Teichmann <teichmann@intevation.de>
parents: 4036
diff changeset
341 // XXX DEAD CODE // double location = getRange()[0];
4036
10e20830e4e9 Use static method from class not object.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3409
diff changeset
342 double w = StaticWKmsArtifact.getWAtKmLin(data, getRange()[0]);
2325
1fcaeced48f2 #485 Fixed broken renaming of chart themes.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2206
diff changeset
343 xy.add(new StickyAxisAnnotation(aandf.getFacetDescription(),
3054
8bd4cf11c25a Interpolate wkms in computed discharges.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2769
diff changeset
344 (float) w, StickyAxisAnnotation.SimpleAxis.Y_AXIS));
2731
55a3b575f644 Handle 'classical' discharges, theoretically.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2685
diff changeset
345
5864
f2e46a668fe6 River artifacts: Renamed FLYSAnnotation to RiverAnnotation.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5863
diff changeset
346 doAnnotations(new RiverAnnotation(facet.getDescription(), xy),
2731
55a3b575f644 Handle 'classical' discharges, theoretically.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2685
diff changeset
347 aandf, theme, visible);
1921
d99fdc234da1 Add annotaitons for STATIC_WKMS_INTERPOL facets in Computed Discharge Curves.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1915
diff changeset
348 }
d99fdc234da1 Add annotaitons for STATIC_WKMS_INTERPOL facets in Computed Discharge Curves.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1915
diff changeset
349 }
392
72177020db92 Improved the transition model and added classes to enable the WINFO artifact to create computed discharge curves - NOTE: each of the new classes is just a stub.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff changeset
350 }
72177020db92 Improved the transition model and added classes to enable the WINFO artifact to create computed discharge curves - NOTE: each of the new classes is just a stub.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
diff changeset
351 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org