view artifacts/src/main/java/org/dive4elements/river/exports/FlowVelocityGenerator.java @ 6799:372c255714df longitudinal-symmetry

Removed obsolete imports.
author Tom Gottfried <tom.gottfried@intevation.de>
date Fri, 09 Aug 2013 13:36:05 +0200
parents 7089f338138a
children
line wrap: on
line source
/* Copyright (C) 2011, 2012, 2013 by Bundesanstalt für Gewässerkunde
 * Software engineering by Intevation GmbH
 *
 * This file is Free Software under the GNU AGPL (>=v3)
 * and comes with ABSOLUTELY NO WARRANTY! Check out the
 * documentation coming with Dive4Elements River for details.
 */

package org.dive4elements.river.exports;

import org.apache.log4j.Logger;

import org.dive4elements.river.artifacts.model.FacetTypes;

/**
 * An OutGenerator that generates flow velocity diagramms.
 *
 * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a>
 */
public class FlowVelocityGenerator
extends      LongitudinalSectionGenerator
implements   FacetTypes
{
    public enum YAXIS {
        V(0), // flow velocity
        T(1), // tau (shear stress)
        Q(2), // discharge
        O(3), // diameter
        W(4), // waterlevel
        D(5); // waterlevel-difference
        protected int idx;
        private YAXIS(int c) {
            idx = c;
        }
    }

    /** The logger that is used in this generator. */
    private static Logger logger = Logger.getLogger(FlowVelocityGenerator.class);

    /**
     * Key to look up internationalized String for LongitudinalSection diagrams
     * titles.
     */
    public static final String I18N_CHART_TITLE =
        "chart.flow_velocity.section.title";

}
// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org