Mercurial > dive4elements > gnv-client
view gnv-artifacts/src/main/java/de/intevation/gnv/statistics/HorizontalCrossSectionStatistics.java @ 224:2b7a40b5b535
Added the RegionFilters into the configuration of the Products for TimeSeriesPoints.
gnv-artifacts/trunk@288 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Tim Englich <tim.englich@intevation.de> |
---|---|
date | Thu, 05 Nov 2009 16:02:36 +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 } }