-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Extraction of Workshop/Conference Series #37
Comments
Example workshops that need to be linked to their series: SELECT DISTINCT *{
?event p:P179 [ps:P179 wd:Q105698908;
pq:P1545 ?ordinal];
wdt:P580 ?startTime;
rdfs:label ?eventLabel.
FILTER(lang(?eventLabel)="en")
}
ORDER BY xsd:integer(?ordinal)
|
Be aware of disambiguation / deduplication e.g. https://www.wikidata.org/wiki/Q113674419 and https://www.wikidata.org/wiki/Q88860125 |
see Workshop on Ontology Design and Patterns for disambiguation issues |
There are two series in CEUR-WS that have their own pages:
|
Acceptance Criteria Use case scenarios Standard case that only covers 9th to 12th edition -no knowledge about prior editions and later editions have been published via a different outlet: Since it is an annual meeting we assume that it is part of a series and therefore there might be previous and next meetings. Action Expected Result
jq . volumes.json| grep -a2 CURAC | grep volume_number | sort -u
"volume_number": "Vol-1429",
"volume_number": "Vol-1475",
"volume_number": "Vol-1476",
"volume_number": "Vol-1477", Situation Action Expected Result |
Often a workshop or conference is part of a series.
Thus the series name needs to be extracted and the events of the series need to link to the series.
The text was updated successfully, but these errors were encountered: