query-55757c967e0b6ab6d32b1dd2da387ffa
Scientific Software that is Free Software1. Return all items that have an entry in the FSF resource directory and have also been categorized as scientific software by the FSF
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 pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?software ?softwareLabel
WHERE {
?software wdt:P31 wd:Q341 .
?software p:P2537 [ pq:P366 wd:Q336 ].
SERVICE wikibase:label {
bd:serviceParam wikibase:language "en" .
}
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?software"):::projected
a1((" "))
c4(["wd:Q336"]):::iri
c7(["bd:serviceParam"]):::iri
c9(["en"]):::literal
c2(["wd:Q341"]):::iri
v1 --"p:direct/P31"--> c2
a1 --"p:qualifier/P366"--> c4
v1 --"p:P2537"--> a1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end