annotate artifacts/src/main/java/org/dive4elements/river/exports/fixings/FixWQCurveGenerator.java @ 9556:9b8e8fc1f408

Use facetName in all processors as themeType for legend aggregation.
author gernotbelger
date Tue, 23 Oct 2018 16:26:58 +0200
parents ddcd52d239cd
children
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: 5978
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: 5978
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: 5740
diff changeset
9 package org.dive4elements.river.exports.fixings;
3055
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
10
3770
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
11 import java.awt.BasicStroke;
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
12 import java.awt.Color;
9348
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 9325
diff changeset
13 import java.awt.Shape;
3770
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
14 import java.text.DateFormat;
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
15 import java.util.ArrayList;
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
16 import java.util.List;
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
17
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
18 import org.apache.log4j.Logger;
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
19 import org.jfree.chart.JFreeChart;
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
20 import org.jfree.chart.annotations.XYTextAnnotation;
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
21 import org.jfree.chart.plot.Marker;
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
22 import org.jfree.chart.plot.ValueMarker;
6559
6791411ed1fc issue1370: Force second axis if at gauge.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6542
diff changeset
23 import org.jfree.chart.plot.XYPlot;
3770
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
24 import org.jfree.chart.title.TextTitle;
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
25 import org.jfree.data.xy.XYSeries;
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
26 import org.jfree.ui.RectangleAnchor;
3911
36507c71725b W(Q) chart: q sectors are now black and labeled by default
Christian Lins <christian.lins@intevation.de>
parents: 3770
diff changeset
27 import org.jfree.ui.RectangleInsets;
3770
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
28 import org.jfree.ui.TextAnchor;
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
29
5831
bd047b71ab37 Repaired internal references
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5740
diff changeset
30 import org.dive4elements.artifactdatabase.state.ArtifactAndFacet;
bd047b71ab37 Repaired internal references
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5740
diff changeset
31 import org.dive4elements.artifactdatabase.state.Facet;
9123
1cc7653ca84f Cleanup of ChartGenerator and ChartGenerator2 code. Put some of the copy/pasted code into a common abstraction.
gernotbelger
parents: 8856
diff changeset
32 import org.dive4elements.artifacts.CallContext;
9360
ddcd52d239cd Outliers in fixation calculation are now shown within the other 'B' event themes and get a separate symbol (triangle).
gernotbelger
parents: 9354
diff changeset
33 import org.dive4elements.artifacts.CallMeta;
5867
59ff03ff48f1 River artifacts: Renamed FLYSArtifact(Collection) to D4EArtifact(Collection).
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5865
diff changeset
34 import org.dive4elements.river.artifacts.D4EArtifact;
5831
bd047b71ab37 Repaired internal references
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5740
diff changeset
35 import org.dive4elements.river.artifacts.StaticWKmsArtifact;
bd047b71ab37 Repaired internal references
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5740
diff changeset
36 import org.dive4elements.river.artifacts.WINFOArtifact;
bd047b71ab37 Repaired internal references
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5740
diff changeset
37 import org.dive4elements.river.artifacts.access.FixAnalysisAccess;
bd047b71ab37 Repaired internal references
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5740
diff changeset
38 import org.dive4elements.river.artifacts.model.DateRange;
bd047b71ab37 Repaired internal references
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5740
diff changeset
39 import org.dive4elements.river.artifacts.model.FacetTypes;
bd047b71ab37 Repaired internal references
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5740
diff changeset
40 import org.dive4elements.river.artifacts.model.NamedDouble;
bd047b71ab37 Repaired internal references
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5740
diff changeset
41 import org.dive4elements.river.artifacts.model.QWDDateRange;
bd047b71ab37 Repaired internal references
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5740
diff changeset
42 import org.dive4elements.river.artifacts.model.WKms;
bd047b71ab37 Repaired internal references
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5740
diff changeset
43 import org.dive4elements.river.artifacts.model.WQKms;
bd047b71ab37 Repaired internal references
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5740
diff changeset
44 import org.dive4elements.river.artifacts.model.fixings.FixFunction;
bd047b71ab37 Repaired internal references
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5740
diff changeset
45 import org.dive4elements.river.artifacts.model.fixings.FixWQCurveFacet;
bd047b71ab37 Repaired internal references
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5740
diff changeset
46 import org.dive4elements.river.artifacts.model.fixings.QWD;
bd047b71ab37 Repaired internal references
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5740
diff changeset
47 import org.dive4elements.river.artifacts.model.fixings.QWI;
bd047b71ab37 Repaired internal references
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5740
diff changeset
48 import org.dive4elements.river.artifacts.resources.Resources;
bd047b71ab37 Repaired internal references
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5740
diff changeset
49 import org.dive4elements.river.exports.ChartGenerator;
6467
0f997d6397c6 FixWQCurveGenerator: Introduce second (cm) axis.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6438
diff changeset
50 import org.dive4elements.river.exports.DischargeCurveGenerator;
5831
bd047b71ab37 Repaired internal references
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5740
diff changeset
51 import org.dive4elements.river.exports.StyledSeriesBuilder;
bd047b71ab37 Repaired internal references
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5740
diff changeset
52 import org.dive4elements.river.jfree.CollisionFreeXYTextAnnotation;
5864
f2e46a668fe6 River artifacts: Renamed FLYSAnnotation to RiverAnnotation.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5863
diff changeset
53 import org.dive4elements.river.jfree.RiverAnnotation;
5831
bd047b71ab37 Repaired internal references
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5740
diff changeset
54 import org.dive4elements.river.jfree.JFreeUtil;
bd047b71ab37 Repaired internal references
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5740
diff changeset
55 import org.dive4elements.river.jfree.StickyAxisAnnotation;
bd047b71ab37 Repaired internal references
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5740
diff changeset
56 import org.dive4elements.river.jfree.StyledXYSeries;
bd047b71ab37 Repaired internal references
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5740
diff changeset
57 import org.dive4elements.river.model.Gauge;
bd047b71ab37 Repaired internal references
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5740
diff changeset
58 import org.dive4elements.river.model.River;
6905
1b35b2ddfc28 Artifacts: Introduce ThemeDocument & make stuff compileable again. THIS BREAKS THE SYSTEM! TODO: Move ThemeUtils into ThemeDocument.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 6876
diff changeset
59 import org.dive4elements.river.themes.ThemeDocument;
5865
73da40528cf2 River artifacts: Renamed FLYSUtils to RiverUtils.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5864
diff changeset
60 import org.dive4elements.river.utils.RiverUtils;
7542
db780379ea82 issue1585: Part 2/2 of patch from Sascha Teichmann to define datapoint shapes.
sascha.teichmann@intevation.de
parents: 7527
diff changeset
61 import org.dive4elements.river.java2d.ShapeUtils;
9360
ddcd52d239cd Outliers in fixation calculation are now shown within the other 'B' event themes and get a separate symbol (triangle).
gernotbelger
parents: 9354
diff changeset
62 import org.dive4elements.river.java2d.ShapeUtils.ShapeType;
7691
fa4fbd66e752 (issue1579) Fix axes syncronisation at Gauges
Andre Heinecke <aheinecke@intevation.de>
parents: 7545
diff changeset
63 import org.dive4elements.river.jfree.Bounds;
fa4fbd66e752 (issue1579) Fix axes syncronisation at Gauges
Andre Heinecke <aheinecke@intevation.de>
parents: 7545
diff changeset
64 import org.dive4elements.river.jfree.DoubleBounds;
fa4fbd66e752 (issue1579) Fix axes syncronisation at Gauges
Andre Heinecke <aheinecke@intevation.de>
parents: 7545
diff changeset
65
fa4fbd66e752 (issue1579) Fix axes syncronisation at Gauges
Andre Heinecke <aheinecke@intevation.de>
parents: 7545
diff changeset
66 import org.jfree.data.Range;
fa4fbd66e752 (issue1579) Fix axes syncronisation at Gauges
Andre Heinecke <aheinecke@intevation.de>
parents: 7545
diff changeset
67
3254
9a4707ec7800 Add styles for W(t) chart domain markers
Christian Lins <christian.lins@intevation.de>
parents: 3215
diff changeset
68 /**
3286
f062b5a90e26 Add showpointlabel style attribute
Christian Lins <christian.lins@intevation.de>
parents: 3256
diff changeset
69 * Generator for WQ fixing charts.
3254
9a4707ec7800 Add styles for W(t) chart domain markers
Christian Lins <christian.lins@intevation.de>
parents: 3215
diff changeset
70 * @author <a href="mailto:christian.lins@intevation.de">Christian Lins</a>
9a4707ec7800 Add styles for W(t) chart domain markers
Christian Lins <christian.lins@intevation.de>
parents: 3215
diff changeset
71 */
3076
5642a83420f2 FLYS artifacts: Removed trailing whitespace.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 3073
diff changeset
72 public class FixWQCurveGenerator
3215
750e98fc8b76 FixA: Tweaked the derivate diagram a bit and added chart info.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 3212
diff changeset
73 extends FixChartGenerator
750e98fc8b76 FixA: Tweaked the derivate diagram a bit and added chart info.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 3212
diff changeset
74 implements FacetTypes
3055
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
75 {
8202
e4606eae8ea5 sed src/**/*.java 's/logger/log/g'
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7695
diff changeset
76 /** Private log. */
e4606eae8ea5 sed src/**/*.java 's/logger/log/g'
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7695
diff changeset
77 private static Logger log =
3770
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
78 Logger.getLogger(FixWQCurveGenerator.class);
3055
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
79
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
80 public static final String I18N_CHART_TITLE =
3770
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
81 "chart.fixings.wq.title";
3055
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
82
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
83 public static final String I18N_CHART_SUBTITLE =
3770
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
84 "chart.fixings.wq.subtitle";
3055
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
85
3410
f382127df48e Add analysis periods as subtitle to W/Q chart
Christian Lins <christian.lins@intevation.de>
parents: 3409
diff changeset
86 public static final String I18N_CHART_SUBTITLE1 =
3770
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
87 "chart.fixings.wq.subtitle1";
3410
f382127df48e Add analysis periods as subtitle to W/Q chart
Christian Lins <christian.lins@intevation.de>
parents: 3409
diff changeset
88
3055
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
89 public static final String I18N_XAXIS_LABEL =
3770
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
90 "chart.fixings.wq.xaxis.label";
3055
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
91
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
92 public static final String I18N_YAXIS_LABEL =
3770
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
93 "chart.fixings.wq.yaxis.label";
3055
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
94
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
95 public static final String I18N_CHART_TITLE_DEFAULT =
3770
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
96 "Fixierungsanalyse";
3055
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
97
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
98 public static final String I18N_XAXIS_LABEL_DEFAULT =
3770
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
99 "Q [m\u00B3/s]";
3055
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
100
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
101 public static final String I18N_YAXIS_LABEL_DEFAULT =
3770
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
102 "W [NN + m]";
3055
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
103
5739
9950cbb7dba3 FixWQCurveGenerator: issue1149, show calculated wq as points.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 5731
diff changeset
104 public static final double EPSILON = 0.001d;
9950cbb7dba3 FixWQCurveGenerator: issue1149, show calculated wq as points.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 5731
diff changeset
105
3055
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
106 public static enum YAXIS {
6467
0f997d6397c6 FixWQCurveGenerator: Introduce second (cm) axis.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6438
diff changeset
107 WCm(0),
0f997d6397c6 FixWQCurveGenerator: Introduce second (cm) axis.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6438
diff changeset
108 W(1);
3055
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
109 public int idx;
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
110 private YAXIS(int c) {
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
111 idx = c;
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
112 }
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
113 }
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
114
3406
3732e1bab0aa Add kilometer to chart titles
Christian Lins <christian.lins@intevation.de>
parents: 3286
diff changeset
115
4147
db0b9cff8496 Cosmetics, documentation.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 4143
diff changeset
116 /** Needed to access data to create subtitle. */
5867
59ff03ff48f1 River artifacts: Renamed FLYSArtifact(Collection) to D4EArtifact(Collection).
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5865
diff changeset
117 protected D4EArtifact artifact;
3406
3732e1bab0aa Add kilometer to chart titles
Christian Lins <christian.lins@intevation.de>
parents: 3286
diff changeset
118
6559
6791411ed1fc issue1370: Force second axis if at gauge.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6542
diff changeset
119 /** Returns value != 0 if the current km is not at a gauge. */
6467
0f997d6397c6 FixWQCurveGenerator: Introduce second (cm) axis.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6438
diff changeset
120 public double getCurrentGaugeDatum() {
9123
1cc7653ca84f Cleanup of ChartGenerator and ChartGenerator2 code. Put some of the copy/pasted code into a common abstraction.
gernotbelger
parents: 8856
diff changeset
121 Object ckm = getContext().getContextValue(CURRENT_KM);
7525
6650485c2c9b Part fix for flys/issue1585: Use result from fitting to display interpolated W/Q points, too. TODO: Draw interpolated as circles.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7270
diff changeset
122 if (ckm != null) {
6467
0f997d6397c6 FixWQCurveGenerator: Introduce second (cm) axis.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6438
diff changeset
123 return DischargeCurveGenerator.getCurrentGaugeDatum(
7525
6650485c2c9b Part fix for flys/issue1585: Use result from fitting to display interpolated W/Q points, too. TODO: Draw interpolated as circles.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7270
diff changeset
124 (Double) ckm,
6531
52d160b16a4c FixWQCurveGenerator: Set same tolerance to "at Gauge?"-definition as in other w/q cases.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6530
diff changeset
125 (D4EArtifact) getMaster(), 1e-4);
6467
0f997d6397c6 FixWQCurveGenerator: Introduce second (cm) axis.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6438
diff changeset
126 }
7525
6650485c2c9b Part fix for flys/issue1585: Use result from fitting to display interpolated W/Q points, too. TODO: Draw interpolated as circles.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7270
diff changeset
127 return 0d;
6467
0f997d6397c6 FixWQCurveGenerator: Introduce second (cm) axis.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6438
diff changeset
128 }
0f997d6397c6 FixWQCurveGenerator: Introduce second (cm) axis.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6438
diff changeset
129
6559
6791411ed1fc issue1370: Force second axis if at gauge.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6542
diff changeset
130 /** Overriden to show second axis also if no visible data present. */
6791411ed1fc issue1370: Force second axis if at gauge.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6542
diff changeset
131 @Override
6791411ed1fc issue1370: Force second axis if at gauge.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6542
diff changeset
132 protected void adjustAxes(XYPlot plot) {
6791411ed1fc issue1370: Force second axis if at gauge.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6542
diff changeset
133 super.adjustAxes(plot);
6791411ed1fc issue1370: Force second axis if at gauge.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6542
diff changeset
134 if (getCurrentGaugeDatum() != 0d) {
6791411ed1fc issue1370: Force second axis if at gauge.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6542
diff changeset
135 // Show the W[*m] axis even if there is no data.
6791411ed1fc issue1370: Force second axis if at gauge.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6542
diff changeset
136 plot.setRangeAxis(1, createYAxis(YAXIS.W.idx));
7691
fa4fbd66e752 (issue1579) Fix axes syncronisation at Gauges
Andre Heinecke <aheinecke@intevation.de>
parents: 7545
diff changeset
137 syncWAxisRanges();
6559
6791411ed1fc issue1370: Force second axis if at gauge.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6542
diff changeset
138 }
6791411ed1fc issue1370: Force second axis if at gauge.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6542
diff changeset
139 }
6791411ed1fc issue1370: Force second axis if at gauge.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6542
diff changeset
140
7691
fa4fbd66e752 (issue1579) Fix axes syncronisation at Gauges
Andre Heinecke <aheinecke@intevation.de>
parents: 7545
diff changeset
141 // XXX This is a copy of DischargeCurveGenerator syncWAxisRanges
fa4fbd66e752 (issue1579) Fix axes syncronisation at Gauges
Andre Heinecke <aheinecke@intevation.de>
parents: 7545
diff changeset
142 // even without fancy Q Symetry this class should inherit
fa4fbd66e752 (issue1579) Fix axes syncronisation at Gauges
Andre Heinecke <aheinecke@intevation.de>
parents: 7545
diff changeset
143 // from there..
fa4fbd66e752 (issue1579) Fix axes syncronisation at Gauges
Andre Heinecke <aheinecke@intevation.de>
parents: 7545
diff changeset
144 protected void syncWAxisRanges() {
fa4fbd66e752 (issue1579) Fix axes syncronisation at Gauges
Andre Heinecke <aheinecke@intevation.de>
parents: 7545
diff changeset
145 // Syncronizes the ranges of both W Axes to make sure
fa4fbd66e752 (issue1579) Fix axes syncronisation at Gauges
Andre Heinecke <aheinecke@intevation.de>
parents: 7545
diff changeset
146 // that the Data matches for both axes.
fa4fbd66e752 (issue1579) Fix axes syncronisation at Gauges
Andre Heinecke <aheinecke@intevation.de>
parents: 7545
diff changeset
147 Bounds boundsInMGauge = getYBounds(YAXIS.W.idx);
fa4fbd66e752 (issue1579) Fix axes syncronisation at Gauges
Andre Heinecke <aheinecke@intevation.de>
parents: 7545
diff changeset
148 Bounds boundsInCM = getYBounds(YAXIS.WCm.idx);
fa4fbd66e752 (issue1579) Fix axes syncronisation at Gauges
Andre Heinecke <aheinecke@intevation.de>
parents: 7545
diff changeset
149
fa4fbd66e752 (issue1579) Fix axes syncronisation at Gauges
Andre Heinecke <aheinecke@intevation.de>
parents: 7545
diff changeset
150 // XXX Q-Symetry: I am assuming here that there can only
fa4fbd66e752 (issue1579) Fix axes syncronisation at Gauges
Andre Heinecke <aheinecke@intevation.de>
parents: 7545
diff changeset
151 // be a fixed Range for WinM as this is currently the only
fa4fbd66e752 (issue1579) Fix axes syncronisation at Gauges
Andre Heinecke <aheinecke@intevation.de>
parents: 7545
diff changeset
152 // thing that is configureable.
fa4fbd66e752 (issue1579) Fix axes syncronisation at Gauges
Andre Heinecke <aheinecke@intevation.de>
parents: 7545
diff changeset
153 Range fixedWinMRange = getRangeForAxisFromSettings(
fa4fbd66e752 (issue1579) Fix axes syncronisation at Gauges
Andre Heinecke <aheinecke@intevation.de>
parents: 7545
diff changeset
154 getYAxisWalker().getId(YAXIS.W.idx));
fa4fbd66e752 (issue1579) Fix axes syncronisation at Gauges
Andre Heinecke <aheinecke@intevation.de>
parents: 7545
diff changeset
155
fa4fbd66e752 (issue1579) Fix axes syncronisation at Gauges
Andre Heinecke <aheinecke@intevation.de>
parents: 7545
diff changeset
156 // The combination of Range and Bounds is crazy..
fa4fbd66e752 (issue1579) Fix axes syncronisation at Gauges
Andre Heinecke <aheinecke@intevation.de>
parents: 7545
diff changeset
157 if (fixedWinMRange != null) {
fa4fbd66e752 (issue1579) Fix axes syncronisation at Gauges
Andre Heinecke <aheinecke@intevation.de>
parents: 7545
diff changeset
158 boundsInMGauge = new DoubleBounds(fixedWinMRange.getLowerBound(),
fa4fbd66e752 (issue1579) Fix axes syncronisation at Gauges
Andre Heinecke <aheinecke@intevation.de>
parents: 7545
diff changeset
159 fixedWinMRange.getUpperBound());
fa4fbd66e752 (issue1579) Fix axes syncronisation at Gauges
Andre Heinecke <aheinecke@intevation.de>
parents: 7545
diff changeset
160 }
fa4fbd66e752 (issue1579) Fix axes syncronisation at Gauges
Andre Heinecke <aheinecke@intevation.de>
parents: 7545
diff changeset
161
8856
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
162 log.debug("Syncing Axis Bounds. Bounds W: "
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
163 + boundsInMGauge.toString()
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
164 + " Bounds Wcm: " + boundsInCM.toString());
7691
fa4fbd66e752 (issue1579) Fix axes syncronisation at Gauges
Andre Heinecke <aheinecke@intevation.de>
parents: 7545
diff changeset
165
fa4fbd66e752 (issue1579) Fix axes syncronisation at Gauges
Andre Heinecke <aheinecke@intevation.de>
parents: 7545
diff changeset
166 double datum = getCurrentGaugeDatum();
fa4fbd66e752 (issue1579) Fix axes syncronisation at Gauges
Andre Heinecke <aheinecke@intevation.de>
parents: 7545
diff changeset
167
fa4fbd66e752 (issue1579) Fix axes syncronisation at Gauges
Andre Heinecke <aheinecke@intevation.de>
parents: 7545
diff changeset
168 // Convert boundsInMGauge to Datum+cm
8856
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
169 double convertedLower =
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
170 ((Double)boundsInMGauge.getLower() - datum) * 100;
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
171 double convertedUpper =
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
172 ((Double)boundsInMGauge.getUpper() - datum) * 100;
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
173 Bounds convertedBounds =
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
174 new DoubleBounds(convertedLower, convertedUpper);
7691
fa4fbd66e752 (issue1579) Fix axes syncronisation at Gauges
Andre Heinecke <aheinecke@intevation.de>
parents: 7545
diff changeset
175
fa4fbd66e752 (issue1579) Fix axes syncronisation at Gauges
Andre Heinecke <aheinecke@intevation.de>
parents: 7545
diff changeset
176 // Now combine both Ranges
fa4fbd66e752 (issue1579) Fix axes syncronisation at Gauges
Andre Heinecke <aheinecke@intevation.de>
parents: 7545
diff changeset
177 boundsInCM = boundsInCM.combine(convertedBounds);
fa4fbd66e752 (issue1579) Fix axes syncronisation at Gauges
Andre Heinecke <aheinecke@intevation.de>
parents: 7545
diff changeset
178
fa4fbd66e752 (issue1579) Fix axes syncronisation at Gauges
Andre Heinecke <aheinecke@intevation.de>
parents: 7545
diff changeset
179 // Recalculate absolute bounds
8856
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
180 boundsInMGauge = new DoubleBounds(
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
181 (Double)boundsInCM.getLower() / 100d + datum,
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
182 (Double)boundsInCM.getUpper() / 100d + datum);
7691
fa4fbd66e752 (issue1579) Fix axes syncronisation at Gauges
Andre Heinecke <aheinecke@intevation.de>
parents: 7545
diff changeset
183
fa4fbd66e752 (issue1579) Fix axes syncronisation at Gauges
Andre Heinecke <aheinecke@intevation.de>
parents: 7545
diff changeset
184 // Set the new combined bounds
fa4fbd66e752 (issue1579) Fix axes syncronisation at Gauges
Andre Heinecke <aheinecke@intevation.de>
parents: 7545
diff changeset
185 setYBounds(YAXIS.W.idx, boundsInMGauge);
fa4fbd66e752 (issue1579) Fix axes syncronisation at Gauges
Andre Heinecke <aheinecke@intevation.de>
parents: 7545
diff changeset
186 setYBounds(YAXIS.WCm.idx, boundsInCM);
8202
e4606eae8ea5 sed src/**/*.java 's/logger/log/g'
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7695
diff changeset
187 log.debug("Synced Bounds W: " + boundsInMGauge.toString() +
7691
fa4fbd66e752 (issue1579) Fix axes syncronisation at Gauges
Andre Heinecke <aheinecke@intevation.de>
parents: 7545
diff changeset
188 " Bounds Wcm: " + boundsInCM.toString());
fa4fbd66e752 (issue1579) Fix axes syncronisation at Gauges
Andre Heinecke <aheinecke@intevation.de>
parents: 7545
diff changeset
189 }
fa4fbd66e752 (issue1579) Fix axes syncronisation at Gauges
Andre Heinecke <aheinecke@intevation.de>
parents: 7545
diff changeset
190
3055
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
191 @Override
8856
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
192 public void doOut(
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
193 ArtifactAndFacet aaf,
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
194 ThemeDocument doc,
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
195 boolean visible
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
196 ) {
8202
e4606eae8ea5 sed src/**/*.java 's/logger/log/g'
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7695
diff changeset
197 log.debug("doOut: " + aaf.getFacetName());
4361
7302c635dfda FixWQCurveGenerator: Refac, extracted a prepareChartData from doOut, to be reused.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 4346
diff changeset
198 if (!prepareChartData(aaf, doc, visible)) {
8202
e4606eae8ea5 sed src/**/*.java 's/logger/log/g'
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7695
diff changeset
199 log.warn("Unknown facet, name " + aaf.getFacetName());
4361
7302c635dfda FixWQCurveGenerator: Refac, extracted a prepareChartData from doOut, to be reused.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 4346
diff changeset
200 }
7302c635dfda FixWQCurveGenerator: Refac, extracted a prepareChartData from doOut, to be reused.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 4346
diff changeset
201 }
7302c635dfda FixWQCurveGenerator: Refac, extracted a prepareChartData from doOut, to be reused.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 4346
diff changeset
202
6472
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6467
diff changeset
203 /**
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6467
diff changeset
204 * Return true if data could be handled,
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6467
diff changeset
205 * to be overridden to add more handled data.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6467
diff changeset
206 */
8856
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
207 public boolean prepareChartData(
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
208 ArtifactAndFacet aaf,
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
209 ThemeDocument doc,
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
210 boolean visible
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
211 ) {
3056
0b5a7a2c3724 Try to workaround some exception in FixWQCurveFacet and FixWQCurveGenerator
Christian Lins <christian.lins@intevation.de>
parents: 3055
diff changeset
212 String name = aaf.getFacetName();
0b5a7a2c3724 Try to workaround some exception in FixWQCurveFacet and FixWQCurveGenerator
Christian Lins <christian.lins@intevation.de>
parents: 3055
diff changeset
213
6426
ed27a894292a Cosmetics, doc.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6101
diff changeset
214 this.artifact = (D4EArtifact) aaf.getArtifact();
3406
3732e1bab0aa Add kilometer to chart titles
Christian Lins <christian.lins@intevation.de>
parents: 3286
diff changeset
215
9123
1cc7653ca84f Cleanup of ChartGenerator and ChartGenerator2 code. Put some of the copy/pasted code into a common abstraction.
gernotbelger
parents: 8856
diff changeset
216 final CallContext context = getContext();
1cc7653ca84f Cleanup of ChartGenerator and ChartGenerator2 code. Put some of the copy/pasted code into a common abstraction.
gernotbelger
parents: 8856
diff changeset
217
3133
6f6a8e5fb7a4 Theme updates for sector average wq curves/points
Christian Lins <christian.lins@intevation.de>
parents: 3132
diff changeset
218 if(name.startsWith(FIX_SECTOR_AVERAGE_WQ)) {
3056
0b5a7a2c3724 Try to workaround some exception in FixWQCurveFacet and FixWQCurveGenerator
Christian Lins <christian.lins@intevation.de>
parents: 3055
diff changeset
219 doSectorAverageOut(aaf, doc, visible);
3062
7660cfe5e8f6 FixWQCurveGenerator can generate charts from Fix*-Facets (in theory and not complete)
Christian Lins <christian.lins@intevation.de>
parents: 3060
diff changeset
220 }
7660cfe5e8f6 FixWQCurveGenerator can generate charts from Fix*-Facets (in theory and not complete)
Christian Lins <christian.lins@intevation.de>
parents: 3060
diff changeset
221 else if(FIX_ANALYSIS_EVENTS_WQ.equals(name)) {
3056
0b5a7a2c3724 Try to workaround some exception in FixWQCurveFacet and FixWQCurveGenerator
Christian Lins <christian.lins@intevation.de>
parents: 3055
diff changeset
222 doAnalysisEventsOut(aaf, doc, visible);
3062
7660cfe5e8f6 FixWQCurveGenerator can generate charts from Fix*-Facets (in theory and not complete)
Christian Lins <christian.lins@intevation.de>
parents: 3060
diff changeset
223 }
7525
6650485c2c9b Part fix for flys/issue1585: Use result from fitting to display interpolated W/Q points, too. TODO: Draw interpolated as circles.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7270
diff changeset
224 else if(FIX_REFERENCE_EVENTS_WQ.equals(name)
6650485c2c9b Part fix for flys/issue1585: Use result from fitting to display interpolated W/Q points, too. TODO: Draw interpolated as circles.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7270
diff changeset
225 || FIX_EVENTS.equals(name)) {
3056
0b5a7a2c3724 Try to workaround some exception in FixWQCurveFacet and FixWQCurveGenerator
Christian Lins <christian.lins@intevation.de>
parents: 3055
diff changeset
226 doReferenceEventsOut(aaf, doc, visible);
3062
7660cfe5e8f6 FixWQCurveGenerator can generate charts from Fix*-Facets (in theory and not complete)
Christian Lins <christian.lins@intevation.de>
parents: 3060
diff changeset
227 }
7660cfe5e8f6 FixWQCurveGenerator can generate charts from Fix*-Facets (in theory and not complete)
Christian Lins <christian.lins@intevation.de>
parents: 3060
diff changeset
228 else if(FIX_WQ_CURVE.equals(name)) {
3056
0b5a7a2c3724 Try to workaround some exception in FixWQCurveFacet and FixWQCurveGenerator
Christian Lins <christian.lins@intevation.de>
parents: 3055
diff changeset
229 doWQCurveOut(aaf, doc, visible);
3062
7660cfe5e8f6 FixWQCurveGenerator can generate charts from Fix*-Facets (in theory and not complete)
Christian Lins <christian.lins@intevation.de>
parents: 3060
diff changeset
230 }
3578
bae185bf9d2d Theme the qsector markers.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3551
diff changeset
231 else if(QSECTOR.equals(name)) {
bae185bf9d2d Theme the qsector markers.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3551
diff changeset
232 doQSectorOut(aaf, doc, visible);
bae185bf9d2d Theme the qsector markers.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3551
diff changeset
233 }
7525
6650485c2c9b Part fix for flys/issue1585: Use result from fitting to display interpolated W/Q points, too. TODO: Draw interpolated as circles.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7270
diff changeset
234 /*
5731
0152d639d7a7 FixWQCurveGenerator: Render fix events.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 5339
diff changeset
235 else if(FIX_EVENTS.equals(name)) {
0152d639d7a7 FixWQCurveGenerator: Render fix events.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 5339
diff changeset
236 doEventsOut(aaf, doc, visible);
0152d639d7a7 FixWQCurveGenerator: Render fix events.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 5339
diff changeset
237 }
7525
6650485c2c9b Part fix for flys/issue1585: Use result from fitting to display interpolated W/Q points, too. TODO: Draw interpolated as circles.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7270
diff changeset
238 */
4143
58864f4f6e3b Fix issue946 (own style for wkms annotation facets in wq diagrams).
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3911
diff changeset
239 else if(/*STATIC_WKMS_INTERPOL.equals(name) ||*/
58864f4f6e3b Fix issue946 (own style for wkms annotation facets in wq diagrams).
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3911
diff changeset
240 STATIC_WKMS_MARKS.equals(name) ||
3587
9dfbd36474b8 Add more facets to DC and W/Q diag.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3585
diff changeset
241 STATIC_WKMS.equals(name) ||
9dfbd36474b8 Add more facets to DC and W/Q diag.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3585
diff changeset
242 HEIGHTMARKS_POINTS.equals(name) ) {
9dfbd36474b8 Add more facets to DC and W/Q diag.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3585
diff changeset
243 doWAnnotations(
9dfbd36474b8 Add more facets to DC and W/Q diag.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3585
diff changeset
244 aaf.getData(context),
9dfbd36474b8 Add more facets to DC and W/Q diag.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3585
diff changeset
245 aaf,
9dfbd36474b8 Add more facets to DC and W/Q diag.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3585
diff changeset
246 doc,
9dfbd36474b8 Add more facets to DC and W/Q diag.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3585
diff changeset
247 visible);
9dfbd36474b8 Add more facets to DC and W/Q diag.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3585
diff changeset
248 }
4143
58864f4f6e3b Fix issue946 (own style for wkms annotation facets in wq diagrams).
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3911
diff changeset
249 else if (LONGITUDINAL_W.equals(name) || STATIC_WQ.equals(name)
6492
f3e5c6d6b0a2 issue1383: FixWQCurveGenerator: handle new facet type.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6474
diff changeset
250 || STATIC_WKMS_INTERPOL.equals(name)
f3e5c6d6b0a2 issue1383: FixWQCurveGenerator: handle new facet type.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6474
diff changeset
251 || FIX_WQ_LS.equals(name)) {
3585
c105b4466b4e Basedata in FixA WQ DC and diagram.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3578
diff changeset
252 doWQOut(aaf.getData(context), aaf, doc, visible);
c105b4466b4e Basedata in FixA WQ DC and diagram.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3578
diff changeset
253 }
3588
76571c601d06 Add more discharge curve data to DC and W/Q diag.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3587
diff changeset
254 else if (name.equals(DISCHARGE_CURVE)) {
8202
e4606eae8ea5 sed src/**/*.java 's/logger/log/g'
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7695
diff changeset
255 log.debug("diso " + name);
3588
76571c601d06 Add more discharge curve data to DC and W/Q diag.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3587
diff changeset
256 doDischargeOut(
9556
9b8e8fc1f408 Use facetName in all processors as themeType for legend aggregation.
gernotbelger
parents: 9360
diff changeset
257 aaf.getFacetName(),
3770
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
258 (WINFOArtifact) aaf.getArtifact(),
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
259 aaf.getData(context),
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
260 aaf.getFacetDescription(),
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
261 doc,
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
262 visible);
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
263 }
5978
ebd6e8e234e0 Added mainvalues to fixanalysis wq curves.
Raimund Renkert <rrenkert@intevation.de>
parents: 5867
diff changeset
264 else if (name.equals(MAINVALUES_W) || name.equals(MAINVALUES_Q)) {
6527
e1e04db79e3c issue1370: Translate main values if needed.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6492
diff changeset
265 RiverAnnotation mainValues = (RiverAnnotation) aaf.getData(context);
5978
ebd6e8e234e0 Added mainvalues to fixanalysis wq curves.
Raimund Renkert <rrenkert@intevation.de>
parents: 5867
diff changeset
266 doAnnotations(
6527
e1e04db79e3c issue1370: Translate main values if needed.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6492
diff changeset
267 mainValues,
5978
ebd6e8e234e0 Added mainvalues to fixanalysis wq curves.
Raimund Renkert <rrenkert@intevation.de>
parents: 5867
diff changeset
268 aaf,
ebd6e8e234e0 Added mainvalues to fixanalysis wq curves.
Raimund Renkert <rrenkert@intevation.de>
parents: 5867
diff changeset
269 doc,
ebd6e8e234e0 Added mainvalues to fixanalysis wq curves.
Raimund Renkert <rrenkert@intevation.de>
parents: 5867
diff changeset
270 visible);
ebd6e8e234e0 Added mainvalues to fixanalysis wq curves.
Raimund Renkert <rrenkert@intevation.de>
parents: 5867
diff changeset
271 }
3770
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
272 else if (FacetTypes.IS.MANUALPOINTS(aaf.getFacetName())) {
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
273 doPoints(aaf.getData(context),
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
274 aaf,
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
275 doc, visible, YAXIS.W.idx);
3588
76571c601d06 Add more discharge curve data to DC and W/Q diag.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3587
diff changeset
276 }
3062
7660cfe5e8f6 FixWQCurveGenerator can generate charts from Fix*-Facets (in theory and not complete)
Christian Lins <christian.lins@intevation.de>
parents: 3060
diff changeset
277 else {
4361
7302c635dfda FixWQCurveGenerator: Refac, extracted a prepareChartData from doOut, to be reused.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 4346
diff changeset
278 return false;
3055
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
279 }
4361
7302c635dfda FixWQCurveGenerator: Refac, extracted a prepareChartData from doOut, to be reused.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 4346
diff changeset
280 return true;
3055
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
281 }
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
282
4361
7302c635dfda FixWQCurveGenerator: Refac, extracted a prepareChartData from doOut, to be reused.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 4346
diff changeset
283
6426
ed27a894292a Cosmetics, doc.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6101
diff changeset
284 /** Add sector average points to chart. */
8856
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
285 protected void doSectorAverageOut(
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
286 ArtifactAndFacet aaf,
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
287 ThemeDocument doc,
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
288 boolean visible
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
289 ) {
8202
e4606eae8ea5 sed src/**/*.java 's/logger/log/g'
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7695
diff changeset
290 log.debug("doSectorAverageOut");
3055
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
291
9123
1cc7653ca84f Cleanup of ChartGenerator and ChartGenerator2 code. Put some of the copy/pasted code into a common abstraction.
gernotbelger
parents: 8856
diff changeset
292 QWDDateRange qwdd = (QWDDateRange) aaf.getData(getContext());
3551
e7f1556192b3 Avoid class cast exception in FixWQCurveGenerator.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 3466
diff changeset
293 QWD qwd = qwdd != null ? qwdd.getQWD() : null;
e7f1556192b3 Avoid class cast exception in FixWQCurveGenerator.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 3466
diff changeset
294
3132
459750878157 Adapt doAverageSectorOut() to reflect changes of corresponding facet.
Christian Lins <christian.lins@intevation.de>
parents: 3110
diff changeset
295 if(qwd != null) {
3194
e815cf20bab2 Add point labels to W/Q curve
Christian Lins <christian.lins@intevation.de>
parents: 3193
diff changeset
296 addQWSeries(new QWD[] { qwd }, aaf, doc, visible);
3062
7660cfe5e8f6 FixWQCurveGenerator can generate charts from Fix*-Facets (in theory and not complete)
Christian Lins <christian.lins@intevation.de>
parents: 3060
diff changeset
297 }
3133
6f6a8e5fb7a4 Theme updates for sector average wq curves/points
Christian Lins <christian.lins@intevation.de>
parents: 3132
diff changeset
298 else {
8202
e4606eae8ea5 sed src/**/*.java 's/logger/log/g'
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7695
diff changeset
299 log.debug("doSectorAverageOut: qwd == null");
3133
6f6a8e5fb7a4 Theme updates for sector average wq curves/points
Christian Lins <christian.lins@intevation.de>
parents: 3132
diff changeset
300 }
3055
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
301 }
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
302
6426
ed27a894292a Cosmetics, doc.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6101
diff changeset
303 /** Add analysis event points to chart. */
9360
ddcd52d239cd Outliers in fixation calculation are now shown within the other 'B' event themes and get a separate symbol (triangle).
gernotbelger
parents: 9354
diff changeset
304 private void doAnalysisEventsOut(
7527
0ee545a02204 Simplified code.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7525
diff changeset
305 ArtifactAndFacet aaf,
0ee545a02204 Simplified code.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7525
diff changeset
306 ThemeDocument doc,
0ee545a02204 Simplified code.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7525
diff changeset
307 boolean visible
0ee545a02204 Simplified code.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7525
diff changeset
308 ) {
8202
e4606eae8ea5 sed src/**/*.java 's/logger/log/g'
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7695
diff changeset
309 log.debug("doAnalysisEventsOut");
3055
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
310
9123
1cc7653ca84f Cleanup of ChartGenerator and ChartGenerator2 code. Put some of the copy/pasted code into a common abstraction.
gernotbelger
parents: 8856
diff changeset
311 QWD qwd = (QWD)aaf.getData(getContext());
3610
66f539df4e8b Issue 716.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 3596
diff changeset
312
7527
0ee545a02204 Simplified code.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7525
diff changeset
313 if (qwd == null) {
8202
e4606eae8ea5 sed src/**/*.java 's/logger/log/g'
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7695
diff changeset
314 log.debug("doAnalysisEventsOut: qwd == null");
7527
0ee545a02204 Simplified code.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7525
diff changeset
315 return;
0ee545a02204 Simplified code.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7525
diff changeset
316 }
3610
66f539df4e8b Issue 716.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 3596
diff changeset
317
7527
0ee545a02204 Simplified code.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7525
diff changeset
318 double gaugeDatum = getCurrentGaugeDatum();
0ee545a02204 Simplified code.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7525
diff changeset
319 boolean atGauge = gaugeDatum != 0d;
0ee545a02204 Simplified code.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7525
diff changeset
320
0ee545a02204 Simplified code.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7525
diff changeset
321 double factor = atGauge ? 100d : 1d;
0ee545a02204 Simplified code.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7525
diff changeset
322
0ee545a02204 Simplified code.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7525
diff changeset
323 double w = factor*(qwd.getW()-gaugeDatum);
0ee545a02204 Simplified code.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7525
diff changeset
324
9325
094ed9d1f2ad Fixed: change of point style of interpolated data did not change in WQ chart of fixanalysis
gernotbelger
parents: 9123
diff changeset
325 final ThemeDocument theme = configureThemeInterpolated(doc, qwd);
9360
ddcd52d239cd Outliers in fixation calculation are now shown within the other 'B' event themes and get a separate symbol (triangle).
gernotbelger
parents: 9354
diff changeset
326 final XYSeries series = createQWDSeries(getContext().getMeta(), aaf, theme, qwd, qwd.getQ(), qwd.getQ());
7527
0ee545a02204 Simplified code.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7525
diff changeset
327
0ee545a02204 Simplified code.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7525
diff changeset
328 addAxisSeries(series, atGauge ? YAXIS.WCm.idx : YAXIS.W.idx, visible);
0ee545a02204 Simplified code.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7525
diff changeset
329
9325
094ed9d1f2ad Fixed: change of point style of interpolated data did not change in WQ chart of fixanalysis
gernotbelger
parents: 9123
diff changeset
330 if (visible && theme.parseShowPointLabel()) {
7542
db780379ea82 issue1585: Part 2/2 of patch from Sascha Teichmann to define datapoint shapes.
sascha.teichmann@intevation.de
parents: 7527
diff changeset
331
9348
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 9325
diff changeset
332 List<XYTextAnnotation> textAnnos = new ArrayList<>();
7542
db780379ea82 issue1585: Part 2/2 of patch from Sascha Teichmann to define datapoint shapes.
sascha.teichmann@intevation.de
parents: 7527
diff changeset
333
9348
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 9325
diff changeset
334 DateFormat dateFormat = DateFormat.getDateInstance(DateFormat.SHORT);
7542
db780379ea82 issue1585: Part 2/2 of patch from Sascha Teichmann to define datapoint shapes.
sascha.teichmann@intevation.de
parents: 7527
diff changeset
335 XYTextAnnotation anno = new CollisionFreeXYTextAnnotation(
db780379ea82 issue1585: Part 2/2 of patch from Sascha Teichmann to define datapoint shapes.
sascha.teichmann@intevation.de
parents: 7527
diff changeset
336 dateFormat.format(qwd.getDate()),
db780379ea82 issue1585: Part 2/2 of patch from Sascha Teichmann to define datapoint shapes.
sascha.teichmann@intevation.de
parents: 7527
diff changeset
337 qwd.getQ(),
db780379ea82 issue1585: Part 2/2 of patch from Sascha Teichmann to define datapoint shapes.
sascha.teichmann@intevation.de
parents: 7527
diff changeset
338 w);
db780379ea82 issue1585: Part 2/2 of patch from Sascha Teichmann to define datapoint shapes.
sascha.teichmann@intevation.de
parents: 7527
diff changeset
339 textAnnos.add(anno);
db780379ea82 issue1585: Part 2/2 of patch from Sascha Teichmann to define datapoint shapes.
sascha.teichmann@intevation.de
parents: 7527
diff changeset
340
9348
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 9325
diff changeset
341 RiverAnnotation flysAnno = new RiverAnnotation(null, null, null, theme);
7527
0ee545a02204 Simplified code.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7525
diff changeset
342 flysAnno.setTextAnnotations(textAnnos);
0ee545a02204 Simplified code.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7525
diff changeset
343 addAnnotations(flysAnno);
3095
6ea299c208cd Themes for fixing curves and debug output
Christian Lins <christian.lins@intevation.de>
parents: 3091
diff changeset
344 }
3055
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
345 }
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
346
4323
33d6d4025d0f FixWQCurveGenerator: Handle extreme_wq_curve facets (stub).
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 4147
diff changeset
347
6426
ed27a894292a Cosmetics, doc.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6101
diff changeset
348 /** Add reference event points to chart. */
9360
ddcd52d239cd Outliers in fixation calculation are now shown within the other 'B' event themes and get a separate symbol (triangle).
gernotbelger
parents: 9354
diff changeset
349 private void doReferenceEventsOut(
8856
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
350 ArtifactAndFacet aaf,
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
351 ThemeDocument doc,
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
352 boolean visible
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
353 ) {
8202
e4606eae8ea5 sed src/**/*.java 's/logger/log/g'
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7695
diff changeset
354 log.debug("doReferenceEventsOut");
3110
88d49a0a55f0 Removed trailing whitespace.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 3108
diff changeset
355
9123
1cc7653ca84f Cleanup of ChartGenerator and ChartGenerator2 code. Put some of the copy/pasted code into a common abstraction.
gernotbelger
parents: 8856
diff changeset
356 QWI qwd = (QWI)aaf.getData(getContext());
6868
08e3c22500f3 Fix Analysis: Code simplification in facets.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 6687
diff changeset
357 if (qwd == null) {
8202
e4606eae8ea5 sed src/**/*.java 's/logger/log/g'
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7695
diff changeset
358 log.debug("doReferenceEventsOut: qwds == null");
6868
08e3c22500f3 Fix Analysis: Code simplification in facets.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 6687
diff changeset
359 return;
08e3c22500f3 Fix Analysis: Code simplification in facets.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 6687
diff changeset
360 }
3610
66f539df4e8b Issue 716.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 3596
diff changeset
361
7258
0e6b399e72f9 issue1490: Translate text annotations position when displaying w/q- curve at gauge.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 7257
diff changeset
362 double gaugeDatum = getCurrentGaugeDatum();
9354
13bbc75ed0bc Change theme legend label if interpolated
gernotbelger
parents: 9348
diff changeset
363
7542
db780379ea82 issue1585: Part 2/2 of patch from Sascha Teichmann to define datapoint shapes.
sascha.teichmann@intevation.de
parents: 7527
diff changeset
364 boolean atGauge = gaugeDatum != 0d;
9354
13bbc75ed0bc Change theme legend label if interpolated
gernotbelger
parents: 9348
diff changeset
365
7542
db780379ea82 issue1585: Part 2/2 of patch from Sascha Teichmann to define datapoint shapes.
sascha.teichmann@intevation.de
parents: 7527
diff changeset
366 double factor = atGauge ? 100d : 1d;
db780379ea82 issue1585: Part 2/2 of patch from Sascha Teichmann to define datapoint shapes.
sascha.teichmann@intevation.de
parents: 7527
diff changeset
367 double w = factor*(qwd.getW()-gaugeDatum);
9354
13bbc75ed0bc Change theme legend label if interpolated
gernotbelger
parents: 9348
diff changeset
368
13bbc75ed0bc Change theme legend label if interpolated
gernotbelger
parents: 9348
diff changeset
369 final ThemeDocument theme = configureThemeInterpolated(doc, qwd);
9360
ddcd52d239cd Outliers in fixation calculation are now shown within the other 'B' event themes and get a separate symbol (triangle).
gernotbelger
parents: 9354
diff changeset
370 final XYSeries series = createQWDSeries(getContext().getMeta(), aaf, theme, qwd, qwd.getQ(), w);
7542
db780379ea82 issue1585: Part 2/2 of patch from Sascha Teichmann to define datapoint shapes.
sascha.teichmann@intevation.de
parents: 7527
diff changeset
371 series.add(qwd.getQ(), w, false);
db780379ea82 issue1585: Part 2/2 of patch from Sascha Teichmann to define datapoint shapes.
sascha.teichmann@intevation.de
parents: 7527
diff changeset
372
9325
094ed9d1f2ad Fixed: change of point style of interpolated data did not change in WQ chart of fixanalysis
gernotbelger
parents: 9123
diff changeset
373 if (visible && theme.parseShowPointLabel()) {
7542
db780379ea82 issue1585: Part 2/2 of patch from Sascha Teichmann to define datapoint shapes.
sascha.teichmann@intevation.de
parents: 7527
diff changeset
374 DateFormat dateFormat = DateFormat.getDateInstance(
db780379ea82 issue1585: Part 2/2 of patch from Sascha Teichmann to define datapoint shapes.
sascha.teichmann@intevation.de
parents: 7527
diff changeset
375 DateFormat.SHORT);
db780379ea82 issue1585: Part 2/2 of patch from Sascha Teichmann to define datapoint shapes.
sascha.teichmann@intevation.de
parents: 7527
diff changeset
376
db780379ea82 issue1585: Part 2/2 of patch from Sascha Teichmann to define datapoint shapes.
sascha.teichmann@intevation.de
parents: 7527
diff changeset
377 XYTextAnnotation anno = new CollisionFreeXYTextAnnotation(
6868
08e3c22500f3 Fix Analysis: Code simplification in facets.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 6687
diff changeset
378 dateFormat.format(qwd.getDate()),
08e3c22500f3 Fix Analysis: Code simplification in facets.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 6687
diff changeset
379 qwd.getQ(),
7542
db780379ea82 issue1585: Part 2/2 of patch from Sascha Teichmann to define datapoint shapes.
sascha.teichmann@intevation.de
parents: 7527
diff changeset
380 w);
6868
08e3c22500f3 Fix Analysis: Code simplification in facets.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 6687
diff changeset
381
9348
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 9325
diff changeset
382 List<XYTextAnnotation> textAnnos = new ArrayList<>();
7542
db780379ea82 issue1585: Part 2/2 of patch from Sascha Teichmann to define datapoint shapes.
sascha.teichmann@intevation.de
parents: 7527
diff changeset
383 textAnnos.add(anno);
8856
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
384 RiverAnnotation flysAnno =
9325
094ed9d1f2ad Fixed: change of point style of interpolated data did not change in WQ chart of fixanalysis
gernotbelger
parents: 9123
diff changeset
385 new RiverAnnotation(null, null, null, theme);
6868
08e3c22500f3 Fix Analysis: Code simplification in facets.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 6687
diff changeset
386 flysAnno.setTextAnnotations(textAnnos);
08e3c22500f3 Fix Analysis: Code simplification in facets.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 6687
diff changeset
387 addAnnotations(flysAnno);
3610
66f539df4e8b Issue 716.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 3596
diff changeset
388 }
7258
0e6b399e72f9 issue1490: Translate text annotations position when displaying w/q- curve at gauge.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 7257
diff changeset
389
7542
db780379ea82 issue1585: Part 2/2 of patch from Sascha Teichmann to define datapoint shapes.
sascha.teichmann@intevation.de
parents: 7527
diff changeset
390 addAxisSeries(series, atGauge ? YAXIS.WCm.idx : YAXIS.W.idx, visible);
3055
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
391 }
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
392
9354
13bbc75ed0bc Change theme legend label if interpolated
gernotbelger
parents: 9348
diff changeset
393
9360
ddcd52d239cd Outliers in fixation calculation are now shown within the other 'B' event themes and get a separate symbol (triangle).
gernotbelger
parents: 9354
diff changeset
394 public static XYSeries createQWDSeries(final CallMeta meta, final ArtifactAndFacet bundle, final ThemeDocument theme, final QWI qwd) {
ddcd52d239cd Outliers in fixation calculation are now shown within the other 'B' event themes and get a separate symbol (triangle).
gernotbelger
parents: 9354
diff changeset
395 return createQWDSeries(meta, bundle, theme, qwd, qwd.getQ(), qwd.getW());
9354
13bbc75ed0bc Change theme legend label if interpolated
gernotbelger
parents: 9348
diff changeset
396 }
13bbc75ed0bc Change theme legend label if interpolated
gernotbelger
parents: 9348
diff changeset
397
9360
ddcd52d239cd Outliers in fixation calculation are now shown within the other 'B' event themes and get a separate symbol (triangle).
gernotbelger
parents: 9354
diff changeset
398 public static XYSeries createQWDSeries(final CallMeta meta, final ArtifactAndFacet bundle, final ThemeDocument theme, final QWI qwd, double q, double w) {
9354
13bbc75ed0bc Change theme legend label if interpolated
gernotbelger
parents: 9348
diff changeset
399
9360
ddcd52d239cd Outliers in fixation calculation are now shown within the other 'B' event themes and get a separate symbol (triangle).
gernotbelger
parents: 9354
diff changeset
400 final String description = buildQWDSeriesLabel(meta, qwd, bundle.getFacetDescription());
9354
13bbc75ed0bc Change theme legend label if interpolated
gernotbelger
parents: 9348
diff changeset
401
9360
ddcd52d239cd Outliers in fixation calculation are now shown within the other 'B' event themes and get a separate symbol (triangle).
gernotbelger
parents: 9354
diff changeset
402 final int size = theme.parsePointWidth();
ddcd52d239cd Outliers in fixation calculation are now shown within the other 'B' event themes and get a separate symbol (triangle).
gernotbelger
parents: 9354
diff changeset
403 final Shape shape = FixWQCurveGenerator.getWQDShape(qwd, size);
ddcd52d239cd Outliers in fixation calculation are now shown within the other 'B' event themes and get a separate symbol (triangle).
gernotbelger
parents: 9354
diff changeset
404
9556
9b8e8fc1f408 Use facetName in all processors as themeType for legend aggregation.
gernotbelger
parents: 9360
diff changeset
405 final XYSeries series = new StyledXYSeries( bundle.getFacetName(), description, theme, shape );
9354
13bbc75ed0bc Change theme legend label if interpolated
gernotbelger
parents: 9348
diff changeset
406
13bbc75ed0bc Change theme legend label if interpolated
gernotbelger
parents: 9348
diff changeset
407 series.add(q, w, false);
13bbc75ed0bc Change theme legend label if interpolated
gernotbelger
parents: 9348
diff changeset
408
13bbc75ed0bc Change theme legend label if interpolated
gernotbelger
parents: 9348
diff changeset
409 return series;
13bbc75ed0bc Change theme legend label if interpolated
gernotbelger
parents: 9348
diff changeset
410 }
13bbc75ed0bc Change theme legend label if interpolated
gernotbelger
parents: 9348
diff changeset
411
9360
ddcd52d239cd Outliers in fixation calculation are now shown within the other 'B' event themes and get a separate symbol (triangle).
gernotbelger
parents: 9354
diff changeset
412 public static Shape getWQDShape(final QWI qwd, final float size) {
9348
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 9325
diff changeset
413 final boolean isOutlier = qwd instanceof QWD ? ((QWD) qwd).isOutlier() : false;
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 9325
diff changeset
414
9360
ddcd52d239cd Outliers in fixation calculation are now shown within the other 'B' event themes and get a separate symbol (triangle).
gernotbelger
parents: 9354
diff changeset
415 if( isOutlier)
ddcd52d239cd Outliers in fixation calculation are now shown within the other 'B' event themes and get a separate symbol (triangle).
gernotbelger
parents: 9354
diff changeset
416 return ShapeUtils.getScaledShape(ShapeType.outlier, size );
ddcd52d239cd Outliers in fixation calculation are now shown within the other 'B' event themes and get a separate symbol (triangle).
gernotbelger
parents: 9354
diff changeset
417
9348
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 9325
diff changeset
418 if (qwd.getInterpolated())
9360
ddcd52d239cd Outliers in fixation calculation are now shown within the other 'B' event themes and get a separate symbol (triangle).
gernotbelger
parents: 9354
diff changeset
419 return ShapeUtils.getScaledShape(ShapeType.interpolated, size);
9348
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 9325
diff changeset
420
9360
ddcd52d239cd Outliers in fixation calculation are now shown within the other 'B' event themes and get a separate symbol (triangle).
gernotbelger
parents: 9354
diff changeset
421 return ShapeUtils.getScaledShape(ShapeType.measured, size);
9348
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 9325
diff changeset
422 }
5740
0516c1f8f674 FixWQCurveGenerator: Minor Refactoring.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 5739
diff changeset
423
9325
094ed9d1f2ad Fixed: change of point style of interpolated data did not change in WQ chart of fixanalysis
gernotbelger
parents: 9123
diff changeset
424 public static final ThemeDocument configureThemeInterpolated(ThemeDocument theme, QWI qwd) {
094ed9d1f2ad Fixed: change of point style of interpolated data did not change in WQ chart of fixanalysis
gernotbelger
parents: 9123
diff changeset
425
9348
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 9325
diff changeset
426 // prevent potential side effects by copying original theme
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 9325
diff changeset
427 final ThemeDocument newTheme = new ThemeDocument(theme);
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 9325
diff changeset
428
9360
ddcd52d239cd Outliers in fixation calculation are now shown within the other 'B' event themes and get a separate symbol (triangle).
gernotbelger
parents: 9354
diff changeset
429 final boolean showPoints = theme.parseShowPoints();
9325
094ed9d1f2ad Fixed: change of point style of interpolated data did not change in WQ chart of fixanalysis
gernotbelger
parents: 9123
diff changeset
430
094ed9d1f2ad Fixed: change of point style of interpolated data did not change in WQ chart of fixanalysis
gernotbelger
parents: 9123
diff changeset
431 final boolean doFill = showPoints && !qwd.getInterpolated();
094ed9d1f2ad Fixed: change of point style of interpolated data did not change in WQ chart of fixanalysis
gernotbelger
parents: 9123
diff changeset
432 final boolean doOutline = showPoints && qwd.getInterpolated();
9348
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 9325
diff changeset
433
9325
094ed9d1f2ad Fixed: change of point style of interpolated data did not change in WQ chart of fixanalysis
gernotbelger
parents: 9123
diff changeset
434 newTheme.setValue(ThemeDocument.SHOW_POINTS, Boolean.toString(doFill));
094ed9d1f2ad Fixed: change of point style of interpolated data did not change in WQ chart of fixanalysis
gernotbelger
parents: 9123
diff changeset
435 newTheme.setValue(ThemeDocument.SHOW_POINTS_OUTLINE, Boolean.toString(doOutline));
094ed9d1f2ad Fixed: change of point style of interpolated data did not change in WQ chart of fixanalysis
gernotbelger
parents: 9123
diff changeset
436
094ed9d1f2ad Fixed: change of point style of interpolated data did not change in WQ chart of fixanalysis
gernotbelger
parents: 9123
diff changeset
437 return newTheme;
9354
13bbc75ed0bc Change theme legend label if interpolated
gernotbelger
parents: 9348
diff changeset
438 }
13bbc75ed0bc Change theme legend label if interpolated
gernotbelger
parents: 9348
diff changeset
439
9360
ddcd52d239cd Outliers in fixation calculation are now shown within the other 'B' event themes and get a separate symbol (triangle).
gernotbelger
parents: 9354
diff changeset
440 public static String buildQWDSeriesLabel(final CallMeta meta, final QWI qwd, final String facetDescription) {
9354
13bbc75ed0bc Change theme legend label if interpolated
gernotbelger
parents: 9348
diff changeset
441
9360
ddcd52d239cd Outliers in fixation calculation are now shown within the other 'B' event themes and get a separate symbol (triangle).
gernotbelger
parents: 9354
diff changeset
442 final StringBuilder buffer = new StringBuilder( facetDescription );
9354
13bbc75ed0bc Change theme legend label if interpolated
gernotbelger
parents: 9348
diff changeset
443
13bbc75ed0bc Change theme legend label if interpolated
gernotbelger
parents: 9348
diff changeset
444 final boolean isOutlier = qwd instanceof QWD ? ((QWD) qwd).isOutlier() : false;
13bbc75ed0bc Change theme legend label if interpolated
gernotbelger
parents: 9348
diff changeset
445 boolean isInterpolated = qwd.getInterpolated();
13bbc75ed0bc Change theme legend label if interpolated
gernotbelger
parents: 9348
diff changeset
446
13bbc75ed0bc Change theme legend label if interpolated
gernotbelger
parents: 9348
diff changeset
447 if( !isOutlier && !isInterpolated )
13bbc75ed0bc Change theme legend label if interpolated
gernotbelger
parents: 9348
diff changeset
448 return buffer.toString();
13bbc75ed0bc Change theme legend label if interpolated
gernotbelger
parents: 9348
diff changeset
449
13bbc75ed0bc Change theme legend label if interpolated
gernotbelger
parents: 9348
diff changeset
450 buffer.append(" (");
9360
ddcd52d239cd Outliers in fixation calculation are now shown within the other 'B' event themes and get a separate symbol (triangle).
gernotbelger
parents: 9354
diff changeset
451 if( isOutlier )
9354
13bbc75ed0bc Change theme legend label if interpolated
gernotbelger
parents: 9348
diff changeset
452 {
9360
ddcd52d239cd Outliers in fixation calculation are now shown within the other 'B' event themes and get a separate symbol (triangle).
gernotbelger
parents: 9354
diff changeset
453 buffer.append( Resources.getMsg(meta, "fix.outlier") );
ddcd52d239cd Outliers in fixation calculation are now shown within the other 'B' event themes and get a separate symbol (triangle).
gernotbelger
parents: 9354
diff changeset
454 if( isInterpolated )
9354
13bbc75ed0bc Change theme legend label if interpolated
gernotbelger
parents: 9348
diff changeset
455 buffer.append(", ");
13bbc75ed0bc Change theme legend label if interpolated
gernotbelger
parents: 9348
diff changeset
456 }
13bbc75ed0bc Change theme legend label if interpolated
gernotbelger
parents: 9348
diff changeset
457
9360
ddcd52d239cd Outliers in fixation calculation are now shown within the other 'B' event themes and get a separate symbol (triangle).
gernotbelger
parents: 9354
diff changeset
458 if( isInterpolated )
ddcd52d239cd Outliers in fixation calculation are now shown within the other 'B' event themes and get a separate symbol (triangle).
gernotbelger
parents: 9354
diff changeset
459 buffer.append( Resources.getMsg(meta, "fix.interpolated") );
9354
13bbc75ed0bc Change theme legend label if interpolated
gernotbelger
parents: 9348
diff changeset
460
13bbc75ed0bc Change theme legend label if interpolated
gernotbelger
parents: 9348
diff changeset
461 buffer.append(")");
13bbc75ed0bc Change theme legend label if interpolated
gernotbelger
parents: 9348
diff changeset
462
13bbc75ed0bc Change theme legend label if interpolated
gernotbelger
parents: 9348
diff changeset
463 return buffer.toString();
9325
094ed9d1f2ad Fixed: change of point style of interpolated data did not change in WQ chart of fixanalysis
gernotbelger
parents: 9123
diff changeset
464 }
094ed9d1f2ad Fixed: change of point style of interpolated data did not change in WQ chart of fixanalysis
gernotbelger
parents: 9123
diff changeset
465
9556
9b8e8fc1f408 Use facetName in all processors as themeType for legend aggregation.
gernotbelger
parents: 9360
diff changeset
466 private void addPointFromWQKms(String facetName, WQKms wqkms,
6905
1b35b2ddfc28 Artifacts: Introduce ThemeDocument & make stuff compileable again. THIS BREAKS THE SYSTEM! TODO: Move ThemeUtils into ThemeDocument.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 6876
diff changeset
467 String title,
1b35b2ddfc28 Artifacts: Introduce ThemeDocument & make stuff compileable again. THIS BREAKS THE SYSTEM! TODO: Move ThemeUtils into ThemeDocument.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 6876
diff changeset
468 ThemeDocument theme,
1b35b2ddfc28 Artifacts: Introduce ThemeDocument & make stuff compileable again. THIS BREAKS THE SYSTEM! TODO: Move ThemeUtils into ThemeDocument.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 6876
diff changeset
469 boolean visible
5740
0516c1f8f674 FixWQCurveGenerator: Minor Refactoring.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 5739
diff changeset
470 ) {
9556
9b8e8fc1f408 Use facetName in all processors as themeType for legend aggregation.
gernotbelger
parents: 9360
diff changeset
471 XYSeries series = new StyledXYSeries(facetName, title, theme);
9123
1cc7653ca84f Cleanup of ChartGenerator and ChartGenerator2 code. Put some of the copy/pasted code into a common abstraction.
gernotbelger
parents: 8856
diff changeset
472 Double ckm = (Double) getContext().getContextValue(CURRENT_KM);
5739
9950cbb7dba3 FixWQCurveGenerator: issue1149, show calculated wq as points.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 5731
diff changeset
473 if (wqkms == null || wqkms.getKms().length == 0 || ckm == null) {
8202
e4606eae8ea5 sed src/**/*.java 's/logger/log/g'
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7695
diff changeset
474 log.info("addPointFromWQKms: No event data to show.");
5739
9950cbb7dba3 FixWQCurveGenerator: issue1149, show calculated wq as points.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 5731
diff changeset
475 return;
9950cbb7dba3 FixWQCurveGenerator: issue1149, show calculated wq as points.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 5731
diff changeset
476 }
5731
0152d639d7a7 FixWQCurveGenerator: Render fix events.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 5339
diff changeset
477 double[] kms = wqkms.getKms();
7260
0b32f8980fed issue1490: Fix text annotations of latest points.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 7259
diff changeset
478 double gaugeDatum = getCurrentGaugeDatum();
0b32f8980fed issue1490: Fix text annotations of latest points.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 7259
diff changeset
479 double factor = (gaugeDatum == 0d) ? 1d : 100d;
5731
0152d639d7a7 FixWQCurveGenerator: Render fix events.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 5339
diff changeset
480 for (int i = 0 ; i< kms.length; i++) {
5739
9950cbb7dba3 FixWQCurveGenerator: issue1149, show calculated wq as points.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 5731
diff changeset
481 if (Math.abs(kms[i] - ckm) <= EPSILON) {
6876
a071f0a80883 FixA W/Q Diagram: Allow duplicate points. It should work but it doesn't. :-/
Sascha L. Teichmann <teichmann@intevation.de>
parents: 6868
diff changeset
482 series.add(wqkms.getQ(i), wqkms.getW(i), false);
5731
0152d639d7a7 FixWQCurveGenerator: Render fix events.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 5339
diff changeset
483 addAxisSeries(series, YAXIS.W.idx, visible);
6905
1b35b2ddfc28 Artifacts: Introduce ThemeDocument & make stuff compileable again. THIS BREAKS THE SYSTEM! TODO: Move ThemeUtils into ThemeDocument.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 6876
diff changeset
484 if(visible && theme.parseShowPointLabel()) {
8856
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
485 List<XYTextAnnotation> textAnnos =
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
486 new ArrayList<XYTextAnnotation>();
6542
c5945aca0c8d issue1149: Be able to add label/annotation to event points.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6531
diff changeset
487 XYTextAnnotation anno = new CollisionFreeXYTextAnnotation(
c5945aca0c8d issue1149: Be able to add label/annotation to event points.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6531
diff changeset
488 title,
c5945aca0c8d issue1149: Be able to add label/annotation to event points.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6531
diff changeset
489 wqkms.getQ(i),
7260
0b32f8980fed issue1490: Fix text annotations of latest points.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 7259
diff changeset
490 factor*(wqkms.getW(i)-gaugeDatum));
6542
c5945aca0c8d issue1149: Be able to add label/annotation to event points.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6531
diff changeset
491 textAnnos.add(anno);
8856
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
492 RiverAnnotation flysAnno =
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
493 new RiverAnnotation(null, null, null, theme);
6542
c5945aca0c8d issue1149: Be able to add label/annotation to event points.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6531
diff changeset
494 flysAnno.setTextAnnotations(textAnnos);
c5945aca0c8d issue1149: Be able to add label/annotation to event points.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6531
diff changeset
495 addAnnotations(flysAnno);
c5945aca0c8d issue1149: Be able to add label/annotation to event points.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6531
diff changeset
496 }
5731
0152d639d7a7 FixWQCurveGenerator: Render fix events.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 5339
diff changeset
497 return;
0152d639d7a7 FixWQCurveGenerator: Render fix events.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 5339
diff changeset
498 }
0152d639d7a7 FixWQCurveGenerator: Render fix events.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 5339
diff changeset
499 }
0152d639d7a7 FixWQCurveGenerator: Render fix events.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 5339
diff changeset
500 }
4323
33d6d4025d0f FixWQCurveGenerator: Handle extreme_wq_curve facets (stub).
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 4147
diff changeset
501
8856
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
502 protected void doEventsOut(
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
503 ArtifactAndFacet aaf,
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
504 ThemeDocument doc,
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
505 boolean visible
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
506 ) {
8202
e4606eae8ea5 sed src/**/*.java 's/logger/log/g'
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7695
diff changeset
507 log.debug("doEventsOut");
5740
0516c1f8f674 FixWQCurveGenerator: Minor Refactoring.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 5739
diff changeset
508 // Find W/Q at km.
9556
9b8e8fc1f408 Use facetName in all processors as themeType for legend aggregation.
gernotbelger
parents: 9360
diff changeset
509 addPointFromWQKms(aaf.getFacetName(),(WQKms) aaf.getData(getContext()),
5740
0516c1f8f674 FixWQCurveGenerator: Minor Refactoring.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 5739
diff changeset
510 aaf.getFacetDescription(), doc, visible);
0516c1f8f674 FixWQCurveGenerator: Minor Refactoring.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 5739
diff changeset
511 }
0516c1f8f674 FixWQCurveGenerator: Minor Refactoring.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 5739
diff changeset
512
0516c1f8f674 FixWQCurveGenerator: Minor Refactoring.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 5739
diff changeset
513
8856
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
514 protected void doWQCurveOut(
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
515 ArtifactAndFacet aaf,
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
516 ThemeDocument doc,
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
517 boolean visible
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
518 ) {
8202
e4606eae8ea5 sed src/**/*.java 's/logger/log/g'
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7695
diff changeset
519 log.debug("doWQCurveOut");
3055
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
520
3081
26119b7b3154 Fixing output generator hacking
Christian Lins <christian.lins@intevation.de>
parents: 3076
diff changeset
521 FixWQCurveFacet facet = (FixWQCurveFacet)aaf.getFacet();
26119b7b3154 Fixing output generator hacking
Christian Lins <christian.lins@intevation.de>
parents: 3076
diff changeset
522 FixFunction func = (FixFunction)facet.getData(
9123
1cc7653ca84f Cleanup of ChartGenerator and ChartGenerator2 code. Put some of the copy/pasted code into a common abstraction.
gernotbelger
parents: 8856
diff changeset
523 aaf.getArtifact(), getContext());
3073
0ace00c0c12a FixA: Improved W/Q facet code
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 3066
diff changeset
524
0ace00c0c12a FixA: Improved W/Q facet code
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 3066
diff changeset
525 if (func == null) {
8202
e4606eae8ea5 sed src/**/*.java 's/logger/log/g'
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7695
diff changeset
526 log.warn("doWQCurveOut: Facet does not contain FixFunction");
3073
0ace00c0c12a FixA: Improved W/Q facet code
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 3066
diff changeset
527 return;
0ace00c0c12a FixA: Improved W/Q facet code
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 3066
diff changeset
528 }
3110
88d49a0a55f0 Removed trailing whitespace.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 3108
diff changeset
529
3081
26119b7b3154 Fixing output generator hacking
Christian Lins <christian.lins@intevation.de>
parents: 3076
diff changeset
530 double maxQ = func.getMaxQ();
3073
0ace00c0c12a FixA: Improved W/Q facet code
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 3066
diff changeset
531
3215
750e98fc8b76 FixA: Tweaked the derivate diagram a bit and added chart info.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 3212
diff changeset
532 if (maxQ > 0) {
3192
cd309f8597f6 Fix for 'linecolor ignored' issue
Christian Lins <christian.lins@intevation.de>
parents: 3155
diff changeset
533 StyledXYSeries series = JFreeUtil.sampleFunction2D(
9556
9b8e8fc1f408 Use facetName in all processors as themeType for legend aggregation.
gernotbelger
parents: 9360
diff changeset
534 aaf.getFacetName(),
3770
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
535 func.getFunction(),
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
536 doc,
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
537 aaf.getFacetDescription(),
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
538 500, // number of samples
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
539 0.0 , // start
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
540 maxQ); // end
3155
74c974b10c75 Output code to trackdown the linecolor problem
Christian Lins <christian.lins@intevation.de>
parents: 3133
diff changeset
541
6474
6aac9ad1f8a8 issue1370: FixWQCurveGenerator: second y axis for fix-w/q diagrams.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6473
diff changeset
542 double gaugeDatum = getCurrentGaugeDatum();
6aac9ad1f8a8 issue1370: FixWQCurveGenerator: second y axis for fix-w/q diagrams.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6473
diff changeset
543
6aac9ad1f8a8 issue1370: FixWQCurveGenerator: second y axis for fix-w/q diagrams.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6473
diff changeset
544 if (gaugeDatum == 0d) {
6aac9ad1f8a8 issue1370: FixWQCurveGenerator: second y axis for fix-w/q diagrams.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6473
diff changeset
545 addAxisSeries(series, YAXIS.W.idx, visible);
6aac9ad1f8a8 issue1370: FixWQCurveGenerator: second y axis for fix-w/q diagrams.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6473
diff changeset
546 }
6aac9ad1f8a8 issue1370: FixWQCurveGenerator: second y axis for fix-w/q diagrams.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6473
diff changeset
547 else {
6530
2afe2fe12576 FixWQCurveGenerator: Make second axis initial extends match first one.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6527
diff changeset
548 StyledXYSeries series2 = JFreeUtil.sampleFunction2D(
9556
9b8e8fc1f408 Use facetName in all processors as themeType for legend aggregation.
gernotbelger
parents: 9360
diff changeset
549 aaf.getFacetName(),
6530
2afe2fe12576 FixWQCurveGenerator: Make second axis initial extends match first one.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6527
diff changeset
550 func.getFunction(),
2afe2fe12576 FixWQCurveGenerator: Make second axis initial extends match first one.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6527
diff changeset
551 doc,
2afe2fe12576 FixWQCurveGenerator: Make second axis initial extends match first one.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6527
diff changeset
552 aaf.getFacetDescription(),
2afe2fe12576 FixWQCurveGenerator: Make second axis initial extends match first one.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6527
diff changeset
553 500, // number of samples
2afe2fe12576 FixWQCurveGenerator: Make second axis initial extends match first one.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6527
diff changeset
554 0.0 , // start
2afe2fe12576 FixWQCurveGenerator: Make second axis initial extends match first one.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6527
diff changeset
555 maxQ); // end
2afe2fe12576 FixWQCurveGenerator: Make second axis initial extends match first one.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6527
diff changeset
556 addAxisSeries(series2, YAXIS.W.idx, false);
6474
6aac9ad1f8a8 issue1370: FixWQCurveGenerator: second y axis for fix-w/q diagrams.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6473
diff changeset
557 // Use second axis at cm if at gauge.
7525
6650485c2c9b Part fix for flys/issue1585: Use result from fitting to display interpolated W/Q points, too. TODO: Draw interpolated as circles.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7270
diff changeset
558 for (int i = 0, N = series.getItemCount(); i < N; i++) {
6650485c2c9b Part fix for flys/issue1585: Use result from fitting to display interpolated W/Q points, too. TODO: Draw interpolated as circles.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7270
diff changeset
559 series.updateByIndex(
8856
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
560 i,
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
561 new Double(100d *
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
562 (series.getY(i).doubleValue() - gaugeDatum))
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
563 );
6474
6aac9ad1f8a8 issue1370: FixWQCurveGenerator: second y axis for fix-w/q diagrams.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6473
diff changeset
564 }
6aac9ad1f8a8 issue1370: FixWQCurveGenerator: second y axis for fix-w/q diagrams.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6473
diff changeset
565 addAxisSeries(series, YAXIS.WCm.idx, visible);
6aac9ad1f8a8 issue1370: FixWQCurveGenerator: second y axis for fix-w/q diagrams.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6473
diff changeset
566 }
3055
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
567 }
3062
7660cfe5e8f6 FixWQCurveGenerator can generate charts from Fix*-Facets (in theory and not complete)
Christian Lins <christian.lins@intevation.de>
parents: 3060
diff changeset
568 else {
8202
e4606eae8ea5 sed src/**/*.java 's/logger/log/g'
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7695
diff changeset
569 log.warn("doWQCurveOut: maxQ <= 0");
3062
7660cfe5e8f6 FixWQCurveGenerator can generate charts from Fix*-Facets (in theory and not complete)
Christian Lins <christian.lins@intevation.de>
parents: 3060
diff changeset
570 }
3055
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
571 }
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
572
3578
bae185bf9d2d Theme the qsector markers.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3551
diff changeset
573 /** Add markers for q sectors. */
8856
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
574 protected void doQSectorOut(
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
575 ArtifactAndFacet aaf,
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
576 ThemeDocument theme,
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
577 boolean visible
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
578 ) {
8202
e4606eae8ea5 sed src/**/*.java 's/logger/log/g'
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7695
diff changeset
579 log.debug("doQSectorOut");
3578
bae185bf9d2d Theme the qsector markers.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3551
diff changeset
580 if (!visible) {
bae185bf9d2d Theme the qsector markers.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3551
diff changeset
581 return;
bae185bf9d2d Theme the qsector markers.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3551
diff changeset
582 }
bae185bf9d2d Theme the qsector markers.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3551
diff changeset
583
9123
1cc7653ca84f Cleanup of ChartGenerator and ChartGenerator2 code. Put some of the copy/pasted code into a common abstraction.
gernotbelger
parents: 8856
diff changeset
584 Object qsectorsObj = aaf.getData(getContext());
3770
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
585 if (qsectorsObj == null || !(qsectorsObj instanceof List)) {
8202
e4606eae8ea5 sed src/**/*.java 's/logger/log/g'
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7695
diff changeset
586 log.warn("No QSectors coming from data.");
3578
bae185bf9d2d Theme the qsector markers.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3551
diff changeset
587 return;
bae185bf9d2d Theme the qsector markers.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3551
diff changeset
588 }
3770
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
589
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
590 List<?> qsectorsList = (List<?>) qsectorsObj;
8856
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
591 if (qsectorsList.size() == 0
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
592 || !(qsectorsList.get(0) instanceof NamedDouble)
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
593 ) {
8202
e4606eae8ea5 sed src/**/*.java 's/logger/log/g'
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7695
diff changeset
594 log.warn("No QSectors coming from data.");
3770
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
595 return;
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
596 }
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
597
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
598 @SuppressWarnings("unchecked")
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
599 List<NamedDouble> qsectors = (List<NamedDouble>) qsectorsList;
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
600
3578
bae185bf9d2d Theme the qsector markers.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3551
diff changeset
601 for (NamedDouble qsector : qsectors) {
bae185bf9d2d Theme the qsector markers.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3551
diff changeset
602 if (Double.isNaN(qsector.getValue())) {
bae185bf9d2d Theme the qsector markers.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3551
diff changeset
603 continue;
bae185bf9d2d Theme the qsector markers.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3551
diff changeset
604 }
bae185bf9d2d Theme the qsector markers.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3551
diff changeset
605 Marker m = new ValueMarker(qsector.getValue());
bae185bf9d2d Theme the qsector markers.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3551
diff changeset
606 m.setPaint(Color.black);
bae185bf9d2d Theme the qsector markers.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3551
diff changeset
607
6905
1b35b2ddfc28 Artifacts: Introduce ThemeDocument & make stuff compileable again. THIS BREAKS THE SYSTEM! TODO: Move ThemeUtils into ThemeDocument.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 6876
diff changeset
608 float[] dashes = theme.parseLineStyle();
1b35b2ddfc28 Artifacts: Introduce ThemeDocument & make stuff compileable again. THIS BREAKS THE SYSTEM! TODO: Move ThemeUtils into ThemeDocument.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 6876
diff changeset
609 int size = theme.parseLineWidth();
3593
0ac28739ee15 Simplified code
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 3588
diff changeset
610 BasicStroke stroke;
3578
bae185bf9d2d Theme the qsector markers.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3551
diff changeset
611 if (dashes.length <= 1) {
3593
0ac28739ee15 Simplified code
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 3588
diff changeset
612 stroke = new BasicStroke(size);
3578
bae185bf9d2d Theme the qsector markers.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3551
diff changeset
613 }
bae185bf9d2d Theme the qsector markers.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3551
diff changeset
614 else {
3593
0ac28739ee15 Simplified code
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 3588
diff changeset
615 stroke = new BasicStroke(size,
3770
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
616 BasicStroke.CAP_BUTT,
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
617 BasicStroke.JOIN_ROUND,
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
618 1.0f,
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
619 dashes,
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
620 0.0f);
3593
0ac28739ee15 Simplified code
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 3588
diff changeset
621 }
3578
bae185bf9d2d Theme the qsector markers.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3551
diff changeset
622 m.setStroke(stroke);
bae185bf9d2d Theme the qsector markers.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3551
diff changeset
623
6905
1b35b2ddfc28 Artifacts: Introduce ThemeDocument & make stuff compileable again. THIS BREAKS THE SYSTEM! TODO: Move ThemeUtils into ThemeDocument.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 6876
diff changeset
624 if (theme.parseShowLineLabel()) {
3578
bae185bf9d2d Theme the qsector markers.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3551
diff changeset
625 m.setLabel(qsector.getName());
6905
1b35b2ddfc28 Artifacts: Introduce ThemeDocument & make stuff compileable again. THIS BREAKS THE SYSTEM! TODO: Move ThemeUtils into ThemeDocument.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 6876
diff changeset
626 m.setPaint(theme.parseTextColor());
1b35b2ddfc28 Artifacts: Introduce ThemeDocument & make stuff compileable again. THIS BREAKS THE SYSTEM! TODO: Move ThemeUtils into ThemeDocument.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 6876
diff changeset
627 m.setLabelFont(theme.parseTextFont());
3578
bae185bf9d2d Theme the qsector markers.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3551
diff changeset
628 }
6905
1b35b2ddfc28 Artifacts: Introduce ThemeDocument & make stuff compileable again. THIS BREAKS THE SYSTEM! TODO: Move ThemeUtils into ThemeDocument.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 6876
diff changeset
629 Color paint = theme.parseLineColorField();
3578
bae185bf9d2d Theme the qsector markers.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3551
diff changeset
630 if (paint != null) {
bae185bf9d2d Theme the qsector markers.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3551
diff changeset
631 m.setPaint(paint);
bae185bf9d2d Theme the qsector markers.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3551
diff changeset
632 }
bae185bf9d2d Theme the qsector markers.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3551
diff changeset
633 m.setLabelAnchor(RectangleAnchor.TOP_LEFT);
bae185bf9d2d Theme the qsector markers.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3551
diff changeset
634 m.setLabelTextAnchor(TextAnchor.TOP_LEFT);
3911
36507c71725b W(Q) chart: q sectors are now black and labeled by default
Christian Lins <christian.lins@intevation.de>
parents: 3770
diff changeset
635 m.setLabelOffset(new RectangleInsets(5, 5, 10, 10));
3578
bae185bf9d2d Theme the qsector markers.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3551
diff changeset
636 addDomainMarker(m);
bae185bf9d2d Theme the qsector markers.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3551
diff changeset
637 }
bae185bf9d2d Theme the qsector markers.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3551
diff changeset
638 }
bae185bf9d2d Theme the qsector markers.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3551
diff changeset
639
3596
6aea625190da Handle former W calculations in fixA W/Q out.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3593
diff changeset
640
6aea625190da Handle former W calculations in fixA W/Q out.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3593
diff changeset
641 /**
3587
9dfbd36474b8 Add more facets to DC and W/Q diag.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3585
diff changeset
642 * Add W-Annotations to plot.
9dfbd36474b8 Add more facets to DC and W/Q diag.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3585
diff changeset
643 * @param wqkms actual data (double[][]).
9dfbd36474b8 Add more facets to DC and W/Q diag.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3585
diff changeset
644 * @param theme theme to use.
9dfbd36474b8 Add more facets to DC and W/Q diag.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3585
diff changeset
645 */
9dfbd36474b8 Add more facets to DC and W/Q diag.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3585
diff changeset
646 protected void doWAnnotations(
6905
1b35b2ddfc28 Artifacts: Introduce ThemeDocument & make stuff compileable again. THIS BREAKS THE SYSTEM! TODO: Move ThemeUtils into ThemeDocument.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 6876
diff changeset
647 Object wqkms,
3770
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
648 ArtifactAndFacet aandf,
6905
1b35b2ddfc28 Artifacts: Introduce ThemeDocument & make stuff compileable again. THIS BREAKS THE SYSTEM! TODO: Move ThemeUtils into ThemeDocument.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 6876
diff changeset
649 ThemeDocument theme,
1b35b2ddfc28 Artifacts: Introduce ThemeDocument & make stuff compileable again. THIS BREAKS THE SYSTEM! TODO: Move ThemeUtils into ThemeDocument.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 6876
diff changeset
650 boolean visible
3770
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
651 ) {
3587
9dfbd36474b8 Add more facets to DC and W/Q diag.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3585
diff changeset
652 Facet facet = aandf.getFacet();
9dfbd36474b8 Add more facets to DC and W/Q diag.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3585
diff changeset
653
9dfbd36474b8 Add more facets to DC and W/Q diag.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3585
diff changeset
654 List<StickyAxisAnnotation> xy = new ArrayList<StickyAxisAnnotation>();
9dfbd36474b8 Add more facets to DC and W/Q diag.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3585
diff changeset
655 if (wqkms instanceof double[][]) {
8202
e4606eae8ea5 sed src/**/*.java 's/logger/log/g'
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7695
diff changeset
656 log.debug("Got double[][]");
3587
9dfbd36474b8 Add more facets to DC and W/Q diag.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3585
diff changeset
657 double [][] data = (double [][]) wqkms;
9dfbd36474b8 Add more facets to DC and W/Q diag.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3585
diff changeset
658 for (int i = 0; i< data[0].length; i++) {
9dfbd36474b8 Add more facets to DC and W/Q diag.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3585
diff changeset
659 xy.add(new StickyAxisAnnotation(aandf.getFacetDescription(),
8856
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
660 (float) data[1][i],
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
661 StickyAxisAnnotation.SimpleAxis.Y_AXIS));
3587
9dfbd36474b8 Add more facets to DC and W/Q diag.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3585
diff changeset
662 }
9dfbd36474b8 Add more facets to DC and W/Q diag.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3585
diff changeset
663
5864
f2e46a668fe6 River artifacts: Renamed FLYSAnnotation to RiverAnnotation.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5863
diff changeset
664 doAnnotations(new RiverAnnotation(facet.getDescription(), xy),
3770
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
665 aandf, theme, visible);
3587
9dfbd36474b8 Add more facets to DC and W/Q diag.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3585
diff changeset
666 }
9dfbd36474b8 Add more facets to DC and W/Q diag.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3585
diff changeset
667 else {
9dfbd36474b8 Add more facets to DC and W/Q diag.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3585
diff changeset
668 // Assume its WKms.
8202
e4606eae8ea5 sed src/**/*.java 's/logger/log/g'
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7695
diff changeset
669 log.debug("Got WKms");
3587
9dfbd36474b8 Add more facets to DC and W/Q diag.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3585
diff changeset
670 WKms data = (WKms) wqkms;
3596
6aea625190da Handle former W calculations in fixA W/Q out.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3593
diff changeset
671
9123
1cc7653ca84f Cleanup of ChartGenerator and ChartGenerator2 code. Put some of the copy/pasted code into a common abstraction.
gernotbelger
parents: 8856
diff changeset
672 Double ckm = (Double) getContext().getContextValue(CURRENT_KM);
3587
9dfbd36474b8 Add more facets to DC and W/Q diag.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3585
diff changeset
673 double location = (ckm != null)
3770
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
674 ? ckm.doubleValue()
4147
db0b9cff8496 Cosmetics, documentation.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 4143
diff changeset
675 : getRange()[0];
db0b9cff8496 Cosmetics, documentation.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 4143
diff changeset
676 double w = StaticWKmsArtifact.getWAtKmLin(data, location);
db0b9cff8496 Cosmetics, documentation.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 4143
diff changeset
677 xy.add(new StickyAxisAnnotation(aandf.getFacetDescription(),
db0b9cff8496 Cosmetics, documentation.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 4143
diff changeset
678 (float) w, StickyAxisAnnotation.SimpleAxis.Y_AXIS));
3587
9dfbd36474b8 Add more facets to DC and W/Q diag.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3585
diff changeset
679
5864
f2e46a668fe6 River artifacts: Renamed FLYSAnnotation to RiverAnnotation.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5863
diff changeset
680 doAnnotations(new RiverAnnotation(facet.getDescription(), xy),
4147
db0b9cff8496 Cosmetics, documentation.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 4143
diff changeset
681 aandf, theme, visible);
3587
9dfbd36474b8 Add more facets to DC and W/Q diag.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3585
diff changeset
682 }
9dfbd36474b8 Add more facets to DC and W/Q diag.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3585
diff changeset
683 }
9dfbd36474b8 Add more facets to DC and W/Q diag.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3585
diff changeset
684
9dfbd36474b8 Add more facets to DC and W/Q diag.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3585
diff changeset
685
3585
c105b4466b4e Basedata in FixA WQ DC and diagram.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3578
diff changeset
686 /**
3588
76571c601d06 Add more discharge curve data to DC and W/Q diag.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3587
diff changeset
687 * Add series with discharge curve to diagram.
9556
9b8e8fc1f408 Use facetName in all processors as themeType for legend aggregation.
gernotbelger
parents: 9360
diff changeset
688 * @param string
3588
76571c601d06 Add more discharge curve data to DC and W/Q diag.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3587
diff changeset
689 */
76571c601d06 Add more discharge curve data to DC and W/Q diag.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3587
diff changeset
690 protected void doDischargeOut(
9556
9b8e8fc1f408 Use facetName in all processors as themeType for legend aggregation.
gernotbelger
parents: 9360
diff changeset
691 String facetName,
3770
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
692 WINFOArtifact artifact,
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
693 Object o,
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
694 String description,
6905
1b35b2ddfc28 Artifacts: Introduce ThemeDocument & make stuff compileable again. THIS BREAKS THE SYSTEM! TODO: Move ThemeUtils into ThemeDocument.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 6876
diff changeset
695 ThemeDocument theme,
3770
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
696 boolean visible)
3588
76571c601d06 Add more discharge curve data to DC and W/Q diag.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3587
diff changeset
697 {
76571c601d06 Add more discharge curve data to DC and W/Q diag.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3587
diff changeset
698 WQKms wqkms = (WQKms) o;
76571c601d06 Add more discharge curve data to DC and W/Q diag.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3587
diff changeset
699
76571c601d06 Add more discharge curve data to DC and W/Q diag.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3587
diff changeset
700 String gaugeName = wqkms.getName();
76571c601d06 Add more discharge curve data to DC and W/Q diag.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3587
diff changeset
701
5865
73da40528cf2 River artifacts: Renamed FLYSUtils to RiverUtils.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5864
diff changeset
702 River river = RiverUtils.getRiver(artifact);
3588
76571c601d06 Add more discharge curve data to DC and W/Q diag.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3587
diff changeset
703
76571c601d06 Add more discharge curve data to DC and W/Q diag.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3587
diff changeset
704 if (river == null) {
8202
e4606eae8ea5 sed src/**/*.java 's/logger/log/g'
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7695
diff changeset
705 log.debug("no river found");
3588
76571c601d06 Add more discharge curve data to DC and W/Q diag.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3587
diff changeset
706 return;
76571c601d06 Add more discharge curve data to DC and W/Q diag.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3587
diff changeset
707 }
76571c601d06 Add more discharge curve data to DC and W/Q diag.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3587
diff changeset
708
76571c601d06 Add more discharge curve data to DC and W/Q diag.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3587
diff changeset
709 Gauge gauge = river.determineGaugeByName(gaugeName);
76571c601d06 Add more discharge curve data to DC and W/Q diag.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3587
diff changeset
710
76571c601d06 Add more discharge curve data to DC and W/Q diag.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3587
diff changeset
711 if (gauge == null) {
8202
e4606eae8ea5 sed src/**/*.java 's/logger/log/g'
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7695
diff changeset
712 log.debug("no gauge found");
3588
76571c601d06 Add more discharge curve data to DC and W/Q diag.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3587
diff changeset
713 return;
76571c601d06 Add more discharge curve data to DC and W/Q diag.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3587
diff changeset
714 }
76571c601d06 Add more discharge curve data to DC and W/Q diag.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3587
diff changeset
715
9556
9b8e8fc1f408 Use facetName in all processors as themeType for legend aggregation.
gernotbelger
parents: 9360
diff changeset
716 XYSeries series = new StyledXYSeries(facetName, description, theme);
7258
0e6b399e72f9 issue1490: Translate text annotations position when displaying w/q- curve at gauge.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 7257
diff changeset
717
0e6b399e72f9 issue1490: Translate text annotations position when displaying w/q- curve at gauge.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 7257
diff changeset
718 double gaugeDatum = getCurrentGaugeDatum();
0e6b399e72f9 issue1490: Translate text annotations position when displaying w/q- curve at gauge.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 7257
diff changeset
719
0e6b399e72f9 issue1490: Translate text annotations position when displaying w/q- curve at gauge.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 7257
diff changeset
720 if (true || gaugeDatum == 0d) {
0e6b399e72f9 issue1490: Translate text annotations position when displaying w/q- curve at gauge.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 7257
diff changeset
721 StyledSeriesBuilder.addPointsQW(series, wqkms);
0e6b399e72f9 issue1490: Translate text annotations position when displaying w/q- curve at gauge.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 7257
diff changeset
722 addAxisSeries(series, YAXIS.W.idx, visible);
0e6b399e72f9 issue1490: Translate text annotations position when displaying w/q- curve at gauge.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 7257
diff changeset
723 }
0e6b399e72f9 issue1490: Translate text annotations position when displaying w/q- curve at gauge.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 7257
diff changeset
724 else {
9556
9b8e8fc1f408 Use facetName in all processors as themeType for legend aggregation.
gernotbelger
parents: 9360
diff changeset
725 XYSeries series2 = new StyledXYSeries(facetName, description, theme);
7258
0e6b399e72f9 issue1490: Translate text annotations position when displaying w/q- curve at gauge.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 7257
diff changeset
726 StyledSeriesBuilder.addPointsQW(series2, wqkms);
0e6b399e72f9 issue1490: Translate text annotations position when displaying w/q- curve at gauge.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 7257
diff changeset
727 addAxisSeries(series2, YAXIS.W.idx, false);
0e6b399e72f9 issue1490: Translate text annotations position when displaying w/q- curve at gauge.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 7257
diff changeset
728
0e6b399e72f9 issue1490: Translate text annotations position when displaying w/q- curve at gauge.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 7257
diff changeset
729 // Use second axis...
0e6b399e72f9 issue1490: Translate text annotations position when displaying w/q- curve at gauge.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 7257
diff changeset
730 StyledSeriesBuilder.addPointsQW(series, wqkms, -gaugeDatum, 100d);
0e6b399e72f9 issue1490: Translate text annotations position when displaying w/q- curve at gauge.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 7257
diff changeset
731 addAxisSeries(series, YAXIS.WCm.idx, visible);
0e6b399e72f9 issue1490: Translate text annotations position when displaying w/q- curve at gauge.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 7257
diff changeset
732 }
3588
76571c601d06 Add more discharge curve data to DC and W/Q diag.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3587
diff changeset
733 }
76571c601d06 Add more discharge curve data to DC and W/Q diag.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3587
diff changeset
734
3596
6aea625190da Handle former W calculations in fixA W/Q out.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3593
diff changeset
735
3588
76571c601d06 Add more discharge curve data to DC and W/Q diag.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3587
diff changeset
736 /**
3585
c105b4466b4e Basedata in FixA WQ DC and diagram.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3578
diff changeset
737 * Add WQ Data to plot.
c105b4466b4e Basedata in FixA WQ DC and diagram.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3578
diff changeset
738 * @param wqkms data as double[][]
c105b4466b4e Basedata in FixA WQ DC and diagram.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3578
diff changeset
739 */
c105b4466b4e Basedata in FixA WQ DC and diagram.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3578
diff changeset
740 protected void doWQOut(
3770
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
741 Object wqkms,
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
742 ArtifactAndFacet aaf,
6905
1b35b2ddfc28 Artifacts: Introduce ThemeDocument & make stuff compileable again. THIS BREAKS THE SYSTEM! TODO: Move ThemeUtils into ThemeDocument.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 6876
diff changeset
743 ThemeDocument theme,
3770
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
744 boolean visible
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
745 ) {
8202
e4606eae8ea5 sed src/**/*.java 's/logger/log/g'
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7695
diff changeset
746 log.debug("FixWQCurveGenerator: doWQOut");
3596
6aea625190da Handle former W calculations in fixA W/Q out.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3593
diff changeset
747 if (wqkms instanceof WQKms) {
5739
9950cbb7dba3 FixWQCurveGenerator: issue1149, show calculated wq as points.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 5731
diff changeset
748 // TODO As in doEventsOut, the value-searching should
9950cbb7dba3 FixWQCurveGenerator: issue1149, show calculated wq as points.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 5731
diff changeset
749 // be delivered by the facet already (instead of in the Generator).
8202
e4606eae8ea5 sed src/**/*.java 's/logger/log/g'
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7695
diff changeset
750 log.debug("FixWQCurveGenerator: doWQOut: WQKms");
3585
c105b4466b4e Basedata in FixA WQ DC and diagram.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3578
diff changeset
751
9556
9b8e8fc1f408 Use facetName in all processors as themeType for legend aggregation.
gernotbelger
parents: 9360
diff changeset
752 addPointFromWQKms(aaf.getFacetName(),(WQKms)aaf.getData(getContext()),
8856
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
753 aaf.getFacetDescription(), theme, visible);
3596
6aea625190da Handle former W calculations in fixA W/Q out.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3593
diff changeset
754 }
6aea625190da Handle former W calculations in fixA W/Q out.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3593
diff changeset
755 else {
8202
e4606eae8ea5 sed src/**/*.java 's/logger/log/g'
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7695
diff changeset
756 log.debug("FixWQCurveGenerator: doWQOut: double[][]");
3596
6aea625190da Handle former W calculations in fixA W/Q out.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3593
diff changeset
757 double [][] data = (double [][]) wqkms;
6aea625190da Handle former W calculations in fixA W/Q out.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3593
diff changeset
758
9556
9b8e8fc1f408 Use facetName in all processors as themeType for legend aggregation.
gernotbelger
parents: 9360
diff changeset
759 XYSeries series = new StyledXYSeries(aaf.getFacetName(),
8856
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
760 aaf.getFacetDescription(), false, true, theme);
3596
6aea625190da Handle former W calculations in fixA W/Q out.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3593
diff changeset
761 StyledSeriesBuilder.addPoints(series, data, true);
6aea625190da Handle former W calculations in fixA W/Q out.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3593
diff changeset
762
6aea625190da Handle former W calculations in fixA W/Q out.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3593
diff changeset
763 addAxisSeries(series, YAXIS.W.idx, visible);
6aea625190da Handle former W calculations in fixA W/Q out.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3593
diff changeset
764 }
3585
c105b4466b4e Basedata in FixA WQ DC and diagram.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3578
diff changeset
765 }
c105b4466b4e Basedata in FixA WQ DC and diagram.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3578
diff changeset
766
3596
6aea625190da Handle former W calculations in fixA W/Q out.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 3593
diff changeset
767
3729
e727e3ebdf85 Factored out a pure QW model to be more reusable.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 3610
diff changeset
768 protected void addQWSeries(
3770
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
769 QWI [] qws,
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
770 ArtifactAndFacet aaf,
6905
1b35b2ddfc28 Artifacts: Introduce ThemeDocument & make stuff compileable again. THIS BREAKS THE SYSTEM! TODO: Move ThemeUtils into ThemeDocument.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 6876
diff changeset
771 ThemeDocument theme,
3770
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
772 boolean visible
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
773 ) {
3729
e727e3ebdf85 Factored out a pure QW model to be more reusable.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 3610
diff changeset
774 if (qws == null) {
e727e3ebdf85 Factored out a pure QW model to be more reusable.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 3610
diff changeset
775 return;
e727e3ebdf85 Factored out a pure QW model to be more reusable.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 3610
diff changeset
776 }
3194
e815cf20bab2 Add point labels to W/Q curve
Christian Lins <christian.lins@intevation.de>
parents: 3193
diff changeset
777
9556
9b8e8fc1f408 Use facetName in all processors as themeType for legend aggregation.
gernotbelger
parents: 9360
diff changeset
778 XYSeries series = new StyledXYSeries(aaf.getFacetName(),
6876
a071f0a80883 FixA W/Q Diagram: Allow duplicate points. It should work but it doesn't. :-/
Sascha L. Teichmann <teichmann@intevation.de>
parents: 6868
diff changeset
779 aaf.getFacetDescription(),
a071f0a80883 FixA W/Q Diagram: Allow duplicate points. It should work but it doesn't. :-/
Sascha L. Teichmann <teichmann@intevation.de>
parents: 6868
diff changeset
780 false, true,
a071f0a80883 FixA W/Q Diagram: Allow duplicate points. It should work but it doesn't. :-/
Sascha L. Teichmann <teichmann@intevation.de>
parents: 6868
diff changeset
781 theme);
a071f0a80883 FixA W/Q Diagram: Allow duplicate points. It should work but it doesn't. :-/
Sascha L. Teichmann <teichmann@intevation.de>
parents: 6868
diff changeset
782
3729
e727e3ebdf85 Factored out a pure QW model to be more reusable.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 3610
diff changeset
783 List<XYTextAnnotation> textAnnos =
3770
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
784 new ArrayList<XYTextAnnotation>(qws.length);
3062
7660cfe5e8f6 FixWQCurveGenerator can generate charts from Fix*-Facets (in theory and not complete)
Christian Lins <christian.lins@intevation.de>
parents: 3060
diff changeset
785
3729
e727e3ebdf85 Factored out a pure QW model to be more reusable.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 3610
diff changeset
786 DateFormat dateFormat = DateFormat.getDateInstance(
3770
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
787 DateFormat.SHORT);
3729
e727e3ebdf85 Factored out a pure QW model to be more reusable.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 3610
diff changeset
788
7259
a36e26abcf54 issue1490: Translate other points as well, when at gauge.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 7258
diff changeset
789 double gaugeDatum = getCurrentGaugeDatum();
a36e26abcf54 issue1490: Translate other points as well, when at gauge.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 7258
diff changeset
790 double factor = (gaugeDatum == 0d) ? 1d : 100d;
3729
e727e3ebdf85 Factored out a pure QW model to be more reusable.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 3610
diff changeset
791 for (QWI qw: qws) {
7259
a36e26abcf54 issue1490: Translate other points as well, when at gauge.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 7258
diff changeset
792 series.add(qw.getQ(), factor*(qw.getW()-gaugeDatum), false);
3729
e727e3ebdf85 Factored out a pure QW model to be more reusable.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 3610
diff changeset
793
e727e3ebdf85 Factored out a pure QW model to be more reusable.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 3610
diff changeset
794 XYTextAnnotation anno = new CollisionFreeXYTextAnnotation(
3770
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
795 dateFormat.format(qw.getDate()),
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
796 qw.getQ(),
7259
a36e26abcf54 issue1490: Translate other points as well, when at gauge.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 7258
diff changeset
797 factor*(qw.getW()-gaugeDatum));
3729
e727e3ebdf85 Factored out a pure QW model to be more reusable.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 3610
diff changeset
798 textAnnos.add(anno);
e727e3ebdf85 Factored out a pure QW model to be more reusable.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 3610
diff changeset
799 }
e727e3ebdf85 Factored out a pure QW model to be more reusable.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 3610
diff changeset
800
7259
a36e26abcf54 issue1490: Translate other points as well, when at gauge.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 7258
diff changeset
801 if (gaugeDatum == 0d) {
a36e26abcf54 issue1490: Translate other points as well, when at gauge.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 7258
diff changeset
802 addAxisSeries(series, YAXIS.W.idx, visible);
a36e26abcf54 issue1490: Translate other points as well, when at gauge.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 7258
diff changeset
803 }
a36e26abcf54 issue1490: Translate other points as well, when at gauge.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 7258
diff changeset
804 else {
a36e26abcf54 issue1490: Translate other points as well, when at gauge.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 7258
diff changeset
805 addAxisSeries(series, YAXIS.WCm.idx, visible);
a36e26abcf54 issue1490: Translate other points as well, when at gauge.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 7258
diff changeset
806 }
7270
a365e587af67 Little workaround not to crash uf there is no theme style. TODO: Figure out why the theme style is null at this point.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7261
diff changeset
807 if (visible && theme != null && theme.parseShowPointLabel()) {
5864
f2e46a668fe6 River artifacts: Renamed FLYSAnnotation to RiverAnnotation.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5863
diff changeset
808 RiverAnnotation flysAnno =
f2e46a668fe6 River artifacts: Renamed FLYSAnnotation to RiverAnnotation.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5863
diff changeset
809 new RiverAnnotation(null, null, null, theme);
3729
e727e3ebdf85 Factored out a pure QW model to be more reusable.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 3610
diff changeset
810 flysAnno.setTextAnnotations(textAnnos);
e727e3ebdf85 Factored out a pure QW model to be more reusable.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 3610
diff changeset
811 addAnnotations(flysAnno);
3055
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
812 }
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
813 }
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
814
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
815 @Override
9123
1cc7653ca84f Cleanup of ChartGenerator and ChartGenerator2 code. Put some of the copy/pasted code into a common abstraction.
gernotbelger
parents: 8856
diff changeset
816 protected String getChartTitle(final CallContext context) {
3406
3732e1bab0aa Add kilometer to chart titles
Christian Lins <christian.lins@intevation.de>
parents: 3286
diff changeset
817 return Resources.format(
3732e1bab0aa Add kilometer to chart titles
Christian Lins <christian.lins@intevation.de>
parents: 3286
diff changeset
818 context.getMeta(),
3732e1bab0aa Add kilometer to chart titles
Christian Lins <christian.lins@intevation.de>
parents: 3286
diff changeset
819 I18N_CHART_TITLE,
3732e1bab0aa Add kilometer to chart titles
Christian Lins <christian.lins@intevation.de>
parents: 3286
diff changeset
820 I18N_CHART_TITLE_DEFAULT,
3732e1bab0aa Add kilometer to chart titles
Christian Lins <christian.lins@intevation.de>
parents: 3286
diff changeset
821 context.getContextValue(CURRENT_KM));
3732e1bab0aa Add kilometer to chart titles
Christian Lins <christian.lins@intevation.de>
parents: 3286
diff changeset
822 }
3732e1bab0aa Add kilometer to chart titles
Christian Lins <christian.lins@intevation.de>
parents: 3286
diff changeset
823
3732e1bab0aa Add kilometer to chart titles
Christian Lins <christian.lins@intevation.de>
parents: 3286
diff changeset
824 @Override
9123
1cc7653ca84f Cleanup of ChartGenerator and ChartGenerator2 code. Put some of the copy/pasted code into a common abstraction.
gernotbelger
parents: 8856
diff changeset
825 protected String getDefaultChartTitle(final CallContext context) {
3055
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
826 return msg(I18N_CHART_TITLE, I18N_CHART_TITLE_DEFAULT);
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
827 }
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
828
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
829 @Override
9123
1cc7653ca84f Cleanup of ChartGenerator and ChartGenerator2 code. Put some of the copy/pasted code into a common abstraction.
gernotbelger
parents: 8856
diff changeset
830 protected String getDefaultChartSubtitle(final CallContext context) {
6101
a0078e5e3b39 Removed unused context from RangeAccess and subclasses leading to some dead code removal.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5994
diff changeset
831 FixAnalysisAccess access = new FixAnalysisAccess(artifact);
3409
97ad960f5579 Add subtitle to Fix W/Q chart and refactor addSubtitle() method(s)
Christian Lins <christian.lins@intevation.de>
parents: 3408
diff changeset
832 DateRange dateRange = access.getDateRange();
97ad960f5579 Add subtitle to Fix W/Q chart and refactor addSubtitle() method(s)
Christian Lins <christian.lins@intevation.de>
parents: 3408
diff changeset
833 DateRange refRange = access.getReferencePeriod();
3466
8160e62bbb3a Registered new output 'fix_vollmer_wq_curve' for the vollmer path of fixings analysis module; create required Facets for it after calculation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 3410
diff changeset
834
8160e62bbb3a Registered new output 'fix_vollmer_wq_curve' for the vollmer path of fixings analysis module; create required Facets for it after calculation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 3410
diff changeset
835 if (dateRange != null && refRange != null) {
8160e62bbb3a Registered new output 'fix_vollmer_wq_curve' for the vollmer path of fixings analysis module; create required Facets for it after calculation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 3410
diff changeset
836 return Resources.format(
8160e62bbb3a Registered new output 'fix_vollmer_wq_curve' for the vollmer path of fixings analysis module; create required Facets for it after calculation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 3410
diff changeset
837 context.getMeta(),
8160e62bbb3a Registered new output 'fix_vollmer_wq_curve' for the vollmer path of fixings analysis module; create required Facets for it after calculation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 3410
diff changeset
838 I18N_CHART_SUBTITLE,
8160e62bbb3a Registered new output 'fix_vollmer_wq_curve' for the vollmer path of fixings analysis module; create required Facets for it after calculation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 3410
diff changeset
839 "",
7261
a56fe3bc6700 Refactoring: Let RiverAccess.getRiver return an River.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 7260
diff changeset
840 access.getRiverName(),
3466
8160e62bbb3a Registered new output 'fix_vollmer_wq_curve' for the vollmer path of fixings analysis module; create required Facets for it after calculation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 3410
diff changeset
841 dateRange.getFrom(),
8160e62bbb3a Registered new output 'fix_vollmer_wq_curve' for the vollmer path of fixings analysis module; create required Facets for it after calculation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 3410
diff changeset
842 dateRange.getTo(),
8160e62bbb3a Registered new output 'fix_vollmer_wq_curve' for the vollmer path of fixings analysis module; create required Facets for it after calculation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 3410
diff changeset
843 refRange.getFrom(),
8160e62bbb3a Registered new output 'fix_vollmer_wq_curve' for the vollmer path of fixings analysis module; create required Facets for it after calculation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 3410
diff changeset
844 refRange.getTo());
8160e62bbb3a Registered new output 'fix_vollmer_wq_curve' for the vollmer path of fixings analysis module; create required Facets for it after calculation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 3410
diff changeset
845 }
8160e62bbb3a Registered new output 'fix_vollmer_wq_curve' for the vollmer path of fixings analysis module; create required Facets for it after calculation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 3410
diff changeset
846
8160e62bbb3a Registered new output 'fix_vollmer_wq_curve' for the vollmer path of fixings analysis module; create required Facets for it after calculation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 3410
diff changeset
847 return null;
3406
3732e1bab0aa Add kilometer to chart titles
Christian Lins <christian.lins@intevation.de>
parents: 3286
diff changeset
848 }
3732e1bab0aa Add kilometer to chart titles
Christian Lins <christian.lins@intevation.de>
parents: 3286
diff changeset
849
3732e1bab0aa Add kilometer to chart titles
Christian Lins <christian.lins@intevation.de>
parents: 3286
diff changeset
850 @Override
9123
1cc7653ca84f Cleanup of ChartGenerator and ChartGenerator2 code. Put some of the copy/pasted code into a common abstraction.
gernotbelger
parents: 8856
diff changeset
851 protected void addSubtitles(final CallContext context, final JFreeChart chart) {
1cc7653ca84f Cleanup of ChartGenerator and ChartGenerator2 code. Put some of the copy/pasted code into a common abstraction.
gernotbelger
parents: 8856
diff changeset
852 String defaultSubtitle = getDefaultChartSubtitle(getContext());
3466
8160e62bbb3a Registered new output 'fix_vollmer_wq_curve' for the vollmer path of fixings analysis module; create required Facets for it after calculation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 3410
diff changeset
853
8160e62bbb3a Registered new output 'fix_vollmer_wq_curve' for the vollmer path of fixings analysis module; create required Facets for it after calculation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 3410
diff changeset
854 if (defaultSubtitle == null || defaultSubtitle.length() == 0) {
8160e62bbb3a Registered new output 'fix_vollmer_wq_curve' for the vollmer path of fixings analysis module; create required Facets for it after calculation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 3410
diff changeset
855 return;
8160e62bbb3a Registered new output 'fix_vollmer_wq_curve' for the vollmer path of fixings analysis module; create required Facets for it after calculation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 3410
diff changeset
856 }
8160e62bbb3a Registered new output 'fix_vollmer_wq_curve' for the vollmer path of fixings analysis module; create required Facets for it after calculation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 3410
diff changeset
857
8160e62bbb3a Registered new output 'fix_vollmer_wq_curve' for the vollmer path of fixings analysis module; create required Facets for it after calculation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 3410
diff changeset
858 chart.addSubtitle(new TextTitle(defaultSubtitle));
8160e62bbb3a Registered new output 'fix_vollmer_wq_curve' for the vollmer path of fixings analysis module; create required Facets for it after calculation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 3410
diff changeset
859
3410
f382127df48e Add analysis periods as subtitle to W/Q chart
Christian Lins <christian.lins@intevation.de>
parents: 3409
diff changeset
860 StringBuilder buf = new StringBuilder();
f382127df48e Add analysis periods as subtitle to W/Q chart
Christian Lins <christian.lins@intevation.de>
parents: 3409
diff changeset
861
f382127df48e Add analysis periods as subtitle to W/Q chart
Christian Lins <christian.lins@intevation.de>
parents: 3409
diff changeset
862 // Add analysis periods as additional subtitle
6101
a0078e5e3b39 Removed unused context from RangeAccess and subclasses leading to some dead code removal.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5994
diff changeset
863 FixAnalysisAccess access = new FixAnalysisAccess(artifact);
3410
f382127df48e Add analysis periods as subtitle to W/Q chart
Christian Lins <christian.lins@intevation.de>
parents: 3409
diff changeset
864 DateRange[] aperiods = access.getAnalysisPeriods();
f382127df48e Add analysis periods as subtitle to W/Q chart
Christian Lins <christian.lins@intevation.de>
parents: 3409
diff changeset
865 buf.append(msg("fix.analysis.periods"));
f382127df48e Add analysis periods as subtitle to W/Q chart
Christian Lins <christian.lins@intevation.de>
parents: 3409
diff changeset
866 buf.append(": ");
f382127df48e Add analysis periods as subtitle to W/Q chart
Christian Lins <christian.lins@intevation.de>
parents: 3409
diff changeset
867 for(int n = 0; n < aperiods.length; n++) {
f382127df48e Add analysis periods as subtitle to W/Q chart
Christian Lins <christian.lins@intevation.de>
parents: 3409
diff changeset
868 buf.append(
f382127df48e Add analysis periods as subtitle to W/Q chart
Christian Lins <christian.lins@intevation.de>
parents: 3409
diff changeset
869 Resources.format(
f382127df48e Add analysis periods as subtitle to W/Q chart
Christian Lins <christian.lins@intevation.de>
parents: 3409
diff changeset
870 context.getMeta(),
f382127df48e Add analysis periods as subtitle to W/Q chart
Christian Lins <christian.lins@intevation.de>
parents: 3409
diff changeset
871 I18N_CHART_SUBTITLE1,
f382127df48e Add analysis periods as subtitle to W/Q chart
Christian Lins <christian.lins@intevation.de>
parents: 3409
diff changeset
872 "",
f382127df48e Add analysis periods as subtitle to W/Q chart
Christian Lins <christian.lins@intevation.de>
parents: 3409
diff changeset
873 aperiods[n].getFrom(),
f382127df48e Add analysis periods as subtitle to W/Q chart
Christian Lins <christian.lins@intevation.de>
parents: 3409
diff changeset
874 aperiods[n].getTo()));
f382127df48e Add analysis periods as subtitle to W/Q chart
Christian Lins <christian.lins@intevation.de>
parents: 3409
diff changeset
875 if(n + 1 < aperiods.length) {
f382127df48e Add analysis periods as subtitle to W/Q chart
Christian Lins <christian.lins@intevation.de>
parents: 3409
diff changeset
876 buf.append("; ");
f382127df48e Add analysis periods as subtitle to W/Q chart
Christian Lins <christian.lins@intevation.de>
parents: 3409
diff changeset
877 }
f382127df48e Add analysis periods as subtitle to W/Q chart
Christian Lins <christian.lins@intevation.de>
parents: 3409
diff changeset
878 }
f382127df48e Add analysis periods as subtitle to W/Q chart
Christian Lins <christian.lins@intevation.de>
parents: 3409
diff changeset
879
f382127df48e Add analysis periods as subtitle to W/Q chart
Christian Lins <christian.lins@intevation.de>
parents: 3409
diff changeset
880 chart.addSubtitle(new TextTitle(buf.toString()));
f382127df48e Add analysis periods as subtitle to W/Q chart
Christian Lins <christian.lins@intevation.de>
parents: 3409
diff changeset
881 }
f382127df48e Add analysis periods as subtitle to W/Q chart
Christian Lins <christian.lins@intevation.de>
parents: 3409
diff changeset
882
f382127df48e Add analysis periods as subtitle to W/Q chart
Christian Lins <christian.lins@intevation.de>
parents: 3409
diff changeset
883 @Override
9123
1cc7653ca84f Cleanup of ChartGenerator and ChartGenerator2 code. Put some of the copy/pasted code into a common abstraction.
gernotbelger
parents: 8856
diff changeset
884 protected String getDefaultXAxisLabel(final CallContext context) {
3055
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
885 return msg(I18N_XAXIS_LABEL, I18N_XAXIS_LABEL_DEFAULT);
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
886 }
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
887
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
888 @Override
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
889 protected String getDefaultYAxisLabel(int pos) {
9123
1cc7653ca84f Cleanup of ChartGenerator and ChartGenerator2 code. Put some of the copy/pasted code into a common abstraction.
gernotbelger
parents: 8856
diff changeset
890 D4EArtifact flys = getArtifact();
6467
0f997d6397c6 FixWQCurveGenerator: Introduce second (cm) axis.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6438
diff changeset
891
7525
6650485c2c9b Part fix for flys/issue1585: Use result from fitting to display interpolated W/Q points, too. TODO: Draw interpolated as circles.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7270
diff changeset
892 String unit = pos == 0
6650485c2c9b Part fix for flys/issue1585: Use result from fitting to display interpolated W/Q points, too. TODO: Draw interpolated as circles.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7270
diff changeset
893 ? "cm"
6650485c2c9b Part fix for flys/issue1585: Use result from fitting to display interpolated W/Q points, too. TODO: Draw interpolated as circles.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 7270
diff changeset
894 : RiverUtils.getRiver(flys).getWstUnit().getName();
6467
0f997d6397c6 FixWQCurveGenerator: Introduce second (cm) axis.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 6438
diff changeset
895
8856
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
896 return msg(
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
897 I18N_YAXIS_LABEL,
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
898 I18N_YAXIS_LABEL_DEFAULT,
5e38e2924c07 Fix code style.
Tom Gottfried <tom@intevation.de>
parents: 8202
diff changeset
899 new Object[] { unit });
3055
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
900 }
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
901
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
902 @Override
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
903 protected ChartGenerator.YAxisWalker getYAxisWalker() {
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
904 return new YAxisWalker() {
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
905 @Override
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
906 public int length() {
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
907 return YAXIS.values().length;
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
908 }
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
909
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
910 @Override
3770
6a08f4dc790b Manual Points for fixing charts (not working yet)
Christian Lins <christian.lins@intevation.de>
parents: 3729
diff changeset
911 public String getId(int idx) {
3055
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
912 YAXIS[] yaxes = YAXIS.values();
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
913 return yaxes[idx].toString();
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
914 }
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
915 };
3076
5642a83420f2 FLYS artifacts: Removed trailing whitespace.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 3073
diff changeset
916 }
3055
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
917 }
1fbf8462f808 FixWQCurveGenerator generates randomized curves as the Facets crashes when retrieving data
Christian Lins <christian.lins@intevation.de>
parents:
diff changeset
918 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org