diff flys-artifacts/src/main/java/de/intevation/flys/utils/DataUtil.java @ 1163:2e0739853807

Fix build, added new DataUtil. flys-artifacts/trunk@2700 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Felix Wolfsteller <felix.wolfsteller@intevation.de>
date Mon, 12 Sep 2011 11:30:19 +0000
parents
children 03fbf1b30e72
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/flys-artifacts/src/main/java/de/intevation/flys/utils/DataUtil.java	Mon Sep 12 11:30:19 2011 +0000
@@ -0,0 +1,36 @@
+package de.intevation.flys.utils;
+
+import java.util.Random;
+
+import de.intevation.flys.artifacts.model.WKms;
+
+public class DataUtil
+{
+    // TODO: resolve duplicate in WQKms
+    public static boolean guessWaterIncreasing(WKms wkms) {
+        return guessWaterIncreasing(wkms, 0.05f);
+    }
+
+    // TODO: resolve duplicate in WQKms
+    public static boolean guessWaterIncreasing(WKms wkms, float factor) {
+        int N = wkms.size();
+        if (N < 2) return false;
+    
+        int samples = (int)(factor*N) + 1;
+    
+        int up = 0;
+    
+        Random rand = new Random();
+    
+        for (int i = 0; i < samples; ++i) {
+            int    pos2 = rand.nextInt(N-1) + 1;
+            if (pos2 == 0) continue;
+            int    pos1 = rand.nextInt(pos2);
+            double w1   = wkms.getW(pos1);
+            double w2   = wkms.getW(pos2);
+            if (w2 > w1) ++up;
+        }
+    
+        return up > samples/2;
+    }
+}

http://dive4elements.wald.intevation.org