-
Notifications
You must be signed in to change notification settings - Fork 80
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
co-located wikidata property #2174
Comments
I added a few co-located relations by using the part of (P361). But I think there should be a distinct property since part of the series (P179) is a subproperty of part of (P361) and co-located has a different semantic meaning. Query for workshops that are co-located (part of) a conference # Workshops that are part of conferences
SELECT ?workshop ?workshopLabel ?conference ?conferenceLabel
WHERE
{
?workshop wdt:P31 wd:Q40444998;
wdt:P361 ?conference.
?conference wdt:P31 wd:Q2020153;
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } # Helps get the label in your language, if not, then en language
} |
I think a new "co-located with" property would be fine. Would it be most appropriate if it it asymmetric, so there is a link from the workshop to the larger conference? Do there exists examples where events are equally "large"? |
The
For equally "large" events there are at least two different types:
Thus, |
The property is there now - is it already used in the scholia queries? |
I do not think so, but we should. |
Is your feature request related to a problem? Please describe.
For Workhops such as Wikidata Workshop 2022 that are colocated with
a conference currently there is no dedicated property to show this "co-located" relation.
As a work-around "part-of" seems to have been used in some cases.
Describe the solution you'd like
Propose a "co-located" property for wikidata and use it.
Describe alternatives you've considered
Stick to the work-around and use and document it.
Additional context
This issues has come up as part of the effort to synchronize CEUR-WS with wikidata
The text was updated successfully, but these errors were encountered: