Mercurial > dive4elements > river
view flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/WQKms.java @ 2089:0da8874bd378
Added initial state to map artifact to be able to advance and step back.
The map artifact overrides describe() to have the complete UI information in the
describe response document.
flys-artifacts/trunk@3613 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Raimund Renkert <raimund.renkert@intevation.de> |
---|---|
date | Fri, 06 Jan 2012 12:02:10 +0000 |
parents | 03fbf1b30e72 |
children | 5ff481ab24a1 |
line wrap: on
line source
package de.intevation.flys.artifacts.model; import gnu.trove.TDoubleArrayList; import org.apache.log4j.Logger; /** * This class represents a pool of data triples that consists of 'W', 'Q' and * 'KM' data. * * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a> */ public class WQKms extends WQ implements WKms { private static Logger logger = Logger.getLogger(WQKms.class); /** The array that contains the 'KMs' values. */ protected TDoubleArrayList kms; public WQKms() { this(""); } public WQKms(String name) { super(name); this.kms = new TDoubleArrayList(); } public WQKms(int capacity) { this(capacity, ""); } public WQKms(int capacity, String name) { super(name); this.kms = new TDoubleArrayList(capacity); } public WQKms(double [] kms, double [] qs, double [] ws) { this(kms, qs, ws, ""); } public WQKms(double [] kms, double [] qs, double [] ws, String name) { super(qs, ws, name); this.kms = new TDoubleArrayList(kms); } @Override public void removeNaNs() { removeNaNs(new TDoubleArrayList [] { w, q, kms }); } /** * Adds a new row to this data pool. * * @param w a W. * @param q a Q. * @param kms a Kms. */ public void add(double w, double q, double km) { super.add(w, q); kms.add(km); } /** * This method returns a triple of W, Q and Kms in a single 3dim array. * * @param idx The position of the triple. * @param dst destination array * * @return a triple of [W, Q, Kms] in dst. */ @Override public double[] get(int idx, double [] dst) { dst[0] = w .getQuick(idx); dst[1] = q .getQuick(idx); dst[2] = kms.getQuick(idx); return dst; } @Override public double getKm(int idx) { return kms.getQuick(idx); } @Override public TDoubleArrayList allKms() { return kms; } @Override public TDoubleArrayList allWs() { return w; } public double[] getKms() { return kms.toNativeArray(); } /** * Returns a string that consist of the first and last kilometer. * * @return a string that consist of the first and last kilometer. */ public String toString() { double from = getKm(0); double to = getKm(size()-1); return from + " - " + to; } } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :