Mercurial > dive4elements > gnv-client
view gnv-artifacts/src/main/java/de/intevation/gnv/statistics/HorizontalCrossSectionStatistics.java @ 247:af474a541f74
Sort Columns to the given order of the ODV-Specification
and added the Columns DATAVALUE and PARAMETER to the output
according to issue68
gnv-artifacts/trunk@316 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Tim Englich <tim.englich@intevation.de> |
---|---|
date | Tue, 10 Nov 2009 15:31:39 +0000 |
parents | 926530bda1a7 |
children | 5403452c06fc |
line wrap: on
line source
/** * */ package de.intevation.gnv.statistics; import java.sql.SQLException; import de.intevation.gnv.geobackend.base.Result; /** * @author Tim Englich <tim.englich@intevation.de> * */ public class HorizontalCrossSectionStatistics extends TimeseriesStatistics { /** * Constructor */ public HorizontalCrossSectionStatistics() { super(); } @Override protected double calculateXOrdinateValue(Result row) throws SQLException { return 0; // TODO: Select propper Value } }