Difference between revisions of "Dblpconf"
Jump to navigation
Jump to search
(→Demo) |
|||
Line 14: | Line 14: | ||
= Demo = | = Demo = | ||
There is a demo at https://confident.dbis.rwth-aachen.de/dblpconf/ | There is a demo at https://confident.dbis.rwth-aachen.de/dblpconf/ | ||
+ | = Wikidata = | ||
+ | [https://query.wikidata.org/#%23%20Conference%20Series%20wikidata%20query%0A%23%20see%20https%3A%2F%2Fconfident.dbis.rwth-aachen.de%2Fdblpconf%2Fwikidata%0A%23%20WF%202021-01-30%0APREFIX%20wd%3A%20%3Chttp%3A%2F%2Fwww.wikidata.org%2Fentity%2F%3E%0APREFIX%20wdt%3A%20%3Chttp%3A%2F%2Fwww.wikidata.org%2Fprop%2Fdirect%2F%3E%0APREFIX%20rdfs%3A%20%3Chttp%3A%2F%2Fwww.w3.org%2F2000%2F01%2Frdf-schema%23%3E%0ASELECT%20%3FconfSeries%20%3Fdisplay_name%20%3FconfSeriesLabel%20%3Fofficial_website%20%3FDBLP_pid%20%3FWikiCFP_pid%20%3FGND_pid%0AWHERE%20%0A%7B%0A%20%20%23%20%20scientific%20conference%20series%20%28Q47258130%29%20%0A%20%20%3FconfSeries%20wdt%3AP31%20wd%3AQ47258130.%0A%20%20OPTIONAL%20%7B%20%3FconfSeries%20wdt%3AP1813%20%3Fshort_name%20.%20%7D%0A%20%20BIND%20%28COALESCE%28%3Fshort_name%2C%3FconfSeriesLabel%29%20AS%20%3Fdisplay_name%29.%0A%20%20%23%20%20official%20website%20%28P856%29%20%0A%20%20OPTIONAL%20%7B%0A%20%20%20%20%3FconfSeries%20wdt%3AP856%20%3Fofficial_website%0A%20%20%7D%20%0A%20%20%23%20any%20item%20with%20a%20DBLP%20venue%20ID%20%0A%20%20OPTIONAL%20%7B%0A%20%20%20%20%3FconfSeries%20wdt%3AP8926%20%3FDBLP_pid.%0A%20%20%7D%0A%20%20%23%20WikiCFP%20pid%20%0A%20%20optional%20%7B%0A%20%20%20%20%20%3FconfSeries%20wdt%3AP5127%20%3FWikiCFP_pid.%0A%20%20%7D%0A%20%20%23%20GND%20pid%0A%20%20optional%20%7B%0A%20%20%20%20%3FconfSeries%20wdt%3AP227%20%3FGND_pid.%0A%20%20%7D%0A%20%20%23%20label%20%0A%20%20%3FconfSeries%20rdfs%3Alabel%20%3FconfSeriesLabel%20filter%20%28lang%28%3FconfSeriesLabel%29%20%3D%20%22en%22%29.%0A%7D%0AORDER%20BY%20%28%3Fdisplay_name%29%0A try it!] | ||
+ | <source lang='sparql'> | ||
+ | # Conference Series wikidata query | ||
+ | # see https://confident.dbis.rwth-aachen.de/dblpconf/wikidata | ||
+ | # WF 2021-01-30 | ||
+ | PREFIX wd: <http://www.wikidata.org/entity/> | ||
+ | PREFIX wdt: <http://www.wikidata.org/prop/direct/> | ||
+ | PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> | ||
+ | SELECT ?confSeries ?display_name ?confSeriesLabel ?official_website ?DBLP_pid ?WikiCFP_pid ?GND_pid | ||
+ | WHERE | ||
+ | { | ||
+ | # scientific conference series (Q47258130) | ||
+ | ?confSeries wdt:P31 wd:Q47258130. | ||
+ | OPTIONAL { ?confSeries wdt:P1813 ?short_name . } | ||
+ | BIND (COALESCE(?short_name,?confSeriesLabel) AS ?display_name). | ||
+ | # official website (P856) | ||
+ | OPTIONAL { | ||
+ | ?confSeries wdt:P856 ?official_website | ||
+ | } | ||
+ | # any item with a DBLP venue ID | ||
+ | OPTIONAL { | ||
+ | ?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"). | ||
+ | } | ||
+ | ORDER BY (?display_name) | ||
+ | </source> | ||
= DBLP Entities = | = DBLP Entities = |
Revision as of 10:00, 30 January 2021
OsProject
OsProject | |
---|---|
id | dblpconf |
state | |
owner | Wolfgang Fahl |
title | dblpconf |
url | https://github.com/WolfgangFahl/dblpconf |
version | 0.0.1 |
description | |
date | 2021/01/25 |
since | |
until |
What is it?
dblpconf analyzes a dblp.xml dump https://dblp.uni-trier.de/xml/ from the dblp computer science bibliography and makes the results available for use in a python project. There is also a flask+bootstrap 4 web interface
Demo
There is a demo at https://confident.dbis.rwth-aachen.de/dblpconf/
Wikidata
# Conference Series wikidata query
# see https://confident.dbis.rwth-aachen.de/dblpconf/wikidata
# WF 2021-01-30
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?confSeries ?display_name ?confSeriesLabel ?official_website ?DBLP_pid ?WikiCFP_pid ?GND_pid
WHERE
{
# scientific conference series (Q47258130)
?confSeries wdt:P31 wd:Q47258130.
OPTIONAL { ?confSeries wdt:P1813 ?short_name . }
BIND (COALESCE(?short_name,?confSeriesLabel) AS ?display_name).
# official website (P856)
OPTIONAL {
?confSeries wdt:P856 ?official_website
}
# any item with a DBLP venue ID
OPTIONAL {
?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").
}
ORDER BY (?display_name)
DBLP Entities
see http://diagrams.bitplan.com/render/svg/0xcc1dc00f.svg for clickable svg version
article
example
<article mdate="2020-02-04" key="persons/CasperGGGHLR12">
<author orcid="0000-0002-1163-8988">Markus Casper</author>
<author>Gayane Grigoryan</author>
<author>Oliver Gronz</author>
<author>Oliver Gutjahr</author>
<author orcid="0000-0002-4831-9016">Günther Heinemann</author>
<author>Rita Ley</author>
<author>Andreas Rock</author>
<title>Analysis of projected hydrological behavior of catchments based on signature indices</title>
<journal>Hydrology and Earth System Sciences</journal>
<volume>16</volume>
<pages>409-421</pages>
<year>2012</year>
<ee type="oa">https://doi.org/10.5194/hess-16-409-2012</ee>
</article>
book
example
<book mdate="2019-05-27" key="tr/acm/CS2013">
<title>Computer Science Curricula 2013</title>
<publisher>ACM Press and IEEE Computer Society Press</publisher>
<year>2013</year>
<ee>https://doi.org/10.1145/2534860</ee>
<isbn>978-1-4503-2309-3</isbn>
</book>
incollection
example
<incollection mdate="2017-07-12" key="reference/vlsi/Muroga99n" publtype="encyclopedia">
<author>Saburo Muroga</author>
<title>Field-Programmable Gate Arrays.</title>
<year>1999</year>
<booktitle>The VLSI Handbook</booktitle>
<ee>https://doi.org/10.1201/9781420049671.ch44</ee>
<crossref>reference/vlsi/1999</crossref>
<url>db/reference/vlsi/vlsi1999.html#Muroga99n</url>
</incollection>
inproceedings
example
<inproceedings mdate="2019-08-02" key="persons/Codd74">
<author>E. F. Codd</author>
<title>Seven Steps to Rendezvous with the Casual User.</title>
<month>January</month>
<year>1974</year>
<pages>179-200</pages>
<booktitle>IFIP Working Conference Data Base Management</booktitle>
<crossref>conf/ds/1974</crossref>
<url>db/conf/ds/dbm74.html#Codd74</url>
<note>IBM Research Report RJ 1333, San Jose, California</note>
<cdrom>DS/DS1974/P179.pdf</cdrom>
</inproceedings>
mastersthesis
example
<mastersthesis mdate="2002-01-03" key="phd/Ylonen94">
<author>Tatu Ylönen</author>
<title>Shadow Paging Is Feasible.</title>
<year>1994</year>
<school>Helsinki University of Technology, Department of Computer Science</school>
</mastersthesis>
phdthesis
example
<phdthesis mdate="2016-05-04" key="phd/sk/Frisch2009">
<author>Guido Frisch</author>
<title>Using open source software to develop E-business applications for medium- and small-sized enterprises.</title>
<year>2009</year>
<school>Bratislava, Univ.</school>
<pages>1-151</pages>
<isbn>978-3-8300-4753-7</isbn>
<ee>http://d-nb.info/996716548</ee>
</phdthesis>
proceedings
example
<proceedings mdate="2020-03-27" key="reference/genetic/2015">
<editor orcid="0000-0002-2798-0104">Amir Hossein Gandomi</editor>
<editor orcid="0000-0002-7593-8509">Amir Hossein Alavi</editor>
<editor orcid="0000-0002-7002-5815">Conor Ryan</editor>
<title>Handbook of Genetic Programming Applications</title>
<publisher>Springer</publisher>
<year>2015</year>
<isbn>978-3-319-20882-4</isbn>
<ee>https://doi.org/10.1007/978-3-319-20883-1</ee>
<url>db/reference/genetic/genetic2015.html</url>
</proceedings>
www
example
<www mdate="2018-07-05" key="persons/Ley93">
<author>Michael Ley</author>
<title>DBLP.uni-trier.de: Computer Science Bibliography</title>
<year>1993</year>
<ee>http://dblp.uni-trier.de/</ee>
</www>