-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update SQL queries, paths and add new SPARQL
Updated SQL/wis2.sql to include additional aggregate functions and improved data extraction from 'active' directories in SQL/README.md. Added a new SPARQL query file, `distributions.rq`, under the OBIS directory. Also, expanded the documentation in SPARQL/OBIS/README.md to describe OBIS API leveraging and added relevant references.
- Loading branch information
Showing
4 changed files
with
45 additions
and
7 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> | ||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> | ||
PREFIX schema: <https://schema.org/> | ||
|
||
SELECT ?sid ?name ?url | ||
WHERE { | ||
?sid schema:distribution ?dist . | ||
?dist schema:contentUrl ?url . | ||
?sid schema:variableMeasured ?prop . | ||
?prop schema:name ?name . | ||
FILTER regex(str(?name), "depth", "i") | ||
} |
This file contains 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
This file contains 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