Skip to content

Instantly share code, notes, and snippets.

@adamml
Created December 9, 2025 22:23
Show Gist options
  • Select an option

  • Save adamml/0138f03148cd829300a2ebf1d9d4b9d6 to your computer and use it in GitHub Desktop.

Select an option

Save adamml/0138f03148cd829300a2ebf1d9d4b9d6 to your computer and use it in GitHub Desktop.
Ocean Data Information System - Essential Ocean Variable query
prefix sdo: <https://schema.org/>
SELECT DISTINCT ?name ?keywords ?contentUrl WHERE {
?uri ?a sdo:Dataset.
?uri sdo:name ?name.
?uri sdo:distribution ?uri2.
?uri2 sdo:contentUrl ?contentUrl.
?uri sdo:keywords ?keywords
FILTER REGEX(lcase(str(?keywords)), "temperature")
} LIMIT 50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment