=== Highway Nodes === This style highlights untagged and unconnected nodes in a way It's good for: Finding missing ''turning_circle''s or ''noexit''s[[BR]] [[Image(example1.png)]] Finding unneeded nodes in straight lines[[BR]] [[Image(example2.png)]] Finding unconnected ways[[BR]] [[Image(example3.png)]] Finding possible wrongly merged/joined streets[[BR]] [[Image(example4.png)]] === The style === {{{ #!style type="mapcss" meta { title: "Highway Nodes"; version: "1.[[revision]]_[[date]]"; description: "Highlights untagged and unconnected nodes in a way"; author: "naoliv"; link: "https://josm.openstreetmap.de/wiki/Styles/Highway_Nodes"; } /* highlight all the nodes */ way[highway] > node { symbol-size:10; symbol-shape: square; symbol-stroke-color: #00ffff; symbol-fill-color: blue; } /* dim the nodes that we don't want */ node:connection, node:tagged { symbol-size:4; symbol-fill-color: #808080; symbol-stroke-color: #808080; } }}}