User:Jbrobertson

From Wikidata
Jump to navigation Jump to search

Snippets[edit]

Overpass API[edit]

The following snippet yields the OpenStreetMap nodes and ways (i.e. entities) that have links to Wikidata. Paste it into Overpass Turbo or execute it directly.

/* Ways and nodes with a Wikidata attribute */

(
  way[wikidata]({{bbox}});
  node[wikidata]({{bbox}});
);
(._;>;);

out;