view artifacts/src/main/java/org/dive4elements/river/artifacts/model/WWAxisTypes.java @ 8723:686d8876edf9

(issue1754) Fix Radius calculation for filtered (smoothed) facets To know the acutal extend of the Domain axis shown we need to know all data in the diagram as the acutal extend is the data point needed to calculate a Radius confusingly configured in zoom-scales we have to add all data first and then add the real filtered facets in a postprocessing step.
author Andre Heinecke <andre.heinecke@intevation.de>
date Wed, 29 Apr 2015 11:56:04 +0200
parents af13ceeba52a
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.artifacts.model;

import org.dive4elements.river.artifacts.math.Function;
import org.dive4elements.river.artifacts.math.Identity;
import org.dive4elements.river.artifacts.math.AddScaleFunction;

public class WWAxisTypes
{
    protected boolean inCm1;
    protected boolean inCm2;

    public WWAxisTypes() {
        inCm1 = inCm2 = true;
    }

    public WWAxisTypes(WW ww) {
        this();
        classify(ww);
    }

    public void classify(WW ww) {
        if (!ww.startAtGauge()) inCm1 = false;
        if (!ww.endAtGauge())   inCm2 = false;
    }

    public boolean getInCm(int index) {
        switch (index) {
            case 0:  return inCm1;
            case 1:  return inCm2;
            default: return false;
        }
    }

    public boolean getInCm1() {
        return inCm1;
    }

    public void setInCm1(boolean inCm1) {
        this.inCm1 = inCm1;
    }

    public boolean getInCm2() {
        return inCm2;
    }

    public void setInCm2(boolean inCm2) {
        this.inCm2 = inCm2;
    }

    public WW.ApplyFunctionIterator transform(WW ww) {
        return transform(ww, false);
    }

    private static final double zero(Double d) {
        return d == null ? 0 : d;
    }

    public WW.ApplyFunctionIterator transform(WW ww, boolean normalized) {

        Function function1;
        Function function2;

        if (!normalized) {
            function1 = inCm1
                ? new AddScaleFunction(-ww.getStartDatum(), 100d)
                : Identity.IDENTITY;

            function2 = inCm2
                ? new AddScaleFunction(-ww.getEndDatum(), 100d)
                : Identity.IDENTITY;
        }
        else {
            double minW1 = ww.minWs();
            double minW2 = ww.minWs2();
            double scale1 = inCm1 ? 100d : 1d;
            double scale2 = inCm2 ? 100d : 1d;
            function1 = new AddScaleFunction(-minW1, scale1);
            function2 = new AddScaleFunction(-minW2, scale2);
        }

        return new WW.ApplyFunctionIterator(ww, function1, function2);
    }
}
// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf-8 :

http://dive4elements.wald.intevation.org