view gnv-artifacts/src/main/java/de/intevation/gnv/statistics/HorizontalCrossSectionStatistics.java @ 255:5403452c06fc

Added proper values for calculating the Statistics of VerticalProfiles and HorizontalProfiles issue86 gnv-artifacts/trunk@330 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Thu, 12 Nov 2009 14:47:20 +0000
parents 926530bda1a7
children
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 previousRow,Result row) throws SQLException {
        return 0; // TODO: Select propper Value
    }
}

http://dive4elements.wald.intevation.org