I was grepping for cases where Turnpike Rd had been shortened to TurRd. (See also:
MT SR210)
Which is fine where it's part of the name, not the road type. I just wanted to see.There were of course tons of false positives, for Turner Rd etc.
To get a quick-n-easy map of each one, I stripped the WPT lines down to the OSM URLs only, and then tossed them at firefox, opening 60 tabs at once:
for URL in `grep TurRd */*/*.wpt | sed 's/.\+\(http:.\+[0-9]\)/\1\&zoom=16/' | sort | uniq`; do firefox $URL; done