view artifacts/src/main/java/org/dive4elements/river/artifacts/access/DGMAccess.java @ 8755:30b1ddadf275

(issue1801) Unify reference gauge finding code The basic way as described in the method comment of the determineRefGauge method is now used in the WINFOArtifact, MainValuesService and RiverUtils.getGauge method. RiverUtils.getGauge previously just returned the first gauge found. While this is now a behavior change I believe that it is always more correct then the undeterministic behavior of the previous implmenentation.
author Andre Heinecke <andre.heinecke@intevation.de>
date Wed, 24 Jun 2015 14:07:26 +0200
parents 1f38656b68c4
children a805211690f7
line wrap: on
line source
package org.dive4elements.river.artifacts.access;

import org.dive4elements.river.artifacts.D4EArtifact;
import org.dive4elements.river.model.DGM;

public class DGMAccess
extends      RangeAccess
{
    private DGM dgm;

    private String geoJSON;

    public DGMAccess() {
    }

    public DGMAccess(D4EArtifact artifact) {
        super(artifact);
    }

    public DGM getDGM() {
        if (dgm == null) {
            Integer sridId = getInteger("dgm");
            dgm = DGM.getDGM(sridId);
        }
        return dgm;
    }

    public String getGeoJSON() {
        if (geoJSON == null) {
            geoJSON = getString("uesk.barriers");
        }
        return geoJSON;
    }
}
// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org