view artifacts/src/main/java/org/dive4elements/river/exports/process/SedimentLoadLSM3AProcessor.java @ 8421:0fa963038c61

Only draw discharge curve if on same station as navigation.
author Sascha L. Teichmann <teichmann@intevation.de>
date Fri, 17 Oct 2014 13:17:12 +0200
parents 061e85212d25
children
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.dive4elements.river.exports.DiagramGenerator;

public class SedimentLoadLSM3AProcessor extends SedimentLoadLSProcessor {

    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