GlossaryEntry | |
---|---|
responsible | https://www.wikidata.org/ |
state | |
since | 2012/10/29 |
description | Wikidata is a collaboratively edited multilingual knowledge graph hosted by the Wikimedia Foundation.[2] It is a common source of open data that Wikimedia projects such as Wikipedia,[3][4] and anyone else, can use under the CC0 public domain license. Wikidata is a wiki powered by the software MediaWiki, and is also powered by the set of knowledge graph MediaWiki extensions known as Wikibase. |
references | |
lang | en |
master | Wikidata |
GlossaryEntry | |
---|---|
responsible | https://www.wikidata.org/ |
state | |
since | 2012/10/29 |
description | Wikidata is a collaboratively edited multilingual knowledge graph hosted by the Wikimedia Foundation.[2] It is a common source of open data that Wikimedia projects such as Wikipedia,[3][4] and anyone else, can use under the CC0 public domain license. Wikidata is a wiki powered by the software MediaWiki, and is also powered by the set of knowledge graph MediaWiki extensions known as Wikibase. |
references | |
lang | en |
master | Wikidata |
The file "mwstore://local-backend/local-public/diagrams/archive/20241121155103!Diagrams_bd821ff92712d3c0d84fdafc41869cb6.svg" already exists.
The file "mwstore://local-backend/local-public/diagrams/archive/20241121155103!Diagrams_7a09a885ceda0cdc6f1c2637a7fd15b2.svg" already exists.
The file "mwstore://local-backend/local-public/diagrams/archive/20241121155103!Diagrams_7a09a885ceda0cdc6f1c2637a7fd15b2.svg" already exists.
Template:SchemaProperty Template:SchemaProperty
Wikidata is an open knowledge base run by the Wikimedia Foundation. It contains information about all kinds of entities (people, places, subjects...) including scientific events. See https://www.wikidata.org/wiki/Wikidata:WikiProject_Events for information about events in Wikidata organized by the Wikidata community. Wikidata can be edited openly, including API access.
Wikidata can also be used as linking hub as it collects event identifiers from other platforms as well (for instance WikiCFP conference series ID). See Wikidata property to identify events (list via SPARQL) but this list is not complete.
# WF 2020-06-07
SELECT ?item ?itemLabel
WHERE
{
# scientific conference series (Q47258130)
?item wdt:P31 wd:Q47258130.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
93 as of 2020-06-07, 4250 as of 2022-08
# Conference Series
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
SELECT ?confSeries ?short_name ?confSeriesLabel ?DBLP_pid ?WikiCFP_pid ?GND_pid
WHERE
{
# scientific conference series (Q47258130)
?confSeries wdt:P31 wd:Q47258130.
OPTIONAL { ?confSeries wdt:P1813 ?short_name . }
# any item with a DBLP venue ID
?confSeries wdt:P8926 ?DBLP_pid.
# WikiCFP pid
optional {
?confSeries wdt:P5127 ?WikiCFP_pid.
}
# GND pid
optional {
?confSeries wdt:P227 ?GND_pid.
}
# label
?confSeries rdfs:label ?confSeriesLabel filter (lang(?confSeriesLabel) = "en").
# filter exotic pair entry
FILTER(?confSeries != wd:Q7395156)
}
ORDER BY (?short_name)
try it! 221 as of 2021-01, 4327 as of 2022-08
see https://en.wikipedia.org/wiki/Federated_Logic_Conference
see Wikidata/PIDs
see https://quickstatements.toolforge.org/#/
Conference Series with wikiCFPId
# find scholarly articles with "Proceedings" in the name
SELECT DISTINCT ?item ?itemLabel ?doi ?_PubMed_ID
WHERE
{
# https://www.wikidata.org/wiki/Q13442814 scholarly article
?item wdt:P31 wd:Q13442814 ;
rdfs:label ?itemLabel .
# https://www.wikidata.org/wiki/Property:P356
OPTIONAL { ?item wdt:P356 ?doi. }
# https://www.wikidata.org/wiki/Property:P698 PubMed ID
OPTIONAL { ?item wdt:P698 ?_PubMed_ID. }
FILTER(CONTAINS(LCASE(?itemLabel), "Proceedings"))
FILTER (LANG(?itemLabel)="en")
}
In order to avoid duplication of returned subjects a concatenation of the values is done with:
(GROUP_CONCAT(DISTINCT ?main_subjectLabel; separator='@@@') as ?main_subjects)
SELECT DISTINCT ?item ?dateModified ?itemLabel
(GROUP_CONCAT(DISTINCT ?main_subjectLabel; separator='@@@') as ?main_subjects)
(GROUP_CONCAT(DISTINCT ?language_usedLabel; separator='@@@') as ?languages)
(GROUP_CONCAT(DISTINCT ?short_nameLabel; separator='@@@') as ?short_names)
(GROUP_CONCAT(DISTINCT ?official_website; separator='@@@') as ?official_websites)
(GROUP_CONCAT(DISTINCT ?Twitter_username; separator='@@@') as ?Twitter_usernames)
(GROUP_CONCAT(DISTINCT ?WikiCFP_conference_series_ID; separator='@@@') as ?WikiCFP_conference_series_IDs)
(GROUP_CONCAT(DISTINCT ?GND_ID; separator='@@@') as ?GND_IDs)
(GROUP_CONCAT(DISTINCT ?Freebase_ID; separator='@@@') as ?Freebase_IDs)
(GROUP_CONCAT(DISTINCT ?event_interval_inmonths; separator='@@@') as ?event_intervalS_inmonths)
(GROUP_CONCAT(DISTINCT ?start_time; separator='@@@') as ?start_times)
WHERE {
?item wdt:P31 wd:Q47258130 ;
schema:dateModified ?dateModified .
OPTIONAL { ?item wdt:P921 ?main_subject . }
OPTIONAL { ?item wdt:P2936 ?language_used . }
OPTIONAL { ?item wdt:P1813 ?short_name . }
OPTIONAL { ?item wdt:P580 ?start_time . }
OPTIONAL { ?item wdt:P856 ?official_website . }
OPTIONAL { ?item wdt:P2002 ?Twitter_username . }
OPTIONAL { ?item wdt:P227 ?GND_ID . }
OPTIONAL { ?item wdt:P5127 ?WikiCFP_conference_series_IDvalue . }
OPTIONAL { ?item wdt:P5127 ?WikiCFP_conference_series_IDvalue .
BIND ( CONCAT("http://wikicfp.com/cfp/program?id=", STR(?WikiCFP_conference_series_IDvalue)) AS ?WikiCFP_conference_series_ID )
}
OPTIONAL { ?item wdt:P646 ?Freebase_IDvalue .
BIND ( CONCAT("https://freebase.toolforge.org", STR(?Freebase_IDvalue)) AS ?Freebase_ID )
}
OPTIONAL {
?item p:P2257 [
a wikibase:BestRank; # best ranked unit returned
psv:P2257 [
wikibase:quantityAmount ?event_interval;
wikibase:quantityUnit ?event_interval_unit
]
].
# if unitLabel is wd:Q577 (year) or wd:Q1092296 (annum): *
BIND( IF (?event_interval_unit in (wd:Q577, wd:Q1092296 ), ?event_interval * 12, ?event_interval) AS ?event_interval_inmonths ) .
}
SERVICE wikibase:label {
bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en".
?main_subject rdfs:label ?main_subjectLabel .
}
SERVICE wikibase:label {
bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en".
?language_used rdfs:label ?language_usedLabel .
}
SERVICE wikibase:label {
bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en".
?short_name rdfs:label ?short_nameLabel .
}
SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
GROUP BY ?item ?itemLabel ?dateModified
ORDER BY DESC(?dateModified)
required values for properties:
Note that if the following statement is placed outside the UNION the query takes far too long, hence keeping it within each UNION block
?item schema:dateModified ?dateModified;
wdt:P580 ?start_time;
wdt:P582 ?end_time .
518 results in less than 2 secs. Link to query
SELECT DISTINCT ?item ?dateModified ?itemLabel ?event_type ?countryLabel
(GROUP_CONCAT(DISTINCT ?main_subjectLabel; separator='@@@') as ?main_subjects)
(GROUP_CONCAT(DISTINCT ?language_usedLabel; separator='@@@') as ?languages)
(GROUP_CONCAT(DISTINCT ?short_nameLabel; separator='@@@') as ?short_names)
(GROUP_CONCAT(DISTINCT ?official_website; separator='@@@') as ?official_websites)
(GROUP_CONCAT(DISTINCT ?Twitter_username; separator='@@@') as ?Twitter_usernames)
(GROUP_CONCAT(DISTINCT ?WikiCFP_conference_series_ID; separator='@@@') as ?WikiCFP_conference_series_IDs)
(GROUP_CONCAT(DISTINCT ?GND_ID; separator='@@@') as ?GND_IDs)
(GROUP_CONCAT(DISTINCT ?Freebase_ID; separator='@@@') as ?Freebase_IDs)
(GROUP_CONCAT(DISTINCT ?start_time; separator='@@@') as ?start_times)
(GROUP_CONCAT(DISTINCT ?end_time; separator='@@@') as ?end_times)
WHERE {
{
?item wdt:P31 wd:Q2495862 .
?item schema:dateModified ?dateModified;
wdt:P580 ?start_time;
wdt:P582 ?end_time .
BIND ('congress' as ?event_type)
}
UNION
{
?item wdt:P31 wd:Q40444998 .
?item schema:dateModified ?dateModified;
wdt:P580 ?start_time;
wdt:P582 ?end_time .
BIND ('workshop' as ?event_type)
}
UNION
{
?item wdt:P31 wd:Q2020153 .
?item schema:dateModified ?dateModified;
wdt:P580 ?start_time;
wdt:P582 ?end_time .
BIND ('conference' as ?event_type)
}
UNION
{
?item wdt:P31 wd:Q504703 .
?item schema:dateModified ?dateModified;
wdt:P580 ?start_time;
wdt:P582 ?end_time .
BIND ('seminar' as ?event_type)
}
UNION
{
?item wdt:P31 wd:Q46855.
?item schema:dateModified ?dateModified;
wdt:P580 ?start_time;
wdt:P582 ?end_time .
BIND ('hackthon' as ?event_type )
}
OPTIONAL { ?item wdt:P921 ?main_subject . }
OPTIONAL { ?item wdt:P2936 ?language_used . }
OPTIONAL { ?item wdt:P1813 ?short_name . }
OPTIONAL {?item wdt:P17 ?country }
OPTIONAL { ?item wdt:P856 ?official_website . }
OPTIONAL { ?item wdt:P2002 ?Twitter_username . }
OPTIONAL { ?item wdt:P227 ?GND_ID . }
OPTIONAL { ?item wdt:P5127 ?WikiCFP_conference_series_IDvalue .
BIND ( CONCAT("http://wikicfp.com/cfp/program?id=", STR(?WikiCFP_conference_series_IDvalue)) AS ?WikiCFP_conference_series_ID )
}
OPTIONAL { ?item wdt:P646 ?Freebase_IDvalue .
BIND ( CONCAT("https://freebase.toolforge.org", STR(?Freebase_IDvalue)) AS ?Freebase_ID )
}
SERVICE wikibase:label {
bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en".
?main_subject rdfs:label ?main_subjectLabel .
}
SERVICE wikibase:label {
bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en".
?language_used rdfs:label ?language_usedLabel .
}
SERVICE wikibase:label {
bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en".
?short_name rdfs:label ?short_nameLabel .
}
SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
GROUP BY ?item ?itemLabel ?dateModified ?event_type ?countryLabel
ORDER BY DESC(?dateModified)
SELECT ?item
WHERE
{
# scientific conference series (Q47258130)
?item wdt:P31 wd:Q47258130.
}
E.g. ORES score avg: 2.57 on a scale from 1 to 5 for 4220 Scientific event series: Best 33
SELECT ?item
WHERE
{
# scientific conference (Q2020153)
?item wdt:P31 wd:Q2020153.
}
Avg. ORES Score 2.68 for 7184 Items (2021-05-14). 8430 Items (2022-09-14)