Mercurial > dive4elements > river
view flys-artifacts/src/main/java/de/intevation/flys/artifacts/math/Identity.java @ 671:e0e39a0eb3fe
Berechnung 4: Determine the gauges by their station position. This hopefully fixes segment assignment problems.
flys-artifacts/trunk@2091 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Sascha L. Teichmann <sascha.teichmann@intevation.de> |
---|---|
date | Wed, 08 Jun 2011 19:11:18 +0000 |
parents | 913b52064449 |
children | c09c9e05ecfa |
line wrap: on
line source
package de.intevation.flys.artifacts.math; public final class Identity implements Function { public static final Identity IDENTITY = new Identity(); public Identity() { } public double value(double x) { return x; } } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :