annotate artifacts/src/main/java/org/dive4elements/river/artifacts/model/fixings/FixResult.java @ 9348:a3f318347707

Show wq outliers within same thems with different symbol: not ready yet
author gernotbelger
date Tue, 31 Jul 2018 11:25:38 +0200
parents 8efef772a488
children ddcd52d239cd
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: 5863
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: 5863
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: 3729
diff changeset
9 package org.dive4elements.river.artifacts.model.fixings;
3450
22790758b132 FixA/Vollmer: return the result now.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
10
6877
2d96d8240e3e FixA: Make dates of analysis periods unique, too. TODO: Remap the indices like the reference interval.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5994
diff changeset
11 import org.apache.log4j.Logger;
5831
bd047b71ab37 Repaired internal references
Sascha L. Teichmann <teichmann@intevation.de>
parents: 3729
diff changeset
12 import org.dive4elements.river.artifacts.model.Parameters;
3450
22790758b132 FixA/Vollmer: return the result now.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
13
5831
bd047b71ab37 Repaired internal references
Sascha L. Teichmann <teichmann@intevation.de>
parents: 3729
diff changeset
14 import org.dive4elements.river.utils.KMIndex;
3450
22790758b132 FixA/Vollmer: return the result now.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
15
22790758b132 FixA/Vollmer: return the result now.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
16 import java.io.Serializable;
6877
2d96d8240e3e FixA: Make dates of analysis periods unique, too. TODO: Remap the indices like the reference interval.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5994
diff changeset
17 import java.util.Collection;
2d96d8240e3e FixA: Make dates of analysis periods unique, too. TODO: Remap the indices like the reference interval.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5994
diff changeset
18 import java.util.Date;
9348
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 6891
diff changeset
19 import java.util.Set;
6877
2d96d8240e3e FixA: Make dates of analysis periods unique, too. TODO: Remap the indices like the reference interval.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5994
diff changeset
20 import java.util.TreeMap;
2d96d8240e3e FixA: Make dates of analysis periods unique, too. TODO: Remap the indices like the reference interval.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5994
diff changeset
21 import java.util.TreeSet;
3450
22790758b132 FixA/Vollmer: return the result now.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
22
22790758b132 FixA/Vollmer: return the result now.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
23 public class FixResult
22790758b132 FixA/Vollmer: return the result now.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
24 implements Serializable
22790758b132 FixA/Vollmer: return the result now.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
25 {
6877
2d96d8240e3e FixA: Make dates of analysis periods unique, too. TODO: Remap the indices like the reference interval.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5994
diff changeset
26 private static Logger log =
2d96d8240e3e FixA: Make dates of analysis periods unique, too. TODO: Remap the indices like the reference interval.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5994
diff changeset
27 Logger.getLogger(FixResult.class);
2d96d8240e3e FixA: Make dates of analysis periods unique, too. TODO: Remap the indices like the reference interval.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5994
diff changeset
28
3450
22790758b132 FixA/Vollmer: return the result now.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
29 protected Parameters parameters;
22790758b132 FixA/Vollmer: return the result now.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
30 protected KMIndex<QWD []> referenced;
9348
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 6891
diff changeset
31 protected KMIndex<QWD []> outliers;
3450
22790758b132 FixA/Vollmer: return the result now.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
32
22790758b132 FixA/Vollmer: return the result now.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
33 public FixResult() {
22790758b132 FixA/Vollmer: return the result now.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
34 }
22790758b132 FixA/Vollmer: return the result now.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
35
22790758b132 FixA/Vollmer: return the result now.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
36 public FixResult(
22790758b132 FixA/Vollmer: return the result now.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
37 Parameters parameters,
22790758b132 FixA/Vollmer: return the result now.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
38 KMIndex<QWD []> referenced,
9348
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 6891
diff changeset
39 KMIndex<QWD []> outliers
3450
22790758b132 FixA/Vollmer: return the result now.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
40 ) {
22790758b132 FixA/Vollmer: return the result now.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
41 this.parameters = parameters;
22790758b132 FixA/Vollmer: return the result now.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
42 this.referenced = referenced;
22790758b132 FixA/Vollmer: return the result now.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
43 this.outliers = outliers;
22790758b132 FixA/Vollmer: return the result now.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
44 }
22790758b132 FixA/Vollmer: return the result now.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
45
22790758b132 FixA/Vollmer: return the result now.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
46 public KMIndex<QWD []> getReferenced() {
22790758b132 FixA/Vollmer: return the result now.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
47 return referenced;
22790758b132 FixA/Vollmer: return the result now.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
48 }
22790758b132 FixA/Vollmer: return the result now.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
49
22790758b132 FixA/Vollmer: return the result now.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
50 public void setReferenced(KMIndex<QWD []> referenced) {
22790758b132 FixA/Vollmer: return the result now.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
51 this.referenced = referenced;
22790758b132 FixA/Vollmer: return the result now.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
52 }
22790758b132 FixA/Vollmer: return the result now.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
53
6877
2d96d8240e3e FixA: Make dates of analysis periods unique, too. TODO: Remap the indices like the reference interval.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5994
diff changeset
54 public void makeReferenceEventsDatesUnique() {
9348
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 6891
diff changeset
55 final DateUniqueMaker dum = new DateUniqueMaker();
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 6891
diff changeset
56
6877
2d96d8240e3e FixA: Make dates of analysis periods unique, too. TODO: Remap the indices like the reference interval.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5994
diff changeset
57 for (KMIndex.Entry<QWD []> entry: referenced) {
9348
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 6891
diff changeset
58 for (QWD ref: entry.getValue())
6877
2d96d8240e3e FixA: Make dates of analysis periods unique, too. TODO: Remap the indices like the reference interval.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5994
diff changeset
59 dum.makeUnique(ref);
2d96d8240e3e FixA: Make dates of analysis periods unique, too. TODO: Remap the indices like the reference interval.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5994
diff changeset
60 }
9348
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 6891
diff changeset
61
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 6891
diff changeset
62 // FIXME
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 6891
diff changeset
63 // for (KMIndex.Entry<QWD []> entry: outliers) {
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 6891
diff changeset
64 // for (QWD ref: entry.getValue())
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 6891
diff changeset
65 // dum.makeUnique(ref);
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 6891
diff changeset
66 // }
6877
2d96d8240e3e FixA: Make dates of analysis periods unique, too. TODO: Remap the indices like the reference interval.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5994
diff changeset
67 }
2d96d8240e3e FixA: Make dates of analysis periods unique, too. TODO: Remap the indices like the reference interval.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5994
diff changeset
68
9348
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 6891
diff changeset
69 private Collection<Integer> getReferenceEventsIndices() {
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 6891
diff changeset
70 final TreeMap<Date, Integer> dates = new TreeMap<>();
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 6891
diff changeset
71
6877
2d96d8240e3e FixA: Make dates of analysis periods unique, too. TODO: Remap the indices like the reference interval.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5994
diff changeset
72 for (KMIndex.Entry<QWD []> entry: referenced) {
9348
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 6891
diff changeset
73 for (QWD value: entry.getValue())
6877
2d96d8240e3e FixA: Make dates of analysis periods unique, too. TODO: Remap the indices like the reference interval.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5994
diff changeset
74 dates.put(value.date, value.index);
2d96d8240e3e FixA: Make dates of analysis periods unique, too. TODO: Remap the indices like the reference interval.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5994
diff changeset
75 }
9348
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 6891
diff changeset
76 // FIXME
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 6891
diff changeset
77 // for (KMIndex.Entry<QWD []> entry: outliers) {
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 6891
diff changeset
78 // for (QWD value: entry.getValue())
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 6891
diff changeset
79 // dates.put(value.date, value.index);
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 6891
diff changeset
80 // }
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 6891
diff changeset
81
6877
2d96d8240e3e FixA: Make dates of analysis periods unique, too. TODO: Remap the indices like the reference interval.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5994
diff changeset
82 return dates.values();
2d96d8240e3e FixA: Make dates of analysis periods unique, too. TODO: Remap the indices like the reference interval.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5994
diff changeset
83 }
2d96d8240e3e FixA: Make dates of analysis periods unique, too. TODO: Remap the indices like the reference interval.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5994
diff changeset
84
2d96d8240e3e FixA: Make dates of analysis periods unique, too. TODO: Remap the indices like the reference interval.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5994
diff changeset
85 public void remapReferenceIndicesToRank() {
9348
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 6891
diff changeset
86 final RankRemapper remapper = new RankRemapper();
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 6891
diff changeset
87 for (Integer idx: getReferenceEventsIndices())
6891
8efef772a488 FixA: Remapped indices of analysis periods, too. Needs testing!
Sascha L. Teichmann <teichmann@intevation.de>
parents: 6877
diff changeset
88 remapper.toMap(idx);
9348
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 6891
diff changeset
89
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 6891
diff changeset
90 for (KMIndex.Entry<QWD []> entry: referenced) {
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 6891
diff changeset
91 for (QWD value: entry.getValue())
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 6891
diff changeset
92 remapper.remap(value);
6877
2d96d8240e3e FixA: Make dates of analysis periods unique, too. TODO: Remap the indices like the reference interval.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5994
diff changeset
93 }
9348
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 6891
diff changeset
94 // FIXME
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 6891
diff changeset
95 // for (KMIndex.Entry<QWD []> entry: outliers) {
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 6891
diff changeset
96 // for (QWD value: entry.getValue())
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 6891
diff changeset
97 // remapper.remap(value);
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 6891
diff changeset
98 // }
6877
2d96d8240e3e FixA: Make dates of analysis periods unique, too. TODO: Remap the indices like the reference interval.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5994
diff changeset
99 }
2d96d8240e3e FixA: Make dates of analysis periods unique, too. TODO: Remap the indices like the reference interval.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5994
diff changeset
100
2d96d8240e3e FixA: Make dates of analysis periods unique, too. TODO: Remap the indices like the reference interval.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5994
diff changeset
101 public Collection<Date> getReferenceEventsDates() {
9348
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 6891
diff changeset
102
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 6891
diff changeset
103 final Set<Date> dates = new TreeSet<>();
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 6891
diff changeset
104
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 6891
diff changeset
105 for (final KMIndex.Entry<QWD []> entry: referenced) {
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 6891
diff changeset
106 for (final QWD qwd: entry.getValue())
6877
2d96d8240e3e FixA: Make dates of analysis periods unique, too. TODO: Remap the indices like the reference interval.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5994
diff changeset
107 dates.add(qwd.date);
2d96d8240e3e FixA: Make dates of analysis periods unique, too. TODO: Remap the indices like the reference interval.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5994
diff changeset
108 }
9348
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 6891
diff changeset
109
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 6891
diff changeset
110 // FIXME, but not always...
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 6891
diff changeset
111 // for (final KMIndex.Entry<QWD []> entry: outliers) {
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 6891
diff changeset
112 // for (final QWD qwd: entry.getValue())
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 6891
diff changeset
113 // dates.add(qwd.date);
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 6891
diff changeset
114 // }
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 6891
diff changeset
115
6877
2d96d8240e3e FixA: Make dates of analysis periods unique, too. TODO: Remap the indices like the reference interval.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5994
diff changeset
116 return dates;
2d96d8240e3e FixA: Make dates of analysis periods unique, too. TODO: Remap the indices like the reference interval.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5994
diff changeset
117 }
2d96d8240e3e FixA: Make dates of analysis periods unique, too. TODO: Remap the indices like the reference interval.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5994
diff changeset
118
2d96d8240e3e FixA: Make dates of analysis periods unique, too. TODO: Remap the indices like the reference interval.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5994
diff changeset
119
9348
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 6891
diff changeset
120 public KMIndex<QWD []> getOutliers() {
3450
22790758b132 FixA/Vollmer: return the result now.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
121 return outliers;
22790758b132 FixA/Vollmer: return the result now.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
122 }
22790758b132 FixA/Vollmer: return the result now.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
123
9348
a3f318347707 Show wq outliers within same thems with different symbol: not ready yet
gernotbelger
parents: 6891
diff changeset
124 public void setOutliers(KMIndex<QWD []> outliers) {
3450
22790758b132 FixA/Vollmer: return the result now.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
125 this.outliers = outliers;
22790758b132 FixA/Vollmer: return the result now.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
126 }
22790758b132 FixA/Vollmer: return the result now.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
127
22790758b132 FixA/Vollmer: return the result now.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
128 public Parameters getParameters() {
22790758b132 FixA/Vollmer: return the result now.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
129 return parameters;
22790758b132 FixA/Vollmer: return the result now.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
130 }
22790758b132 FixA/Vollmer: return the result now.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
131
22790758b132 FixA/Vollmer: return the result now.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
132 public void setParameters(Parameters parameters) {
22790758b132 FixA/Vollmer: return the result now.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
133 this.parameters = parameters;
22790758b132 FixA/Vollmer: return the result now.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
134 }
22790758b132 FixA/Vollmer: return the result now.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
135 }
22790758b132 FixA/Vollmer: return the result now.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
136 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org