Search notes:

Querying OpenStreetMap data with SPARQL

Missing data

Apparently, some data is missing in Sophox.
The folowing query, which should return the peak of the Matterhorn (i.e. node 26863664), does (currently?) return nothing:
select *
{
    ?matterhorn osmt:name    "Matterhorn" ;
                osmt:natural "peak"       .
}
Run it

osmm:type

osmm:type connects a node to an OpenStreetMap node type.
There are three such types: way (w), node (n) and relation (r):
select
   distinct ?type
{
   [] osmm:type ?type .
}
Run it

See also

SPARQL

Index