Skip to content

Commit

Permalink
Exclude compounds that sublimate
Browse files Browse the repository at this point in the history
... and likely don't have a boiling point defined.
  • Loading branch information
egonw authored Aug 13, 2023
1 parent 06c37d9 commit 880b943
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ SELECT ?wikis ?compound ?compoundLabel ?formula WITH {
SELECT ?wikis ?compound WHERE {
?compound wdt:P31 wd:Q11173 ;
wikibase:sitelinks ?wikis . hint:Prior hint:rangeSafe true .
MINUS { ?compound wdt:P2113 [] } # compounds sublimates
FILTER(?wikis >= 40)
FILTER(NOT EXISTS {?compound wdt:P2102 []})
} ORDER BY DESC(?wikis)
Expand All @@ -10,4 +11,4 @@ SELECT ?wikis ?compound ?compoundLabel ?formula WITH {
INCLUDE %CHEMICALS
OPTIONAL { ?compound wdt:P274 ?formula }
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
} ORDER BY DESC(?wikis)
} ORDER BY DESC(?wikis)

0 comments on commit 880b943

Please sign in to comment.