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
| <http://lod.bco-dmo.org/id/project/10> a odo:Project; | |
| a prov:Activity; | |
| . | |
| <http://lod.bco-dmo.org/id/cruise/1> a odo:Cruise; | |
| a prov:Activity; | |
| odo:ofPlatform <http://lod.bco-dmo.org/id/vessel/2>; | |
| odo:hasDeploymentDates <http://lod.bco-dmo.org/id/cruise/1#startEndDates>; | |
| prov:wasAssociatedWith <http://lod.bco-dmo.org/id/person/3>; | |
| prov:qualifiedAssociation http://lod.bco-dmo.org/id/person-role/4>; |
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 skos: <http://www.w3.org/2004/02/skos/core#> | |
| SELECT distinct ?entrykey ?entryterm | |
| WHERE { | |
| <http://vocab.nerc.ac.uk/collection/L05/current/> skos:member ?entrykey . | |
| ?entrykey skos:prefLabel ?entryterm | |
| } |
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
| select ?r as ?role ?s as ?subject ?d as ?dataset | |
| WHERE { | |
| GRAPH <http://www.bco-dmo.org/> { | |
| ?p dcterms:identifier ?id . | |
| FILTER (str(?id) = '50974') | |
| ?r odo:performedBy ?p | |
| FILTER NOT EXISTS { ?r odo:forOrganization ?o . } | |
| ?r dcterms:subject ?s . |
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
| #SPARQL Endpoint: http://data.geolink.org/sparql | |
| PREFIX gl: <http://schema.geolink.org/1.0/base/main#> | |
| SELECT DISTINCT ?person ?award ?award_title ?abstract ?start ?end ?sponsor_name (group_concat(distinct ?org_name;separator=":::") as ?sub_sponsor_names) ?match ?id_value ?id_scheme ?id_uri | |
| WHERE { | |
| { | |
| ?award a gl:Award . | |
| ?cruise gl:hasAward ?award . |
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 gl: <http://schema.geolink.org/1.0/base/main#> | |
| SELECT DISTINCT ?person ?role ?cruise ?match ?cruise_type ?cruise_title ?project ?id_value ?id_scheme ?id_uri | |
| #?abstract ?cruise_track | |
| WHERE { | |
| { | |
| ?cruise a gl:Cruise . | |
| ?person ?role ?cruise . | |
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 gl: <http://schema.geolink.org/1.0/base/main#> | |
| SELECT DISTINCT ?person ?role ?sample ?match ?id_value ?id_scheme ?id_uri ?material ?material_type | |
| WHERE { | |
| { | |
| ?sample a gl:PhysicalSample . | |
| ?person ?role ?sample . | |
| { |
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 gl: <http://schema.geolink.org/1.0/base/main#> | |
| SELECT DISTINCT ?cruise ?role ?person ?match ?id_value ?id_scheme ?id_uri ?person_full_name ?email_address | |
| #?abstract ?cruise_track | |
| WHERE { | |
| { | |
| ?cruise a gl:Cruise . | |
| ?person ?role ?cruise . | |
| ?person a gl:Person . |
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 gl: <http://schema.geolink.org/1.0/base/main#> | |
| SELECT DISTINCT ?target | |
| WHERE { | |
| ?cruise a gl:Cruise . | |
| ?x gl:hasCruise ?cruise . | |
| ?x a gl:PhysicalSample . | |
| { ?cruise owl:sameAs ?target . } | |
| UNION { ?target owl:sameAs ?cruise . } |
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 gl: <http://schema.geolink.org/1.0/base/main#> | |
| SELECT DISTINCT ?cruise ?sample ?id_value ?id_scheme ?id_uri ?registration_date ?publication_date ?last_updated_date ?elevation_desc ?feature_of_interest ?feature_of_interest_name ?feature_type ?feature_type_name ?geologic_age ?geologic_age_name ?stratigraphic_unit ?stratigraphic_unit_name ?originates_from ?collection_start_date ?collection_end_date ?person ?role ?person_name ?dataset ?sample_type ?sample_type_name ?wkt | |
| WHERE { | |
| { | |
| ?sample a gl:PhysicalSample . | |
| ?sample gl:hasCruise ?cruise . | |
| ?cruise a gl:Cruise . | |
| { |
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 gl: <http://schema.geolink.org/1.0/base/main#> | |
| SELECT DISTINCT ?g ?type ?p | |
| WHERE { | |
| GRAPH ?g { | |
| ?cruise a gl:Cruise . | |
| { ?resource ?p ?cruise . } | |
| UNION | |
| { ?cruise ?p ?resource . } | |
| ?resource a ?type . |
OlderNewer