From 5c058388027d4f1657592b00a5c19c91e2ba8e8b Mon Sep 17 00:00:00 2001 From: Gabe Reichenberger Date: Mon, 9 Aug 2021 17:28:21 -0700 Subject: [PATCH] updating documentation to refelect this check more accurately. (#595) --- docs/available_checks.md | 2 +- docs/checks/unknownHighwayTagCheck.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/available_checks.md b/docs/available_checks.md index 8a9b9aa3a..6188b79d9 100644 --- a/docs/available_checks.md +++ b/docs/available_checks.md @@ -101,7 +101,7 @@ This document is a list of tables with a description and link to documentation f | [StreetNameIntegersOnlyCheck](checks/streetNameIntegersOnlyCheck.md) | The purpose of this check is to identify streets whose names contain integers only. | | [TollValidationCheck](checks/tollValidationCheck.md) | The purpose of this check is to identify ways that need to have their toll tags investigated/added/removed. | [TunnelBridgeHeightLimitCheck](checks/tunnelBridgeHeightLimitCheck.md) | The purpose of this check is to identify roads with limited vertical clearance which do not have a maxheight tag. | -| [UnknownHighwayTagCheck](checks/unknownHighwayTagCheck.md) | This check attempts to flag all highway tags that are unknown to the [osm wiki page](https://wiki.openstreetmap.org/wiki/Key:highway). | +| [UnknownHighwayTagCheck](checks/unknownHighwayTagCheck.md) | This check attempts to flag all highway tags that are unknown to the [osm wiki page](https://wiki.openstreetmap.org/wiki/Key:highway) and flags features that have highway tags that are exclusive to other feature types (a way that has a node exclusive highway tag or a node that has a way exclusive highway tag). | | [UnusualLayerTagsCheck](checks/unusualLayerTagsCheck.md) | The purpose of this check is to identify layer tag values when accompanied by invalid tunnel and bridge tags. | | [ConditionalRestrictionCheck](checks/conditionalRestrictionCheck.md) | The purpose of this check is to identify elements that have a :conditional tag that does not respect the established format. | | [SourceMaxspeedCheck](checks/sourceMaxspeedCheck.md) | The purpose of this check is to identify elements that have a source:maxspeed tag that does not follow the tagging rules. | diff --git a/docs/checks/unknownHighwayTagCheck.md b/docs/checks/unknownHighwayTagCheck.md index 98d7a03b1..dda503ea3 100644 --- a/docs/checks/unknownHighwayTagCheck.md +++ b/docs/checks/unknownHighwayTagCheck.md @@ -1,12 +1,12 @@ # UnknownHighwayTagCheck #### Description -This check attempts to flag all highway tags that are unknown to the [osm wiki page](https://wiki.openstreetmap.org/wiki/Key:highway). +This check attempts to flag all highway tags that are unknown to the [osm wiki page](https://wiki.openstreetmap.org/wiki/Key:highway) and flags features that have highway tags that are exclusive to other feature types (a way that has a node exclusive highway tag or a node that has a way exclusive highway tag) #### Live Examples Highway tag does not exist on the OSM Wiki page. -1. [Node:313559095](https://www.openstreetmap.org/node/313559095) has a highway tag that is unknown (“highway=priority”) +1. [Node:313559095](https://www.openstreetmap.org/node/313559095) has a highway tag that is unknown (“highway=priority”). #### Code Review This check evaluates [Nodes](https://github.com/osmlab/atlas/blob/dev/src/main/java/org/openstreetmap/atlas/geography/atlas/items/Node.java) and