Mercurial > dive4elements > gnv-client
view gnv-artifacts/src/main/java/de/intevation/gnv/math/Interpolation2D.java @ 433:828df3ddb758
Added interpolation capabilities along z axis to XYColumns.
gnv-artifacts/trunk@481 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Sascha L. Teichmann <sascha.teichmann@intevation.de> |
---|---|
date | Wed, 23 Dec 2009 12:20:25 +0000 |
parents | 422275fc9927 |
children | 0eed5749fd63 |
line wrap: on
line source
package de.intevation.gnv.math; import java.util.ArrayList; import java.util.List; import java.util.HashMap; import java.util.Collections; import com.vividsolutions.jts.geom.Coordinate; import com.vividsolutions.jts.geom.Envelope; import com.vividsolutions.jts.index.quadtree.Quadtree; import org.apache.log4j.Logger; /** * @author Sascha L. Teichmann */ public final class Interpolation2D { private static Logger log = Logger.getLogger(Interpolation2D.class); public interface Consumer { void interpolated(Coordinate point, boolean success); } // interface Consumer private Interpolation2D() { } public static final double [] calculateBuffer( List <? extends Point2d> points ) { HashMap<Integer, ArrayList<Point2d>> iMap = new HashMap<Integer, ArrayList<Point2d>>(); HashMap<Integer, ArrayList<Point2d>> jMap = new HashMap<Integer, ArrayList<Point2d>>(); for (int k = points.size()-1; k >= 0; --k) { Point2d p = points.get(k); ArrayList<Point2d> jList = jMap.get(p.j); ArrayList<Point2d> iList = jMap.get(p.i); if (jList == null) { iMap.put(p.j, jList = new ArrayList<Point2d>()); } jList.add(p); if (iList == null) { jMap.put(p.i, iList = new ArrayList<Point2d>()); } iList.add(p); } double dxMax = -Double.MAX_VALUE; double dyMax = -Double.MAX_VALUE; for (ArrayList<Point2d> v: jMap.values()) { Collections.sort(v, Point2d.Y_COMPARATOR); for (int i = 1, L = v.size(); i < L; ++i) { double dy = Math.abs(v.get(i).x - v.get(i-1).x); if (dy > dyMax) { dyMax = dy; } } } dyMax += 1e-5d; for (ArrayList<Point2d> v: iMap.values()) { Collections.sort(v, Point2d.X_COMPARATOR); for (int i = 1, L = v.size(); i < L; ++i) { double dx = Math.abs(v.get(i).x - v.get(i-1).x); if (dx > dxMax) { dxMax = dx; } } } dxMax += 1e-5d; return new double [] { dxMax, dyMax }; } public static void interpolate( List<? extends Coordinate> path, List<? extends Point2d> points, double from, double to, int steps, Metrics metrics, Consumer consumer ) { int N = path.size(); int M = points.size(); if (log.isDebugEnabled()) { log.debug("Size of path: " + N); log.debug("Size of points: " + M); } if (M < 1 || N < 2) { // nothing to do return; } double [] buffer = calculateBuffer(points); double dxMax = buffer[0]; double dyMax = buffer[1]; if (log.isDebugEnabled()) { log.debug("buffer size: " + dxMax + " / " + dyMax); } // put into spatial index to speed up finding neighbors. Quadtree spatialIndex = new Quadtree(); for (int i = 0; i < M; ++i) { Point2d p = points.get(i); spatialIndex.insert(p.envelope(), p); } LinearToMap linearToMap = new LinearToMap( path, from, to, metrics); double dP = (to - from)/steps; Coordinate center = new Coordinate(); Envelope queryBuffer = new Envelope(); Point2d [] neighbors = new Point2d[4]; int missedInterpolations = 0; int interpolations = 0; for (double p = from; p <= to; p += dP) { if (!linearToMap.locate(p, center)) { continue; } queryBuffer.init( center.x - dxMax, center.x + dxMax, center.y - dyMax, center.y + dyMax); List potential = spatialIndex.query(queryBuffer); L1Comparator invL1 = new L1Comparator(center); Collections.sort(potential, invL1); neighbors[0] = neighbors[1] = neighbors[2] = neighbors[3] = null; /* bit code of neighbors 0---1 | x | 2---3 */ int mask = 0; // reversed order is essential here! for (int i = potential.size()-1; i >= 0; --i) { Point2d n = (Point2d)potential.get(i); int code = n.x > center.x ? 1 : 0; if (n.y > center.y) code |= 2; neighbors[code] = n; mask |= 1 << code; } int numNeighbors = Integer.bitCount(mask); // only interpolate if we have all four neighbors // and we do not have any gaps. if (numNeighbors == 4 && !neighbors[0].hasIGap(neighbors[1]) && !neighbors[1].hasJGap(neighbors[3]) && !neighbors[3].hasIGap(neighbors[2]) && !neighbors[2].hasJGap(neighbors[0]) ) { double z1 = interpolate( neighbors[0].x, neighbors[0].z, neighbors[1].x, neighbors[1].z, center.x); double z2 = interpolate( neighbors[2].x, neighbors[2].z, neighbors[3].x, neighbors[3].z, center.x); double y1 = interpolate( neighbors[0].x, neighbors[0].y, neighbors[1].x, neighbors[1].y, center.x); double y2 = interpolate( neighbors[2].x, neighbors[2].y, neighbors[3].x, neighbors[3].y, center.x); center.z = interpolate( y1, z1, y2, z2, center.y); consumer.interpolated(center, true); ++interpolations; } else { consumer.interpolated(center, false); ++missedInterpolations; } } if (log.isDebugEnabled()) { log.debug("interpolations: " + interpolations + " / " + missedInterpolations); } } public static final double interpolate( double x1, double y1, double x2, double y2, double x ) { if (x2 == x1) { return (y1 + y2)*0.5d; } double m = (y2-y1)/(x2-x1); double b = y1 - m*x1; return m*x + b; } } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8: