Created
December 9, 2025 22:23
-
-
Save adamml/0138f03148cd829300a2ebf1d9d4b9d6 to your computer and use it in GitHub Desktop.
Ocean Data Information System - Essential Ocean Variable query
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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