query-bb3e4ed1160cce1ef9a04647f65a96be
Free Software1. Return a list of all items for which there is an entry in the Free Software Foundation Resource Directory } } . "en" language:wikibase serviceParam:bd { label:wikibase SERVICE .?entry P2537:wdt ?software . Q341:wd P31:wdt ?software { WHERE ?softwareLabel ?software SELECT 2. Return list of all instances of free software that have been described with a MIME type: } } . "en" language:wikibase serviceParam:bd { label:wikibase SERVICE ?mime P1163:wdt ?software .Q341:wd P31:wdt ?software { WHERE ?mime ?softwareLabel ?software SELECT 3. Return a list of all items that are instances of a linux distro: } } ."en" language:wikibase serviceParam:bd { label:wikibase SERVICE .Q131669:wd P31:wdt ?software { WHERE ?softwareLabel ?software SELECT 4. Return a map with the birthplaces of a developers of free software
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX psv: <http://www.wikidata.org/prop/statement/value/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#defaultView:Map
SELECT ?software ?softwareLabel ?developerLabel ?birthplaceLabel ?coord ?lat ?lon
WHERE {
?software wdt:P31 wd:Q341 .
?software wdt:P178 ?developer .
?developer wdt:P19 ?birthplace
OPTIONAL {?birthplace wdt:P625 ?coord. }
OPTIONAL {
?birthplace p:P625 ?statement.
?statement psv:P625 ?node.
?node wikibase:geoLatitude ?lat.
?node wikibase:geoLongitude ?lon.
}
SERVICE wikibase:label {
bd:serviceParam wikibase:language "en" .
}
}