view artifacts/src/main/java/org/dive4elements/river/exports/process/SedimentLoadLSM3AProcessor.java @ 8204:c657ddcf1fa6

Sediment loads at measurement stations and longitudinal sections need different processing and styling for diagrams.
author Tom Gottfried <tom@intevation.de>
date Fri, 05 Sep 2014 14:53:58 +0200
parents
children 061e85212d25
line wrap: on
line source
/* Copyright (C) 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.process;

import org.apache.log4j.Logger;

import org.dive4elements.river.exports.DiagramGenerator;

public class SedimentLoadLSM3AProcessor extends SedimentLoadLSProcessor {

    private final static Logger logger =
            Logger.getLogger(SedimentLoadM3AProcessor.class);

    public static final String I18N_YAXIS_LABEL =
        "chart.sedimentload.ls.yaxis.label.m3pera";
    public static final String I18N_YAXIS_LABEL_DEFAULT = "[m\u00b3/a]";

    @Override
    public boolean canHandle(String facettype) {
        return facettype.startsWith("sedimentload.ls.m3a");
    }

    @Override
    public String getAxisLabel(DiagramGenerator generator) {
        return generator.msg(I18N_YAXIS_LABEL, I18N_YAXIS_LABEL_DEFAULT);
    }
}

http://dive4elements.wald.intevation.org