You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Really nice work! This would be such a great way to distribute cruise information from operators, scheduling offices, data repositories. Really great! I had a couple questions and a suggestion:
Is it useful in the Ontology to define which fields are required or not? Note sure if this is in fact useful, as maybe what is required is dictated by other authorities? Or if you feel it's out of scope please ignore!
Maybe one useful restriction might be to say that a csr:CruiseSummaryReport requires at least 1 csr:Cruise:
#CruiseSummaryReport a rdfs:Class ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty #describesCruise ;
owl:allValuesFrom #Cruise
], [
a owl:Restriction ;
owl:onProperty #describesCruise ;
owl:minQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass #Cruise
] ;
While these restrictions don't necessarily validate data, I think they help query writers know when they should use OPTIONAL SPARQL pattern in a query and when they can safely assume not to need it.
What do you all think about adding a section for Competency Questions? I think they help new folks quickly understand the original intent of the authors, but we've also used them to verify that the model can answer the question (with a SPARQL query).
A couple here might be (total guess on my part!!)
Show me all the Cruise Summary Reports for Cruises on the Celtic Explorer.
SELECT ?report
WHERE {
?report a csr:CruiseSummaryReport .
?report csr:describesCruise [ csr:undertakenBy <http://vocab.nerc.ac.uk/collection/C17/current/45CE/> ] .
}
What ports has the Celtic Explorer been reported at since 2015?
These two questions here may be completely irrelevant to the intent of the CSR, and defining your own help readers understand what questions you are hoping to answer when you created the vocabulary.
Cardinality was something I had on my mind to add in as an extension to this. At the moment (and this partially answers your question #3 as well), all we have done is translate the data model for a SeaDataNet/POGO CSR to Linked Data and we'll pick data up bu backing it out of the XML. However, I think it would be important to have this in case people not connected with these initiatives wanted to start building CSRs in RDF.
I like the idea of CQs - but I guess I'm not yet sure what a list of CQs would be for instances of this vocabulary. I like the two you have there, and maybe some investigation on the search interfaces will yield some more.
Hi Adam, Rob, Tara and co.!
Really nice work! This would be such a great way to distribute cruise information from operators, scheduling offices, data repositories. Really great! I had a couple questions and a suggestion:
Maybe one useful restriction might be to say that a csr:CruiseSummaryReport requires at least 1 csr:Cruise:
While these restrictions don't necessarily validate data, I think they help query writers know when they should use
OPTIONAL
SPARQL pattern in a query and when they can safely assume not to need it.Noticed a small spelling error 'scintific' at https://github.com/iodepo/ontologies_vocabularies/tree/master/linked-cruise-summary-reports#cruise
What do you all think about adding a section for Competency Questions? I think they help new folks quickly understand the original intent of the authors, but we've also used them to verify that the model can answer the question (with a SPARQL query).
A couple here might be (total guess on my part!!)
Show me all the Cruise Summary Reports for Cruises on the Celtic Explorer.
What ports has the Celtic Explorer been reported at since 2015?
These two questions here may be completely irrelevant to the intent of the CSR, and defining your own help readers understand what questions you are hoping to answer when you created the vocabulary.
Here's an example of how we've started to use CQ's in a project predicting flood inundation. https://github.com/UFOKN/Knowledge-Graph/blob/master/COMPETENCY_QUESTIONS.md
References:
https://doi.org/10.1016/j.dib.2019.105098
ISBN: 9783319756813 (Section 9.8.1)
Awesome! Hope to see CSR data soon!
The text was updated successfully, but these errors were encountered: