* All OSM objects with wikidata tag that references a Wikipedia disambiguation page. Get the name of the page in first available language ru, fr, de, en.
== OSM data structure ==
osmnode, osmway, osmrel - OSM object prefix, e.g. osmnode:1234
osmt - tag, e.g. osmt:name:en (only has tags with latin chars, -, _, :, digits
osmm - meta data about the object -- type, isClosed, version.
I try to preserve OSM data without much changes. Every tag's value is stored as a string, except for wikidata and wikipedia tags which are converted to a URL, the same format as stored in Wikidata.
osmway:29453885
osmt:name "Samina";
osmt:waterway "river";
osmt:wikidata wd:Q156065;
osmm:type "w"; #### could be "r", "w", and "n"
osmm:isClosed false; #### this meta property is only for OSM ways
osmm:version 24.
== Current limitations ==
* Only includes OSM objects with either "wikidata" or "wikipedia" tags
* The OSM data only contains tags with only Latin letters, digits and symbols - : _
* OSM geometry info is not imported, e.g. no center point or bounding box, except for osmm:isClosed (true/false) property for ways.
* Does not include OSM object inheritance data - e.g. cannot query for "find a node that is part of a way which is part of a relation that has wikidata tag that ..."
* Wikidata is updated every second, but OSM does not yet update at all, imported from a full db dump as of a few days ago.