Wikidata


Wolfgang Fahl

Platform

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


Template:Platform

Freitext

Confluence

Graph

Platform[edit]

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


Template:Platform

Freitext[edit]

Confluence

Graph[edit]

The file "mwstore://local-backend/local-public/diagrams/archive/20241121155103!Diagrams_bd821ff92712d3c0d84fdafc41869cb6.svg" already exists.

Example[edit]

The file "mwstore://local-backend/local-public/diagrams/archive/20241121155103!Diagrams_7a09a885ceda0cdc6f1c2637a7fd15b2.svg" already exists.

Example[edit]

The file "mwstore://local-backend/local-public/diagrams/archive/20241121155103!Diagrams_7a09a885ceda0cdc6f1c2637a7fd15b2.svg" already exists.

CiteSchema[edit]

Template:CiteSchema

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.

Queries[edit]

Queries[edit]

Conference Series[edit]

# 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". }
}

try it!

93 as of 2020-06-07, 4250 as of 2022-08

Conference Series with dblp PIDs[edit]

# 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

Notability[edit]

  • https://www.wikidata.org/wiki/Wikidata:Notability
    • It refers to an instance of a clearly identifiable conceptual or material entity. The entity must be notable, in the sense that it can be described using serious and publicly available references.
    • It fulfills a structural need, for example: it is needed to make statements made in other items more useful.

Wikipedia Notability[edit]

Wikidata and Persistent Identifiers[edit]

see Wikidata/PIDs

Falcon2[edit]

1

WikiData Query Service[edit]

Examples[edit]

Conference Series with wikiCPFId[edit]

Conference Series with wikiCFPId

scholarly articles with DOI and PubMed Id[edit]

# 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")
}

800px


Conference Series: with optional properties and more than 1 value per property[edit]

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)


Events: congress, workshop, conference, seminar, hackthon[edit]

required values for properties:

  • ?dateModified
  • ?start_time
  • ?end_time

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)

Quality[edit]

Conference Series[edit]

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

# Item label Item ID Weighted ORES Score
1 International Joint Conference on Artificial Intelligence Q863401 3,74
2 ACM Multimedia Q288546 3,73
3 The Web Conference Q3570023 3,59
4 Solvay Conference Q847588 3,17
5 International Conference on Machine Learning Q17087718 3,04
6 Computer Supported Cooperative Work Q21682678 3,04
7 International Symposium on Open Collaboration Q7999831 3,01
8 Conference on Neural Information Processing Systems Q1961016 3
9 PIDapalooza Q47486848 2,98
10 Eurocrypt Q5411752 2,98
11 International Conference on Computer Vision Q1653169 2,98
12 Symposium on Principles of Database Systems Q7661890 2,98
13 Symposium on Computational Geometry Q7661882 2,97
14 Language and Automata Theory and Applications Q98073704 2,97
15 Symposium on Theoretical Aspects of Computer Science Q7661892 2,97
16 Symposium on Logic in Computer Science Q5970489 2,97
17 International Conference on Computer Graphics and Interactive Techniques Q679325 2,97
18 Digital Humanities Q5275882 2,96
19 Foundations of Software Science and Computation Structures Q101195130 2,96
20 International Symposium on Symbolic and Algebraic Computation Q17087987 2,96
21 Symposium on Principles of Programming Languages Q7661891 2,96
22 Symposium on Theory of Computing Q7661893 2,96
23 Selected Areas in Cryptography Q3478074 2,96
24 Computer Aided Verification Q5157410 2,96
25 International Colloquium on Automata, Languages and Programming Q6049376 2,96
26 Mensch & Computer Q16218568 2,96
27 International Conference on Functional Programming Q1666458 2,95
28 International Cryptology Conference Q2851794 2,95
29 Workshop on Logic, Language, Information and Computation Q8035149 2,94
30 Computational Complexity Conference Q30118330 2,94
31 International Symposium on Mathematical Foundations of Computer Science Q28937052 2,94
32 Conference on Computer Vision and Pattern Recognition Q2992422 2,94
33 International Conference on Management of Data Q78479250 2,94
34 Solvay Conference for physics Q63429778 2,92
35 European Conference on Artificial Intelligence Q1376472 2,92
36 Symposium on Discrete Algorithms Q19605775 2,92
37 Semantic Web in Libraries Conference Q29129469 2,92
38 International Conference on Learning Representations Q30108190 2,91
39 Sächsischer Citizen Science-Tag Q106517883 2,91
40 ACM/IEEE Supercomputing Conference Q4392761 2,9
41 Lunar and Planetary Science Conference Q1159867 2,9
42 MobileHCI Q841716 2,89
43 ACM Conference on Economics and Computation Q105693370 2,89
44 International Conference on Artificial Intelligence and Statistics Q47449932 2,88
45 Applied Cryptography and Network Security Q4781524 2,88
46 Smart Card Research and Advanced Application Conference Q105693176 2,88
47 ACM SIGMOBILE International Conference on Mobile Systems, Applications, and Services Q105623476 2,88
48 Conference of the International Speech Communication Association Q105692771 2,88
49 IEEE International Conference on Data Engineering Q105692818 2,88
50 IEEE International Conference on Engineering of Complex Computer Systems Q105692825 2,88
51 IEEE International Conference on Semantic Computing Q105692841 2,88
52 IEEE Real-Time Systems Symposium Q105692966 2,88
53 International Conference on Supercomputing Q105693135 2,88
54 ACM International Conference on Bioinformatics, Computational Biology and Biomedicine Q105694965 2,87
55 ACM SIGSOFT Conference on the Foundations of Software Engineering Q105623477 2,87
56 International Conference on Extending Database Technology Q105703713 2,87
57 International Conference on Autonomous Agents and Multiagent Systems Q6049588 2,87
58 SIAM International Conference on Data Mining Q105623487 2,87
59 USENIX Symposium on Operating Systems Design and Implementation Q105623489 2,87
60 IEEE International Conference on Services Computing Q105692843 2,87
61 International Conference on Graph Transformation Q105693417 2,87
62 International Conference on Advanced Information Systems Engineering Q105693402 2,87
63 ACM International Workshop on Web Information and Data Management Q105693684 2,86
64 Eurographics Symposium on Parallel Graphics and Visualization Q105623481 2,86
65 IEEE Computer Security Foundations Symposium Q105693552 2,86
66 IEEE International Conference on Formal Engineering Methods Q105692827 2,86
67 IEEE International Conference on Network Protocols Q105692837 2,86
68 IEEE International Enterprise Distributed Object Computing Conference Q105693338 2,86
69 IEEE Real Time Technology and Applications Symposium Q105693554 2,86
70 IFIP International Conference on Distributed Applications and Interoperable Systems Q105623486 2,86
71 International Conference on Distributed Computing in Sensor Systems Q105693414 2,86
72 USENIX Workshop on Hot Topics in Operating Systems Q105623490 2,86
73 International Society for Music Information Retrieval Conference Q105694422 2,85
74 Conference on Artificial Intelligence in Medicine in Europe Q105692773 2,84
75 International Conference on Pattern Recognition Q105693124 2,84
76 Asian Symposium on Programming Languages and Systems Q105692768 2,83
77 International Conference on Integrated Formal Methods Q105693432 2,83
78 Symposium on Foundations of Computer Science Q7661883 2,82
79 Digital Humanities Day Leipzig Q102854363 2,82
80 International Conference on Principles and Practice of Constraint Programming Q105695976 2,82
81 ACM SIGMM Conference on Multimedia Systems Q105623475 2,82
82 Annual International ACM SIGIR Conference on Research and Development in Information Retrieval Q105694973 2,82
83 Conference on Integer Programming and Combinatorial Optimization Q105693379 2,82
84 Conference on Multimedia Modeling Q105692776 2,82
85 Foundations of Genetic Algorithms Q105692802 2,82
86 IEEE International Conference on Embedded and Real-Time Computing Systems and Applications Q105693334 2,82
87 IEEE International Conference on Tools with Artificial Intelligence Q105692947 2,82
88 IEEE International Symposium on a World of Wireless, Mobile and Multimedia Networks Q105693342 2,82
89 IEEE International Workshop on Multimedia Signal Processing Q105693343 2,82
90 IEEE-RAS International Conference on Humanoid Robots Q105692973 2,82
91 International Conference on Computer Vision Theory and Applications Q105693019 2,82
92 International Conference on Principles of Distributed Systems Q105693127 2,82
93 International Workshop on Data Warehousing and OLAP Q105693462 2,82
94 International Workshop on Network and Operating System Support for Digital Audio and Video Q105694999 2,82
95 XP/Agile Universe Q47484880 2,82
96 Joint Computer Conference Q6269156 2,82
97 Decision and Game Theory for Security Q105692780 2,81
98 Information Security Conference Q105692975 2,81
99 International Conference on Database and Expert Systems Applications Q105694635 2,81

Conferences[edit]

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)

🖨 🚪