Mercurial > dive4elements > gnv-client
view gnv-artifacts/src/main/java/de/intevation/gnv/math/HeightValue.java @ 432:6a70e8883307
Added some type safety. Fixed z value bug in reading database preprocessing. Only dissemble WKT points if really needed.
gnv-artifacts/trunk@480 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Sascha L. Teichmann <sascha.teichmann@intevation.de> |
---|---|
date | Wed, 23 Dec 2009 09:45:40 +0000 |
parents | bed9735adf84 |
children | 828df3ddb758 |
line wrap: on
line source
package de.intevation.gnv.math; import java.io.Serializable; /** * @author Ingo Weinzierl <ingo.weinzierl@intevation.de> */ public class HeightValue implements Serializable { 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; } }