Ticket #17528: intersectionissues_v6.patch

File intersectionissues_v6.patch, 20.2 KB (added by taylor.smock, 6 years ago)

Ignore proposed highways, when looking for almost overlapping ways ignore oneways that have the same name/ref, rename the group from Amost overlapping highways to Sharp angle

  • src/org/openstreetmap/josm/actions/ValidateAction.java

     
    116116        private boolean canceled;
    117117        private List<TestError> errors;
    118118
     119        private List<Class<? extends Test>> runTests;
     120
    119121        /**
    120122         * Constructs a new {@code ValidationTask}
    121123         * @param tests  the tests to run
     
    153155        @Override
    154156        protected void realRun() throws SAXException, IOException,
    155157        OsmTransferException {
     158            runTests = new ArrayList<>();
    156159            if (tests == null || tests.isEmpty())
    157160                return;
    158161            errors = new ArrayList<>(200);
    159162            getProgressMonitor().setTicksCount(tests.size() * validatedPrimitives.size());
    160             int testCounter = 0;
     163            runTests(tests, 0);
     164            tests = null;
     165            if (ValidatorPrefHelper.PREF_USE_IGNORE.get()) {
     166                getProgressMonitor().setCustomText("");
     167                getProgressMonitor().subTask(tr("Updating ignored errors ..."));
     168                for (TestError error : errors) {
     169                    if (canceled) return;
     170                    error.updateIgnored();
     171                }
     172            }
     173        }
     174
     175        protected int runTests(Collection<Test> tests, int testCounter) {
     176            ArrayList<Test> remaining = new ArrayList<>();
    161177            for (Test test : tests) {
    162178                if (canceled)
    163                     return;
     179                    return testCounter;
     180                if (test.getAfterClass() != null && !runTests.contains(test.getAfterClass())) {
     181                    remaining.add(test);
     182                    continue;
     183                }
    164184                testCounter++;
    165                 getProgressMonitor().setCustomText(tr("Test {0}/{1}: Starting {2}", testCounter, tests.size(), test.getName()));
     185                getProgressMonitor().setCustomText(tr("Test {0}/{1}: Starting {2}", testCounter, this.tests.size(), test.getName()));
    166186                test.setPartialSelection(formerValidatedPrimitives != null);
     187                test.setPreviousErrors(errors);
    167188                test.startTest(getProgressMonitor().createSubTaskMonitor(validatedPrimitives.size(), false));
    168189                test.visit(validatedPrimitives);
    169190                test.endTest();
    170191                errors.addAll(test.getErrors());
    171192                test.clear();
     193                runTests.add(test.getClass());
    172194            }
    173             tests = null;
    174             if (ValidatorPrefHelper.PREF_USE_IGNORE.get()) {
    175                 getProgressMonitor().setCustomText("");
    176                 getProgressMonitor().subTask(tr("Updating ignored errors ..."));
    177                 for (TestError error : errors) {
    178                     if (canceled) return;
    179                     error.updateIgnored();
    180                 }
     195            if (!remaining.isEmpty()) {
     196                testCounter = runTests(remaining, testCounter);
    181197            }
     198            return testCounter;
    182199        }
    183200    }
    184201}
  • src/org/openstreetmap/josm/data/validation/OsmValidator.java

     
    4949import org.openstreetmap.josm.data.validation.tests.DuplicatedWayNodes;
    5050import org.openstreetmap.josm.data.validation.tests.Highways;
    5151import org.openstreetmap.josm.data.validation.tests.InternetTags;
     52import org.openstreetmap.josm.data.validation.tests.IntersectionIssues;
    5253import org.openstreetmap.josm.data.validation.tests.Lanes;
    5354import org.openstreetmap.josm.data.validation.tests.LongSegment;
    5455import org.openstreetmap.josm.data.validation.tests.MapCSSTagChecker;
     
    148149        LongSegment.class, // 3500 .. 3599
    149150        PublicTransportRouteTest.class, // 3600 .. 3699
    150151        RightAngleBuildingTest.class, // 3700 .. 3799
     152        IntersectionIssues.class, // 3800 .. 3899
    151153    };
    152154
    153155    /**
  • src/org/openstreetmap/josm/data/validation/Test.java

     
    4646    /** Name of the test */
    4747    protected final String name;
    4848
     49    /** Test to run after */
     50    protected Class<? extends Test> afterTest;
     51
    4952    /** Description of the test */
    5053    protected final String description;
    5154
     
    6770    /** The list of errors */
    6871    protected List<TestError> errors = new ArrayList<>(30);
    6972
     73    /** The list of previously found errors */
     74    protected List<TestError> previousErrors;
     75
    7076    /** Whether the test is run on a partial selection data */
    7177    protected boolean partialSelection;
    7278
     
    8490     * @param description Description of the test
    8591     */
    8692    public Test(String name, String description) {
     93        this(name, description, null);
     94    }
     95
     96    /**
     97     * Constructor
     98     * @param name Name of the test
     99     * @param description Description of the test
     100     * @param afterTest Ensure the test is run after a test with this name
     101     *
     102     * @since xxx
     103     */
     104    public Test(String name, String description, Class<? extends Test> afterTest) {
    87105        this.name = name;
    88106        this.description = description;
     107        this.afterTest = afterTest;
    89108    }
    90109
    91110    /**
     
    178197    }
    179198
    180199    /**
     200     * Set the validation errors accumulated by other tests until this moment
     201     * For validation errors accumulated by this test, use {@code getErrors()}
     202     * @param errors The errors from previous tests
     203     */
     204    public void setPreviousErrors(List<TestError> errors) {
     205        previousErrors = errors;
     206    }
     207
     208    /**
    181209     * Notification of the end of the test. The tester may perform additional
    182210     * actions and destroy the used structures.
    183211     * <p>
     
    319347    }
    320348
    321349    /**
     350     * Get the class that the test must run after
     351     * @return A class that extends {@code Test}
     352     *
     353     * @since xxx
     354     */
     355    public Class<? extends Test> getAfterClass() {
     356        return afterTest;
     357    }
     358
     359    /**
    322360     * Determines if the test has been canceled.
    323361     * @return {@code true} if the test has been canceled, {@code false} otherwise
    324362     */
  • src/org/openstreetmap/josm/data/validation/tests/IntersectionIssues.java

     
     1// License: GPL. For details, see LICENSE file.
     2package org.openstreetmap.josm.data.validation.tests;
     3
     4import static org.openstreetmap.josm.tools.I18n.tr;
     5
     6import java.util.ArrayList;
     7import java.util.HashMap;
     8import java.util.List;
     9import java.util.Set;
     10
     11import org.openstreetmap.josm.data.coor.EastNorth;
     12import org.openstreetmap.josm.data.coor.LatLon;
     13import org.openstreetmap.josm.data.gpx.GpxDistance;
     14import org.openstreetmap.josm.data.gpx.WayPoint;
     15import org.openstreetmap.josm.data.osm.Node;
     16import org.openstreetmap.josm.data.osm.Way;
     17import org.openstreetmap.josm.data.osm.WaySegment;
     18import org.openstreetmap.josm.data.validation.Severity;
     19import org.openstreetmap.josm.data.validation.Test;
     20import org.openstreetmap.josm.data.validation.TestError;
     21import org.openstreetmap.josm.gui.progress.ProgressMonitor;
     22import org.openstreetmap.josm.tools.Geometry;
     23import org.openstreetmap.josm.tools.Logging;
     24
     25/**
     26 * Finds issues with highway intersections
     27 * @author Taylor Smock
     28 * @since xxx
     29 */
     30public class IntersectionIssues extends Test {
     31    private static final int INTERSECTIONISSUESCODE = 3800;
     32    /** The code for an intersection which briefly interrupts a road */
     33    public static final int SHORT_DISCONNECT = INTERSECTIONISSUESCODE + 0;
     34    /** The code for a node that is almost on a way */
     35    public static final int NEARBY_NODE = INTERSECTIONISSUESCODE + 1;
     36    /** The distance to consider for nearby nodes/short disconnects */
     37    public static final double MAX_DISTANCE = 5.0; // meters
     38    /** The distance to consider for nearby nodes with tags */
     39    public static final double MAX_DISTANCE_NODE_INFORMATION = MAX_DISTANCE / 5.0; // meters
     40    /** The maximum angle for almost overlapping ways */
     41    public static final double MAX_ANGLE = 15.0; // degrees
     42    /** The maximum length to consider for almost overlapping ways */
     43    public static final double MAX_LENGTH = 5.0; // meters
     44
     45    private HashMap<String, ArrayList<Way>> ways;
     46    ArrayList<Way> allWays;
     47
     48    /**
     49     * Construct a new {@code IntersectionIssues} object
     50     */
     51    public IntersectionIssues() {
     52        super(tr("Intersection Issues"), tr("Check for issues at intersections"), OverlappingWays.class);
     53    }
     54
     55    @Override
     56    public void startTest(ProgressMonitor monitor) {
     57        super.startTest(monitor);
     58        ways = new HashMap<>();
     59        allWays = new ArrayList<>();
     60    }
     61
     62    @Override
     63    public void endTest() {
     64        Way pWay = null;
     65        try {
     66            for (String key : ways.keySet()) {
     67                ArrayList<Way> comparison = ways.get(key);
     68                pWay = comparison.get(0);
     69                checkNearbyEnds(comparison);
     70            }
     71            for (Way way : allWays) {
     72                pWay = way;
     73                for (Way way2 : allWays) {
     74                    if (way2.equals(way)) continue;
     75                    pWay = way2;
     76                    if (way.getBBox().intersects(way2.getBBox())) {
     77                        checkNearbyNodes(way, way2);
     78                    }
     79                }
     80            }
     81        } catch (Exception e) {
     82            if (pWay != null) {
     83                Logging.debug("Way https://osm.org/way/{0} caused an error", pWay.getOsmId());
     84            }
     85            Logging.warn(e);
     86        }
     87        ways = null;
     88        allWays = null;
     89        super.endTest();
     90    }
     91
     92    @Override
     93    public void visit(Way way) {
     94        if (!way.isUsable()) return;
     95        if (way.hasKey("highway") && !way.get("highway").contains("_link") &&
     96                !way.get("highway").contains("proposed")) {
     97            String[] identityTags = new String[] {"name", "ref"};
     98            for (String tag : identityTags) {
     99                if (way.hasKey(tag)) {
     100                    ArrayList<Way> similar = ways.get(way.get(tag)) == null ? new ArrayList<>() : ways.get(way.get(tag));
     101                    if (!similar.contains(way)) similar.add(way);
     102                    ways.put(way.get(tag), similar);
     103                }
     104            }
     105            if (!allWays.contains(way)) allWays.add(way);
     106        }
     107    }
     108
     109    /**
     110     * Check for ends that are nearby but not directly connected
     111     * @param comparison Ways to look at
     112     */
     113    public void checkNearbyEnds(ArrayList<Way> comparison) {
     114        ArrayList<Way> errored = new ArrayList<>();
     115        for (Way one : comparison) {
     116            LatLon oneLast = one.lastNode().getCoor();
     117            LatLon oneFirst = one.firstNode().getCoor();
     118            for (Way two : comparison) {
     119                if (one.equals(two)) continue;
     120                if (one.isFirstLastNode(two.firstNode()) || one.isFirstLastNode(two.lastNode()) ||
     121                        (errored.contains(one) && errored.contains(two))) continue;
     122                LatLon twoLast = two.lastNode().getCoor();
     123                LatLon twoFirst = two.firstNode().getCoor();
     124                int nearCase = getNearCase(oneFirst, oneLast, twoFirst, twoLast);
     125                if (nearCase != 0) {
     126                    for (Way way : two.lastNode().getParentWays()) {
     127                        if (way.equals(two)) continue;
     128                        if (one.hasKey("name") && way.hasKey("name") && way.get("name").equals(one.get("name")) ||
     129                                one.hasKey("ref") && way.hasKey("ref") && way.get("ref").equals(one.get("ref"))) {
     130                            return;
     131                        }
     132                    }
     133                    for (Way way : two.firstNode().getParentWays()) {
     134                        if (way.equals(two)) continue;
     135                        if (one.hasKey("name") && way.hasKey("name") && way.get("name").equals(one.get("name")) ||
     136                                one.hasKey("ref") && way.hasKey("ref") && way.get("ref").equals(one.get("ref"))) {
     137                            return;
     138                        }
     139                    }
     140                }
     141                if (nearCase > 0) {
     142                    List<Way> nearby = new ArrayList<>();
     143                    nearby.add(one);
     144                    nearby.add(two);
     145                    List<WaySegment> segments = new ArrayList<>();
     146                    if ((nearCase & 1) != 0) {
     147                        segments.add(new WaySegment(two, two.getNodesCount() - 2));
     148                        segments.add(new WaySegment(one, one.getNodesCount() - 2));
     149                    }
     150                    if ((nearCase & 2) != 0) {
     151                        segments.add(new WaySegment(two, two.getNodesCount() - 2));
     152                        segments.add(new WaySegment(one, 0));
     153                    }
     154                    if ((nearCase & 4) != 0) {
     155                        segments.add(new WaySegment(two, 0));
     156                        segments.add(new WaySegment(one, one.getNodesCount() - 2));
     157                    }
     158                    if ((nearCase & 8) != 0) {
     159                        segments.add(new WaySegment(two, 0));
     160                        segments.add(new WaySegment(one, 0));
     161                    }
     162                    errored.addAll(nearby);
     163                    allWays.removeAll(errored);
     164                    TestError.Builder testError = TestError.builder(this, Severity.WARNING, SHORT_DISCONNECT)
     165                            .primitives(nearby)
     166                            .highlightWaySegments(segments)
     167                            .message(tr("Disconnected road"));
     168                    errors.add(testError.build());
     169                }
     170            }
     171        }
     172    }
     173
     174    /**
     175     * Get nearby cases
     176     * @param oneFirst The {@code LatLon} of the the first node of the first way
     177     * @param oneLast The {@code LatLon} of the the last node of the first way
     178     * @param twoFirst The {@code LatLon} of the the first node of the second way
     179     * @param twoLast The {@code LatLon} of the the last node of the second way
     180     * @return A bitwise int (8421 -> twoFirst/oneFirst, twoFirst/oneLast, twoLast/oneFirst, twoLast/oneLast)
     181     *
     182     */
     183    private int getNearCase(LatLon oneFirst, LatLon oneLast, LatLon twoFirst, LatLon twoLast) {
     184        int returnInt = 0;
     185        if (twoLast.greatCircleDistance(oneLast) <= MAX_DISTANCE) {
     186            returnInt = returnInt | 1;
     187        }
     188        if (twoLast.greatCircleDistance(oneFirst) <= MAX_DISTANCE) {
     189            returnInt = returnInt | 2;
     190        }
     191        if (twoFirst.greatCircleDistance(oneLast) <= MAX_DISTANCE) {
     192            returnInt = returnInt | 4;
     193        }
     194        if (twoFirst.greatCircleDistance(oneFirst) <= MAX_DISTANCE) {
     195            returnInt = returnInt | 8;
     196        }
     197        return returnInt;
     198    }
     199
     200    /**
     201     * Check nearby nodes to an intersection of two ways
     202     * @param way1 A way to check an almost intersection with
     203     * @param way2 A way to check an almost intersection with
     204     */
     205    public void checkNearbyNodes(Way way1, Way way2) {
     206        Node intersectingNode = getIntersectingNode(way1, way2);
     207        if (intersectingNode == null ||
     208                (way1.isOneway() != 0 && way2.isOneway() != 0 &&
     209                (way1.hasKey("name") && way1.get("name").equals(way2.get("name")) ||
     210                 way1.hasKey("ref") && way1.get("ref").equals(way2.get("ref"))))) return;
     211        checkNearbyNodes(way1, way2, intersectingNode);
     212        checkNearbyNodes(way2, way1, intersectingNode);
     213    }
     214
     215    private void checkNearbyNodes(Way way1, Way way2, Node nearby) {
     216        for (Node node : way1.getNeighbours(nearby)) {
     217            if (node.equals(nearby) || way2.containsNode(node)) continue;
     218            WayPoint waypoint = new WayPoint(node.getCoor());
     219            double distance = GpxDistance.getDistance(way2, waypoint);
     220            double angle = getSmallestAngle(way2, nearby, node);
     221            if (((distance < MAX_DISTANCE && !node.isTagged())
     222                    || (distance < MAX_DISTANCE_NODE_INFORMATION && node.isTagged()))
     223                    && angle < MAX_ANGLE) {
     224                List<Way> primitiveIssues = new ArrayList<>();
     225                primitiveIssues.add(way1);
     226                primitiveIssues.add(way2);
     227                List<TestError> tErrors = new ArrayList<>();
     228                tErrors.addAll(previousErrors);
     229                tErrors.addAll(getErrors());
     230                for (TestError error : tErrors) {
     231                    int code = error.getCode();
     232                    if ((code == SHORT_DISCONNECT || code == NEARBY_NODE
     233                            || code == OverlappingWays.OVERLAPPING_HIGHWAY
     234                            || code == OverlappingWays.DUPLICATE_WAY_SEGMENT
     235                            || code == OverlappingWays.OVERLAPPING_HIGHWAY_AREA
     236                            || code == OverlappingWays.OVERLAPPING_WAY
     237                            || code == OverlappingWays.OVERLAPPING_WAY_AREA
     238                            || code == OverlappingWays.OVERLAPPING_RAILWAY
     239                            || code == OverlappingWays.OVERLAPPING_RAILWAY_AREA)
     240                            && primitiveIssues.containsAll(error.getPrimitives())) {
     241                        return;
     242                    }
     243                }
     244                List<WaySegment> waysegments = new ArrayList<>();
     245                int index = way1.getNodes().indexOf(nearby);
     246                if (index >= way1.getNodesCount() - 1) index--;
     247                waysegments.add(new WaySegment(way1, index));
     248                if (index > 0) waysegments.add(new WaySegment(way1, index - 1));
     249                index = way2.getNodes().indexOf(nearby);
     250                if (index >= way2.getNodesCount() - 1) index--;
     251                waysegments.add(new WaySegment(way2, index));
     252                if (index > 0) waysegments.add(new WaySegment(way2, index - 1));
     253
     254                TestError.Builder testError = TestError.builder(this, Severity.WARNING, NEARBY_NODE)
     255                        .primitives(primitiveIssues)
     256                        .highlightWaySegments(waysegments)
     257                        .message(tr("Sharp angle"));
     258                errors.add(testError.build());
     259            }
     260        }
     261    }
     262
     263    /**
     264     * Get the intersecting node of two ways
     265     * @param way1 A way that (hopefully) intersects with way2
     266     * @param way2 A way to find an intersection with
     267     * @return {@code Node} if there is an intersecting node, {@code null} otherwise
     268     */
     269    public Node getIntersectingNode(Way way1, Way way2) {
     270        for (Node node : way1.getNodes()) {
     271            if (way2.containsNode(node)) {
     272                return node;
     273            }
     274        }
     275        return null;
     276    }
     277
     278    /**
     279     * Get the corner angle between nodes
     280     * @param way The way with additional nodes
     281     * @param intersection The node to get angles around
     282     * @param comparison The node to get angles from
     283     * @return The angle for comparison->intersection->(additional node) (normalized degrees)
     284     */
     285    public double getSmallestAngle(Way way, Node intersection, Node comparison) {
     286        Set<Node> neighbours = way.getNeighbours(intersection);
     287        double angle = Double.MAX_VALUE;
     288        EastNorth eastNorthIntersection = intersection.getEastNorth();
     289        EastNorth eastNorthComparison = comparison.getEastNorth();
     290        for (Node node : neighbours) {
     291            EastNorth eastNorthNode = node.getEastNorth();
     292            double tAngle = Geometry.getCornerAngle(eastNorthComparison, eastNorthIntersection, eastNorthNode);
     293            if (Math.abs(tAngle) < angle) angle = Math.abs(tAngle);
     294        }
     295        return Geometry.getNormalizedAngleInDegrees(angle);
     296    }
     297}