This query returns all of the vehicle roadways in a certain bounding box (bbox):
"""
nwr["highway"="(motorway|trunk|primary|secondary|tertiary|(motorway|trunk|primary|secondary)_link)"]({{bbox}});out geom;
"""
Each Way is a collection of nodes. I would like to aggregate the total count of each Node across all Ways and Relations. I would presume that any Node with more than 1 count is an intersection between two distinct vehicle roads. What is the Overpass QL query for this?
Thanks!