diff gnv-artifacts/src/main/java/de/intevation/gnv/math/HeightValue.java @ 427:a95aaeb206f7

Added data model classes to store information for interpolation. gnv-artifacts/trunk@475 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Tue, 22 Dec 2009 13:10:56 +0000
parents
children bed9735adf84
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/gnv-artifacts/src/main/java/de/intevation/gnv/math/HeightValue.java	Tue Dec 22 13:10:56 2009 +0000
@@ -0,0 +1,33 @@
+package de.intevation.gnv.math;
+
+/**
+ * @author Ingo Weinzierl <ingo.weinzierl@intevation.de>
+ */
+public class HeightValue {
+
+    private double z;
+    private double v;
+    private int    k;
+
+
+    public HeightValue(double z, double v, int k) {
+        this.z = z;
+        this.v = v;
+        this.k = k;
+    }
+
+
+    public double getZ() {
+        return z;
+    }
+
+
+    public double getV() {
+        return v;
+    }
+
+
+    public double getK() {
+        return k;
+    }
+}

http://dive4elements.wald.intevation.org