Ticket #17614: 17614-v2a.patch

File 17614-v2a.patch, 10.5 KB (added by GerdP, 6 years ago)

unit test didn't match data in overlap-v-shape.osm

  • src/org/openstreetmap/josm/data/osm/WaySegment.java

     
    1212    /**
    1313     * The way.
    1414     */
    15     public Way way;
     15    public final Way way;
    1616
    1717    /**
    1818     * The index of one of the 2 nodes in the way.  The other node has the
    1919     * index <code>lowerIndex + 1</code>.
    2020     */
    21     public int lowerIndex;
     21    public final int lowerIndex;
    2222
    2323    /**
    2424     * Constructs a new {@code WaySegment}.
  • src/org/openstreetmap/josm/data/validation/tests/MultipolygonTest.java

     
    471471            // the two polygons may only share one or more segments but they may also intersect
    472472            Area a1 = new Area(pd1.get());
    473473            Area a2 = new Area(pd2.get());
    474             PolygonIntersection areaRes = Geometry.polygonIntersection(a1, a2, 1e-6);
     474            PolygonIntersection areaRes = Geometry.polygonIntersection(a1, a2);
    475475            if (areaRes == PolygonIntersection.OUTSIDE)
    476476                return ExtPolygonIntersection.OUTSIDE;
    477477            return ExtPolygonIntersection.CROSSING;
  • src/org/openstreetmap/josm/tools/Geometry.java

     
    11// License: GPL. For details, see LICENSE file.
    22package org.openstreetmap.josm.tools;
    33
    4 import java.awt.Rectangle;
    54import java.awt.geom.Area;
    65import java.awt.geom.Line2D;
    76import java.awt.geom.Path2D;
     7import java.awt.geom.PathIterator;
     8import java.awt.geom.Rectangle2D;
    89import java.math.BigDecimal;
    910import java.math.MathContext;
    1011import java.util.ArrayList;
     
    7172        CROSSING
    7273    }
    7374
     75    /** threshold value for size of intersection area given in east/north space */
     76    public static final double INTERSECTION_EPS_EAST_NORTH = 0.01;
     77
    7478    /**
    7579     * Will find all intersection and add nodes there for list of given ways.
    7680     * Handles self-intersections too.
     
    577581    public static PolygonIntersection polygonIntersection(List<? extends INode> first, List<? extends INode> second) {
    578582        Area a1 = getArea(first);
    579583        Area a2 = getArea(second);
    580         return polygonIntersection(a1, a2);
     584        return polygonIntersection(a1, a2, INTERSECTION_EPS_EAST_NORTH);
    581585    }
    582586
    583587    /**
    584      * Tests if two polygons intersect.
     588     * Tests if two polygons intersect. It is assumed that the area is given in East North points.
    585589     * @param a1 Area of first polygon
    586590     * @param a2 Area of second polygon
    587591     * @return intersection kind
     
    588592     * @since 6841
    589593     */
    590594    public static PolygonIntersection polygonIntersection(Area a1, Area a2) {
    591         return polygonIntersection(a1, a2, 1.0);
     595        return polygonIntersection(a1, a2, INTERSECTION_EPS_EAST_NORTH);
    592596    }
    593597
    594598    /**
     
    603607        Area inter = new Area(a1);
    604608        inter.intersect(a2);
    605609
    606         Rectangle bounds = inter.getBounds();
    607 
    608         if (inter.isEmpty() || bounds.getHeight()*bounds.getWidth() <= eps) {
     610        if (inter.isEmpty() || !checkIntersection(inter, eps)) {
    609611            return PolygonIntersection.OUTSIDE;
    610612        } else if (a2.getBounds2D().contains(a1.getBounds2D()) && inter.equals(a1)) {
    611613            return PolygonIntersection.FIRST_INSIDE_SECOND;
     
    617619    }
    618620
    619621    /**
     622     * Check an intersection area which might describe multiple small polygons.
     623     * Return true if any of the polygons is bigger than the given threshold.
     624     * @param inter the intersection area
     625     * @param eps an area threshold, everything below is considered an empty intersection
     626     * @return true if any of the polygons is bigger than the given threshold.
     627     */
     628    private static boolean checkIntersection(Area inter, double eps) {
     629        PathIterator pit = inter.getPathIterator(null);
     630        double[] res = new double[6];
     631        Rectangle2D r = new Rectangle2D.Double();
     632        while (!pit.isDone()) {
     633            int type = pit.currentSegment(res);
     634            switch (type) {
     635            case PathIterator.SEG_MOVETO:
     636                r = new Rectangle2D.Double(res[0], res[1], 0, 0);
     637                break;
     638            case PathIterator.SEG_LINETO:
     639                r.add(res[0], res[1]);
     640                break;
     641            case PathIterator.SEG_CLOSE:
     642                if (r.getWidth() > eps || r.getHeight() > eps)
     643                    return true;
     644                break;
     645            default:
     646                break;
     647            }
     648            pit.next();
     649        }
     650        return false;
     651    }
     652
     653    /**
    620654     * Tests if point is inside a polygon. The polygon can be self-intersecting. In such case the contains function works in xor-like manner.
    621655     * @param polygonNodes list of nodes from polygon path.
    622656     * @param point the point to test
     
    777811     * Returns angle of a corner defined with 3 point coordinates.
    778812     *
    779813     * @param p1 first point
    780      * @param p2 Common endpoint
     814     * @param common Common end point
    781815     * @param p3 third point
    782816     * @return Angle in radians (-pi, pi]
    783817     */
    784     public static double getCornerAngle(EastNorth p1, EastNorth p2, EastNorth p3) {
     818    public static double getCornerAngle(EastNorth p1, EastNorth common, EastNorth p3) {
    785819
    786820        CheckParameterUtil.ensure(p1, "p1", EastNorth::isValid);
    787         CheckParameterUtil.ensure(p2, "p2", EastNorth::isValid);
     821        CheckParameterUtil.ensure(common, "p2", EastNorth::isValid);
    788822        CheckParameterUtil.ensure(p3, "p3", EastNorth::isValid);
    789823
    790         Double result = getSegmentAngle(p2, p1) - getSegmentAngle(p2, p3);
     824        double result = getSegmentAngle(common, p1) - getSegmentAngle(common, p3);
    791825        if (result <= -Math.PI) {
    792826            result += 2 * Math.PI;
    793827        }
  • test/unit/org/openstreetmap/josm/tools/GeometryTest.java

     
    22package org.openstreetmap.josm.tools;
    33
    44import static org.junit.Assert.assertEquals;
     5import static org.junit.Assert.assertNotEquals;
    56
    67import java.io.FileInputStream;
    78import java.util.Arrays;
     
    158159        assertEquals(new EastNorth(125, 300), Geometry.getCentroidEN(Arrays.asList(en1, en2)));
    159160        assertEquals(new EastNorth(150, 266d + 2d/3d), Geometry.getCentroidEN(Arrays.asList(en1, en2, en3)));
    160161    }
     162
     163
     164    /**
     165     * Test of {@link Geometry#polygonIntersection} method with two triangles.
     166     */
     167    @Test
     168    public void testPolygonIntersectionTriangles() {
     169        Node node1 = new Node(new LatLon(0.0, 1.0));
     170        Node node2 = new Node(new LatLon(0.0, 2.0));
     171        Node node3 = new Node(new LatLon(5.0, 1.5));
     172        List<Node> poly1 = Arrays.asList(node1, node2, node3, node1);
     173        Node node4 = new Node(new LatLon(10.0, 1.0));
     174        Node node5 = new Node(new LatLon(10.0, 2.0));
     175        Node node6 = new Node(new LatLon(5.000001, 1.5));
     176        List<Node> poly2 = Arrays.asList(node4, node5, node6, node4);
     177        // no intersection, not even touching
     178        assertEquals(Geometry.PolygonIntersection.OUTSIDE, Geometry.polygonIntersection(poly1, poly2));
     179        node5.setCoor(new LatLon(5.0, 1.5));
     180        // touching in a single point with two different nodes
     181        assertEquals(Geometry.PolygonIntersection.OUTSIDE, Geometry.polygonIntersection(poly1, poly2));
     182        node5.setCoor(new LatLon(4.99999999, 1.5));
     183        // now node5 lies inside way1, intersection is a very small area, in OSM precision nodes are equal
     184        assertEquals(node5.getCoor().getRoundedToOsmPrecision(), node3.getCoor().getRoundedToOsmPrecision());
     185        assertEquals(Geometry.PolygonIntersection.OUTSIDE, Geometry.polygonIntersection(poly1, poly2));
     186        node5.setCoor(new LatLon(4.9999999, 1.5));
     187        // intersection area is too big to ignore
     188        assertNotEquals(node5.getCoor().getRoundedToOsmPrecision(), node3.getCoor().getRoundedToOsmPrecision());
     189        assertEquals(Geometry.PolygonIntersection.CROSSING, Geometry.polygonIntersection(poly1, poly2));
     190    }
     191
     192    /**
     193     * Test of {@link Geometry#polygonIntersection} method with two V-shapes
     194     */
     195    @Test
     196    public void testPolygonIntersectionVShapes() {
     197        Node node1 = new Node(new LatLon(1.0, 1.0));
     198        Node node2 = new Node(new LatLon(2.0, 2.0));
     199        Node node3 = new Node(new LatLon(0.9, 1.0));
     200        Node node4 = new Node(new LatLon(2.0, 0.0));
     201        List<Node> poly1 = Arrays.asList(node1, node2, node3, node4, node1);
     202        Node node5 = new Node(new LatLon(3.0, 1.0));
     203        Node node6 = new Node(new LatLon(2.0, 2.0)); // like node2
     204        Node node7 = new Node(new LatLon(3.1, 1.0));
     205        Node node8 = new Node(new LatLon(2.0, 0.0)); // like node4
     206        List<Node> poly2 = Arrays.asList(node5, node6, node7, node8, node5);
     207
     208        // touching in two points but not overlapping
     209        assertEquals(Geometry.PolygonIntersection.OUTSIDE, Geometry.polygonIntersection(poly1, poly2));
     210
     211        // touching in one point, small overlap at the other
     212        node6.setCoor(new LatLon(1.9999999, 2.0));
     213        assertEquals(Geometry.PolygonIntersection.OUTSIDE, Geometry.polygonIntersection(poly1, poly2));
     214
     215        // touching in one point, small overlap at the other
     216        node6.setCoor(new LatLon(1.999999, 2.0));
     217        assertEquals(Geometry.PolygonIntersection.OUTSIDE, Geometry.polygonIntersection(poly1, poly2));
     218
     219        // touching in one point, too large overlap at the other
     220        node6.setCoor(new LatLon(1.99999, 2.0));
     221        assertEquals(Geometry.PolygonIntersection.CROSSING, Geometry.polygonIntersection(poly1, poly2));
     222
     223        // two small overlaps, but clearly visible because lines are crossing
     224        node6.setCoor(new LatLon(1.999999, 2.0));
     225        node8.setCoor(new LatLon(1.999999, 0.0));
     226        assertEquals(Geometry.PolygonIntersection.OUTSIDE, Geometry.polygonIntersection(poly1, poly2));
     227    }
    161228}