Mercurial > dive4elements > gnv-client
comparison gnv-artifacts/src/main/java/de/intevation/gnv/statistics/VerticalProfileStatistics.java @ 127:f6f0e4ce4a35
merged gnv-artifacts/0.1
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Fri, 28 Sep 2012 12:13:41 +0200 |
parents | 156db25ad4b4 |
children | 7fb9441dd8af |
comparison
equal
deleted
inserted
replaced
49:94a07d1d9316 | 127:f6f0e4ce4a35 |
---|---|
1 /** | |
2 * | |
3 */ | |
4 package de.intevation.gnv.statistics; | |
5 | |
6 import java.sql.SQLException; | |
7 | |
8 import de.intevation.gnv.geobackend.base.Result; | |
9 | |
10 /** | |
11 * @author Tim Englich <tim.englich@intevation.de> | |
12 * | |
13 */ | |
14 public class VerticalProfileStatistics extends TimeseriesStatistics { | |
15 | |
16 /** | |
17 * Constructor | |
18 */ | |
19 public VerticalProfileStatistics() { | |
20 super(); | |
21 } | |
22 | |
23 @Override | |
24 protected double calculateXOrdinateValue(Result row) throws SQLException { | |
25 return row.getDouble("XORDINATE"); | |
26 } | |
27 | |
28 | |
29 } |