SlideShare a Scribd company logo
1 of 21
Download to read offline
Open Data and
LOD(Linked Open Data)
Kouji KOZAKI
LOD Challenge committee /
The Institute of Scientific and Industrial
Research (I.S.I.R), Osaka University
2015/8/2 1
Kansai Mash App! VOL.02
2015.08.02
Kansai Mash App! VOL.02
Year \ Area Dataset Idea Application Visualize
Base
technology
FY2014(245works)
FY2013(321works)
FY2012(205works)
FY2011( 73works)
87
101
87
21
51
67
50
34
69
122
44
18
20
18
24
18
13
LOD(Linked Open Data)
Challenge
A series of contest which aim to spread LOD.
It is held every year from 2011.
 Numbers of submissions http://lod.sfc.keio.ac.jp/
22015/8/2
LOD Challenge 2015 will be announced SOON!
Kansai Mash App! VOL.02
Open Data
 Open Data
 Published data which anyone can use freely
 Definition of Open Data(Open Definition)
 “Open data and content can be freely used,
modified, and shared by anyone for any
purpose” (cf. http://opendefinition.org/)
 Examples which are NOT Open Data
 It is restricted to modify and/or share.
 Its users are limited. e.g. Only academic institutes
 Its purposes to use are limited.
e.g. No commercial, Only for submitting a contest
2015/8/2 Kansai Mash App! VOL.02 3
G8 Summit 2013 in Lough Erne
G8 Open Data Charter
http://www.mofa.go.jp/mofaj/files/000006820.pdf
2013/06/18
Principle 1: Open Data by Default
Principle 2: Quality and Quantity
Principle 3: Usable by All
Principle 4: Releasing Data for Improved Governance
Principle 5: Releasing Data for Innovation
G8 countries agree about
“Promotion of Open Data”
42015/8/2 Kansai Mash App! VOL.02
Two viewpoints for open data
 license
 No limitations for purpose, users, sharing, modifying
e.g. CC-BY (http://creativecommons.org/licenses/by/4.0/)
 It is important for the users to use without worry.
 Machine readable formats
 Formats which are easy for processing by program
e.g. CSV, JSON, RDF (Linked Data), etc.
 It is important to develop application in low costs.
 LOD (Linked Open Data) is a good way for publishing
open data.
 It ranks as 5 star in “5 ★ Open Data” by Tim Berners-
Lee (http://5stardata.info/).
2015/8/2 Kansai Mash App! VOL.02 5
Linked Data
 It aim to create new value by linking data on the Web.
 Proposed by Web Tim Berners-Lee (2006-).
※ Linked Open Data(LOD):Linked Data published as Open Data.
http://linkeddata.org/
• Technologies for linking data on web are provided.
→Data on Web can be used as a global database.
62015/8/2 Kansai Mash App! VOL.02
TED Talk by Tim Berrners Lee (2009)
~Raw Data Now!~
http://www.ted.com/talks/tim_berners_lee_on_the_next_web.html
Publish Open Data on Web
=Raw Data Now!
72015/8/2 Kansai Mash App! VOL.02
How LOD are extend on the Web
~LOD Cloud~
2007/5/1
2007/10/8
2008/9/182009/7/14
2010/9/22
http://lod-cloud.net/
2011/9/19
Each circle represents
a DB (LOD)
DBPedia
82015/8/2 Kansai Mash App! VOL.02
How LOD are extend on the Web
~LOD Cloud~
Linking Open Data cloud diagram 2014, by Max Schmachtenberg, Christian Bizer, Anja Jentzsch
and Richard Cyganiak. http://lod-cloud.net/
2014/08/30
92015/8/2 Kansai Mash App! VOL.02
2015/8/2 10
Domains # of dataset %
Government 183 18.05
Publications 96 9.47
Life sciences 83 8.19
User-generated content 48 4.73
Cross-domain 41 4.04
Media 22 2.17
Geographic 21 2.07
Social web 520 51.28
Total 1014
Kansai Mash App! VOL.02
DBpedia
Community project to generate LOD from Wikipedia.
Data is extracted from infoboxes based on definition of an ontology.
http://dbpedia.org/
112015/8/2
An example of Infobox
(Osaka (Osaka city))
Kansai Mash App! VOL.02
An example of Data in DBpedia
2015/8/2 12
http://dbpedia.org/resource/Osaka
Links to related data through property
(named hyper-link) using URIs.
Each data has a URI as a global ID.
Kansai Mash App! VOL.02
Search API for DBpedia
(SPARQL endpoint)
2015/8/2 13
http://dbpedia.org/sparql
Kansai Mash App! VOL.02
A query example
select distinct ?label
where {
<http://dbpedia.org/resource/Osaka_Cast
le> rdfs:label ?label
} LIMIT 100
2015/8/2 Kansai Mash App! VOL.02 14
DBpedia Japanese
2015/8/2 Kansai Mash App! VOL.02 15
http://jp.dbpedia.org/
SPARQL Endpoint
Example of a data in
DBpedia Japanese
2015/8/2 Kansai Mash App! VOL.02 16
http://ja.dbpedia.org/page/大阪府
SPARQL Endpoint for DBpedia
Japanese
2015/8/2 Kansai Mash App! VOL.02 17
Sample queries in Japanese
https://t.co/6eQIPel5Vh
http://ja.dbpedia.org/sparql
A query example
 「各都道府県で生まれた政治家の数」を調べる
 The numbers of Japanese politicians who born each
prefectures.
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX dbpedia-owl: <http://dbpedia.org/ontology/>
PREFIX dcterms: <http://purl.org/dc/terms/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX dbpedia-ja: <http://ja.dbpedia.org/resource/>
PREFIX category-ja: <http://ja.dbpedia.org/resource/Category:>
select distinct ?pref (count(?s) AS ?c) where {
?pref rdf:type dbpedia-owl:Place.
?pref dcterms:subject category-ja:日本の都道府県.
?s rdf:type dbpedia-owl:Politician;
dbpedia-owl:birthPlace ?pref.
}GROUP BY ?pref
ORDER BY ?c
2015/8/2 Kansai Mash App! VOL.02 18
A query example
 「各都道府県で生まれた芸人の数」を調べる
 The numbers of Japanese comedians who born each
prefectures.
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX dbpedia-owl: <http://dbpedia.org/ontology/>
PREFIX dcterms: <http://purl.org/dc/terms/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX dbpedia-ja: <http://ja.dbpedia.org/resource/>
PREFIX category-ja: <http://ja.dbpedia.org/resource/Category:>
select distinct ?pref (count(?s) AS ?c) where {
?pref rdf:type dbpedia-owl:Place.
?pref dcterms:subject category-ja:日本の都道府県.
?s rdf:type dbpedia-owl:Comedian;
dbpedia-owl:birthPlace ?pref.
}GROUP BY ?pref
ORDER BY ?c
2015/8/2 Kansai Mash App! VOL.02 19
ここを,
Politician→Comedian
に変えるだけ!
SPARQL検索が可能な日本語
LOD
2015/8/2 20
http://wp.lodosaka.jp/tool/searchdata/
LODハッカソン関西のWebサイトで
(関西で開催しているLODのイベント)
• SPARQL検索が可能な日本語LOD
• SPARQLの使い方の解説
を掲載していますので,詳しく知りたい方
はこちらをご覧下さい.
その他にも,
• LODの作成・公開の方法
• LODの活用事例
などの情報も掲載しています.
Kansai Mash App! VOL.02
Summary
 Linked Open Data
 Open data published as Linked Data
 LOD techniques
 URIs as global ID.
 Links to other data through property (named hyper-link).
 SPARQL endpoint as search API.
 Examples of LOD
 DBpedia
 LOD based on Wikipedia
 You can use it as multi-lingual database.
 Some open data by Osaka-city are published
also as LOD.
2015/8/2 21Kansai Mash App! VOL.02

More Related Content

Viewers also liked

2016 03-15.高速公路局 - 開放資料,開啟公私夥伴關係
2016 03-15.高速公路局 - 開放資料,開啟公私夥伴關係2016 03-15.高速公路局 - 開放資料,開啟公私夥伴關係
2016 03-15.高速公路局 - 開放資料,開啟公私夥伴關係KNY. KUN CHU. 坤助 陳. CHEN
 
2016晶片國民身分證簡報
2016晶片國民身分證簡報2016晶片國民身分證簡報
2016晶片國民身分證簡報INSIDETW
 
Synology 2017 建構個人雲端 盡享數位連線生活
Synology 2017 建構個人雲端 盡享數位連線生活Synology 2017 建構個人雲端 盡享數位連線生活
Synology 2017 建構個人雲端 盡享數位連線生活哇 哇
 
Synology 2017 展示區體驗 & 會場
Synology 2017 展示區體驗 & 會場Synology 2017 展示區體驗 & 會場
Synology 2017 展示區體驗 & 會場哇 哇
 
郵遞公文追蹤系統操作說明
郵遞公文追蹤系統操作說明郵遞公文追蹤系統操作說明
郵遞公文追蹤系統操作說明小四 曾
 
Synology 2017 完備災難復原方案 確保企業永續經營
Synology 2017 完備災難復原方案  確保企業永續經營Synology 2017 完備災難復原方案  確保企業永續經營
Synology 2017 完備災難復原方案 確保企業永續經營哇 哇
 

Viewers also liked (6)

2016 03-15.高速公路局 - 開放資料,開啟公私夥伴關係
2016 03-15.高速公路局 - 開放資料,開啟公私夥伴關係2016 03-15.高速公路局 - 開放資料,開啟公私夥伴關係
2016 03-15.高速公路局 - 開放資料,開啟公私夥伴關係
 
2016晶片國民身分證簡報
2016晶片國民身分證簡報2016晶片國民身分證簡報
2016晶片國民身分證簡報
 
Synology 2017 建構個人雲端 盡享數位連線生活
Synology 2017 建構個人雲端 盡享數位連線生活Synology 2017 建構個人雲端 盡享數位連線生活
Synology 2017 建構個人雲端 盡享數位連線生活
 
Synology 2017 展示區體驗 & 會場
Synology 2017 展示區體驗 & 會場Synology 2017 展示區體驗 & 會場
Synology 2017 展示區體驗 & 會場
 
郵遞公文追蹤系統操作說明
郵遞公文追蹤系統操作說明郵遞公文追蹤系統操作說明
郵遞公文追蹤系統操作說明
 
Synology 2017 完備災難復原方案 確保企業永續經營
Synology 2017 完備災難復原方案  確保企業永續經營Synology 2017 完備災難復原方案  確保企業永續經營
Synology 2017 完備災難復原方案 確保企業永續經營
 

Similar to Open Data & Linked Open Data

E2D3 introduction
E2D3 introductionE2D3 introduction
E2D3 introductionE2D3
 
Five Elements of Software Engineering for Mobile
Five Elements of Software Engineering for MobileFive Elements of Software Engineering for Mobile
Five Elements of Software Engineering for Mobile3scale.net
 
Linked Statistical Data: does it actually pay off?
Linked Statistical Data: does it actually pay off?Linked Statistical Data: does it actually pay off?
Linked Statistical Data: does it actually pay off?Oscar Corcho
 
Putting the L in front: from Open Data to Linked Open Data
Putting the L in front: from Open Data to Linked Open DataPutting the L in front: from Open Data to Linked Open Data
Putting the L in front: from Open Data to Linked Open DataMartin Kaltenböck
 
Big(ger) Data in Software Engineering
Big(ger) Data in Software EngineeringBig(ger) Data in Software Engineering
Big(ger) Data in Software EngineeringMehdi Mirakhorli
 
APIs and Restful APIs
APIs and Restful APIsAPIs and Restful APIs
APIs and Restful APIsijtsrd
 
Strata 2015 Data Preview: Spark, Data Visualization, YARN, and More
Strata 2015 Data Preview: Spark, Data Visualization, YARN, and MoreStrata 2015 Data Preview: Spark, Data Visualization, YARN, and More
Strata 2015 Data Preview: Spark, Data Visualization, YARN, and MorePaco Nathan
 
Current Trends of Japanese LOD -through LOD Challenge Japan
Current Trends of Japanese LOD  -through LOD Challenge JapanCurrent Trends of Japanese LOD  -through LOD Challenge Japan
Current Trends of Japanese LOD -through LOD Challenge JapanKouji Kozaki
 
Introduction to Open Source GIS
Introduction to Open Source GISIntroduction to Open Source GIS
Introduction to Open Source GISSANGHEE SHIN
 
An Infographic on My 25 Articles in Open Source For You Magazine
An Infographic on My 25 Articles in Open Source For You Magazine An Infographic on My 25 Articles in Open Source For You Magazine
An Infographic on My 25 Articles in Open Source For You Magazine Dr. K.S. Kuppu Samy
 
Testing IoT Apps with the Cloud
Testing IoT Apps with the CloudTesting IoT Apps with the Cloud
Testing IoT Apps with the CloudJosiah Renaudin
 
The University of Waterloo Open Data API
The University of Waterloo Open Data APIThe University of Waterloo Open Data API
The University of Waterloo Open Data APINathan Vexler
 
Evaluating Text Extraction at Scale: A case study from Apache Tika
Evaluating Text Extraction at Scale: A case study from Apache TikaEvaluating Text Extraction at Scale: A case study from Apache Tika
Evaluating Text Extraction at Scale: A case study from Apache TikaTim Allison
 
the Best Way to Create Creators in the Next Web Era - 20141210 Kyoto Forum
the Best Way to Create Creators in the Next Web Era - 20141210 Kyoto Forumthe Best Way to Create Creators in the Next Web Era - 20141210 Kyoto Forum
the Best Way to Create Creators in the Next Web Era - 20141210 Kyoto ForumTaisuke Fukuno
 
Producing, publishing and consuming linked data - CSHALS 2013
Producing, publishing and consuming linked data - CSHALS 2013Producing, publishing and consuming linked data - CSHALS 2013
Producing, publishing and consuming linked data - CSHALS 2013François Belleau
 
STC Design - Engage
STC Design - EngageSTC Design - Engage
STC Design - Engagesparktc
 
Crossing the chasm between ontology engineering and application development
Crossing the chasm between ontology engineering and application developmentCrossing the chasm between ontology engineering and application development
Crossing the chasm between ontology engineering and application developmentPaola Espinoza-Arias
 

Similar to Open Data & Linked Open Data (20)

E2D3 introduction
E2D3 introductionE2D3 introduction
E2D3 introduction
 
Five Elements of Software Engineering for Mobile
Five Elements of Software Engineering for MobileFive Elements of Software Engineering for Mobile
Five Elements of Software Engineering for Mobile
 
Linked Statistical Data: does it actually pay off?
Linked Statistical Data: does it actually pay off?Linked Statistical Data: does it actually pay off?
Linked Statistical Data: does it actually pay off?
 
Putting the L in front: from Open Data to Linked Open Data
Putting the L in front: from Open Data to Linked Open DataPutting the L in front: from Open Data to Linked Open Data
Putting the L in front: from Open Data to Linked Open Data
 
Big(ger) Data in Software Engineering
Big(ger) Data in Software EngineeringBig(ger) Data in Software Engineering
Big(ger) Data in Software Engineering
 
APIs and Restful APIs
APIs and Restful APIsAPIs and Restful APIs
APIs and Restful APIs
 
Strata 2015 Data Preview: Spark, Data Visualization, YARN, and More
Strata 2015 Data Preview: Spark, Data Visualization, YARN, and MoreStrata 2015 Data Preview: Spark, Data Visualization, YARN, and More
Strata 2015 Data Preview: Spark, Data Visualization, YARN, and More
 
Oracle Analytics.pptx
Oracle Analytics.pptxOracle Analytics.pptx
Oracle Analytics.pptx
 
Current Trends of Japanese LOD -through LOD Challenge Japan
Current Trends of Japanese LOD  -through LOD Challenge JapanCurrent Trends of Japanese LOD  -through LOD Challenge Japan
Current Trends of Japanese LOD -through LOD Challenge Japan
 
Introduction to Open Source GIS
Introduction to Open Source GISIntroduction to Open Source GIS
Introduction to Open Source GIS
 
Benchmarking Linked Data Introductory Remarks
Benchmarking Linked Data Introductory RemarksBenchmarking Linked Data Introductory Remarks
Benchmarking Linked Data Introductory Remarks
 
An Infographic on My 25 Articles in Open Source For You Magazine
An Infographic on My 25 Articles in Open Source For You Magazine An Infographic on My 25 Articles in Open Source For You Magazine
An Infographic on My 25 Articles in Open Source For You Magazine
 
Testing IoT Apps with the Cloud
Testing IoT Apps with the CloudTesting IoT Apps with the Cloud
Testing IoT Apps with the Cloud
 
The University of Waterloo Open Data API
The University of Waterloo Open Data APIThe University of Waterloo Open Data API
The University of Waterloo Open Data API
 
Evaluating Text Extraction at Scale: A case study from Apache Tika
Evaluating Text Extraction at Scale: A case study from Apache TikaEvaluating Text Extraction at Scale: A case study from Apache Tika
Evaluating Text Extraction at Scale: A case study from Apache Tika
 
the Best Way to Create Creators in the Next Web Era - 20141210 Kyoto Forum
the Best Way to Create Creators in the Next Web Era - 20141210 Kyoto Forumthe Best Way to Create Creators in the Next Web Era - 20141210 Kyoto Forum
the Best Way to Create Creators in the Next Web Era - 20141210 Kyoto Forum
 
Producing, publishing and consuming linked data - CSHALS 2013
Producing, publishing and consuming linked data - CSHALS 2013Producing, publishing and consuming linked data - CSHALS 2013
Producing, publishing and consuming linked data - CSHALS 2013
 
STC Design - Engage
STC Design - EngageSTC Design - Engage
STC Design - Engage
 
Crossing the chasm between ontology engineering and application development
Crossing the chasm between ontology engineering and application developmentCrossing the chasm between ontology engineering and application development
Crossing the chasm between ontology engineering and application development
 
STC Design
STC DesignSTC Design
STC Design
 

More from Kouji Kozaki

Linked Open Data(LOD)の基本的な使い方
Linked Open Data(LOD)の基本的な使い方Linked Open Data(LOD)の基本的な使い方
Linked Open Data(LOD)の基本的な使い方Kouji Kozaki
 
オントロジー工学に基づくセマンティック技術(1)オントロジー工学入門
オントロジー工学に基づくセマンティック技術(1)オントロジー工学入門オントロジー工学に基づくセマンティック技術(1)オントロジー工学入門
オントロジー工学に基づくセマンティック技術(1)オントロジー工学入門Kouji Kozaki
 
オントロジー工学に基づくセマンティック技術(2)ナレッジグラフ入門
オントロジー工学に基づくセマンティック技術(2)ナレッジグラフ入門オントロジー工学に基づくセマンティック技術(2)ナレッジグラフ入門
オントロジー工学に基づくセマンティック技術(2)ナレッジグラフ入門Kouji Kozaki
 
オープンデータを「世界」に発信するウィキデータ・ソン【IODD2019大阪】
オープンデータを「世界」に発信するウィキデータ・ソン【IODD2019大阪】オープンデータを「世界」に発信するウィキデータ・ソン【IODD2019大阪】
オープンデータを「世界」に発信するウィキデータ・ソン【IODD2019大阪】Kouji Kozaki
 
オントロジーとは?
オントロジーとは?オントロジーとは?
オントロジーとは?Kouji Kozaki
 
オープンデータとLOD~オープンデータって何?~
オープンデータとLOD~オープンデータって何?~オープンデータとLOD~オープンデータって何?~
オープンデータとLOD~オープンデータって何?~Kouji Kozaki
 
オントロジー研究20年の歩みと今後の展望
オントロジー研究20年の歩みと今後の展望オントロジー研究20年の歩みと今後の展望
オントロジー研究20年の歩みと今後の展望Kouji Kozaki
 
Linked Open Data(LOD)を使うと“うれしい”3つの理由
Linked Open Data(LOD)を使うと“うれしい”3つの理由Linked Open Data(LOD)を使うと“うれしい”3つの理由
Linked Open Data(LOD)を使うと“うれしい”3つの理由Kouji Kozaki
 
公共データをオープンデータ公開することによる効果
公共データをオープンデータ公開することによる効果公共データをオープンデータ公開することによる効果
公共データをオープンデータ公開することによる効果Kouji Kozaki
 
オープンデータの広がりと今後の課題ー関西での活動を中心にー
オープンデータの広がりと今後の課題ー関西での活動を中心にーオープンデータの広がりと今後の課題ー関西での活動を中心にー
オープンデータの広がりと今後の課題ー関西での活動を中心にーKouji Kozaki
 
書誌データのLOD化: データソン的デモンストレーション
書誌データのLOD化: データソン的デモンストレーション書誌データのLOD化: データソン的デモンストレーション
書誌データのLOD化: データソン的デモンストレーションKouji Kozaki
 
Linked Open Data(LOD)の基本理念と基盤となる技術
Linked Open Data(LOD)の基本理念と基盤となる技術Linked Open Data(LOD)の基本理念と基盤となる技術
Linked Open Data(LOD)の基本理念と基盤となる技術Kouji Kozaki
 
Linked Dataとオントロジーによるセマンティック技術の実際
Linked Dataとオントロジーによるセマンティック技術の実際Linked Dataとオントロジーによるセマンティック技術の実際
Linked Dataとオントロジーによるセマンティック技術の実際Kouji Kozaki
 
Linked Open Data(LOD)の基本理念から考える, ハッカソンのヒント
Linked Open Data(LOD)の基本理念から考える, ハッカソンのヒントLinked Open Data(LOD)の基本理念から考える, ハッカソンのヒント
Linked Open Data(LOD)の基本理念から考える, ハッカソンのヒントKouji Kozaki
 
Wikidataを編集してみよう!
Wikidataを編集してみよう!Wikidataを編集してみよう!
Wikidataを編集してみよう!Kouji Kozaki
 
大阪市オープンデータポータルAPI(SPARQL)勉強会
大阪市オープンデータポータルAPI(SPARQL)勉強会大阪市オープンデータポータルAPI(SPARQL)勉強会
大阪市オープンデータポータルAPI(SPARQL)勉強会Kouji Kozaki
 
関西地域でのオープンデータ活動の 広がりと今後の展望 -LOD(Linked Open Data)普及活動を通して-
関西地域でのオープンデータ活動の広がりと今後の展望-LOD(Linked Open Data)普及活動を通して-関西地域でのオープンデータ活動の広がりと今後の展望-LOD(Linked Open Data)普及活動を通して-
関西地域でのオープンデータ活動の 広がりと今後の展望 -LOD(Linked Open Data)普及活動を通して-Kouji Kozaki
 
Wikidata Edit-a-thon -Wikidataを編集してみよう!-
Wikidata Edit-a-thon -Wikidataを編集してみよう!-Wikidata Edit-a-thon -Wikidataを編集してみよう!-
Wikidata Edit-a-thon -Wikidataを編集してみよう!-Kouji Kozaki
 
オープンデータをLOD化するデータソン in 高槻
オープンデータをLOD化するデータソン in 高槻オープンデータをLOD化するデータソン in 高槻
オープンデータをLOD化するデータソン in 高槻Kouji Kozaki
 

More from Kouji Kozaki (20)

Linked Open Data(LOD)の基本的な使い方
Linked Open Data(LOD)の基本的な使い方Linked Open Data(LOD)の基本的な使い方
Linked Open Data(LOD)の基本的な使い方
 
オントロジー工学に基づくセマンティック技術(1)オントロジー工学入門
オントロジー工学に基づくセマンティック技術(1)オントロジー工学入門オントロジー工学に基づくセマンティック技術(1)オントロジー工学入門
オントロジー工学に基づくセマンティック技術(1)オントロジー工学入門
 
オントロジー工学に基づくセマンティック技術(2)ナレッジグラフ入門
オントロジー工学に基づくセマンティック技術(2)ナレッジグラフ入門オントロジー工学に基づくセマンティック技術(2)ナレッジグラフ入門
オントロジー工学に基づくセマンティック技術(2)ナレッジグラフ入門
 
オープンデータを「世界」に発信するウィキデータ・ソン【IODD2019大阪】
オープンデータを「世界」に発信するウィキデータ・ソン【IODD2019大阪】オープンデータを「世界」に発信するウィキデータ・ソン【IODD2019大阪】
オープンデータを「世界」に発信するウィキデータ・ソン【IODD2019大阪】
 
オントロジーとは?
オントロジーとは?オントロジーとは?
オントロジーとは?
 
オープンデータとLOD~オープンデータって何?~
オープンデータとLOD~オープンデータって何?~オープンデータとLOD~オープンデータって何?~
オープンデータとLOD~オープンデータって何?~
 
オントロジー研究20年の歩みと今後の展望
オントロジー研究20年の歩みと今後の展望オントロジー研究20年の歩みと今後の展望
オントロジー研究20年の歩みと今後の展望
 
WikidataとOSM
WikidataとOSMWikidataとOSM
WikidataとOSM
 
Linked Open Data(LOD)を使うと“うれしい”3つの理由
Linked Open Data(LOD)を使うと“うれしい”3つの理由Linked Open Data(LOD)を使うと“うれしい”3つの理由
Linked Open Data(LOD)を使うと“うれしい”3つの理由
 
公共データをオープンデータ公開することによる効果
公共データをオープンデータ公開することによる効果公共データをオープンデータ公開することによる効果
公共データをオープンデータ公開することによる効果
 
オープンデータの広がりと今後の課題ー関西での活動を中心にー
オープンデータの広がりと今後の課題ー関西での活動を中心にーオープンデータの広がりと今後の課題ー関西での活動を中心にー
オープンデータの広がりと今後の課題ー関西での活動を中心にー
 
書誌データのLOD化: データソン的デモンストレーション
書誌データのLOD化: データソン的デモンストレーション書誌データのLOD化: データソン的デモンストレーション
書誌データのLOD化: データソン的デモンストレーション
 
Linked Open Data(LOD)の基本理念と基盤となる技術
Linked Open Data(LOD)の基本理念と基盤となる技術Linked Open Data(LOD)の基本理念と基盤となる技術
Linked Open Data(LOD)の基本理念と基盤となる技術
 
Linked Dataとオントロジーによるセマンティック技術の実際
Linked Dataとオントロジーによるセマンティック技術の実際Linked Dataとオントロジーによるセマンティック技術の実際
Linked Dataとオントロジーによるセマンティック技術の実際
 
Linked Open Data(LOD)の基本理念から考える, ハッカソンのヒント
Linked Open Data(LOD)の基本理念から考える, ハッカソンのヒントLinked Open Data(LOD)の基本理念から考える, ハッカソンのヒント
Linked Open Data(LOD)の基本理念から考える, ハッカソンのヒント
 
Wikidataを編集してみよう!
Wikidataを編集してみよう!Wikidataを編集してみよう!
Wikidataを編集してみよう!
 
大阪市オープンデータポータルAPI(SPARQL)勉強会
大阪市オープンデータポータルAPI(SPARQL)勉強会大阪市オープンデータポータルAPI(SPARQL)勉強会
大阪市オープンデータポータルAPI(SPARQL)勉強会
 
関西地域でのオープンデータ活動の 広がりと今後の展望 -LOD(Linked Open Data)普及活動を通して-
関西地域でのオープンデータ活動の広がりと今後の展望-LOD(Linked Open Data)普及活動を通して-関西地域でのオープンデータ活動の広がりと今後の展望-LOD(Linked Open Data)普及活動を通して-
関西地域でのオープンデータ活動の 広がりと今後の展望 -LOD(Linked Open Data)普及活動を通して-
 
Wikidata Edit-a-thon -Wikidataを編集してみよう!-
Wikidata Edit-a-thon -Wikidataを編集してみよう!-Wikidata Edit-a-thon -Wikidataを編集してみよう!-
Wikidata Edit-a-thon -Wikidataを編集してみよう!-
 
オープンデータをLOD化するデータソン in 高槻
オープンデータをLOD化するデータソン in 高槻オープンデータをLOD化するデータソン in 高槻
オープンデータをLOD化するデータソン in 高槻
 

Recently uploaded

Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostZilliz
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyAlfredo García Lavilla
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii SoldatenkoFwdays
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr LapshynFwdays
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piececharlottematthew16
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationSafe Software
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenHervé Boutemy
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxhariprasad279825
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 

Recently uploaded (20)

Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easy
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piece
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache Maven
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptx
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 

Open Data & Linked Open Data

  • 1. Open Data and LOD(Linked Open Data) Kouji KOZAKI LOD Challenge committee / The Institute of Scientific and Industrial Research (I.S.I.R), Osaka University 2015/8/2 1 Kansai Mash App! VOL.02 2015.08.02 Kansai Mash App! VOL.02
  • 2. Year \ Area Dataset Idea Application Visualize Base technology FY2014(245works) FY2013(321works) FY2012(205works) FY2011( 73works) 87 101 87 21 51 67 50 34 69 122 44 18 20 18 24 18 13 LOD(Linked Open Data) Challenge A series of contest which aim to spread LOD. It is held every year from 2011.  Numbers of submissions http://lod.sfc.keio.ac.jp/ 22015/8/2 LOD Challenge 2015 will be announced SOON! Kansai Mash App! VOL.02
  • 3. Open Data  Open Data  Published data which anyone can use freely  Definition of Open Data(Open Definition)  “Open data and content can be freely used, modified, and shared by anyone for any purpose” (cf. http://opendefinition.org/)  Examples which are NOT Open Data  It is restricted to modify and/or share.  Its users are limited. e.g. Only academic institutes  Its purposes to use are limited. e.g. No commercial, Only for submitting a contest 2015/8/2 Kansai Mash App! VOL.02 3
  • 4. G8 Summit 2013 in Lough Erne G8 Open Data Charter http://www.mofa.go.jp/mofaj/files/000006820.pdf 2013/06/18 Principle 1: Open Data by Default Principle 2: Quality and Quantity Principle 3: Usable by All Principle 4: Releasing Data for Improved Governance Principle 5: Releasing Data for Innovation G8 countries agree about “Promotion of Open Data” 42015/8/2 Kansai Mash App! VOL.02
  • 5. Two viewpoints for open data  license  No limitations for purpose, users, sharing, modifying e.g. CC-BY (http://creativecommons.org/licenses/by/4.0/)  It is important for the users to use without worry.  Machine readable formats  Formats which are easy for processing by program e.g. CSV, JSON, RDF (Linked Data), etc.  It is important to develop application in low costs.  LOD (Linked Open Data) is a good way for publishing open data.  It ranks as 5 star in “5 ★ Open Data” by Tim Berners- Lee (http://5stardata.info/). 2015/8/2 Kansai Mash App! VOL.02 5
  • 6. Linked Data  It aim to create new value by linking data on the Web.  Proposed by Web Tim Berners-Lee (2006-). ※ Linked Open Data(LOD):Linked Data published as Open Data. http://linkeddata.org/ • Technologies for linking data on web are provided. →Data on Web can be used as a global database. 62015/8/2 Kansai Mash App! VOL.02
  • 7. TED Talk by Tim Berrners Lee (2009) ~Raw Data Now!~ http://www.ted.com/talks/tim_berners_lee_on_the_next_web.html Publish Open Data on Web =Raw Data Now! 72015/8/2 Kansai Mash App! VOL.02
  • 8. How LOD are extend on the Web ~LOD Cloud~ 2007/5/1 2007/10/8 2008/9/182009/7/14 2010/9/22 http://lod-cloud.net/ 2011/9/19 Each circle represents a DB (LOD) DBPedia 82015/8/2 Kansai Mash App! VOL.02
  • 9. How LOD are extend on the Web ~LOD Cloud~ Linking Open Data cloud diagram 2014, by Max Schmachtenberg, Christian Bizer, Anja Jentzsch and Richard Cyganiak. http://lod-cloud.net/ 2014/08/30 92015/8/2 Kansai Mash App! VOL.02
  • 10. 2015/8/2 10 Domains # of dataset % Government 183 18.05 Publications 96 9.47 Life sciences 83 8.19 User-generated content 48 4.73 Cross-domain 41 4.04 Media 22 2.17 Geographic 21 2.07 Social web 520 51.28 Total 1014 Kansai Mash App! VOL.02
  • 11. DBpedia Community project to generate LOD from Wikipedia. Data is extracted from infoboxes based on definition of an ontology. http://dbpedia.org/ 112015/8/2 An example of Infobox (Osaka (Osaka city)) Kansai Mash App! VOL.02
  • 12. An example of Data in DBpedia 2015/8/2 12 http://dbpedia.org/resource/Osaka Links to related data through property (named hyper-link) using URIs. Each data has a URI as a global ID. Kansai Mash App! VOL.02
  • 13. Search API for DBpedia (SPARQL endpoint) 2015/8/2 13 http://dbpedia.org/sparql Kansai Mash App! VOL.02
  • 14. A query example select distinct ?label where { <http://dbpedia.org/resource/Osaka_Cast le> rdfs:label ?label } LIMIT 100 2015/8/2 Kansai Mash App! VOL.02 14
  • 15. DBpedia Japanese 2015/8/2 Kansai Mash App! VOL.02 15 http://jp.dbpedia.org/ SPARQL Endpoint
  • 16. Example of a data in DBpedia Japanese 2015/8/2 Kansai Mash App! VOL.02 16 http://ja.dbpedia.org/page/大阪府
  • 17. SPARQL Endpoint for DBpedia Japanese 2015/8/2 Kansai Mash App! VOL.02 17 Sample queries in Japanese https://t.co/6eQIPel5Vh http://ja.dbpedia.org/sparql
  • 18. A query example  「各都道府県で生まれた政治家の数」を調べる  The numbers of Japanese politicians who born each prefectures. PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX dbpedia-owl: <http://dbpedia.org/ontology/> PREFIX dcterms: <http://purl.org/dc/terms/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX dbpedia-ja: <http://ja.dbpedia.org/resource/> PREFIX category-ja: <http://ja.dbpedia.org/resource/Category:> select distinct ?pref (count(?s) AS ?c) where { ?pref rdf:type dbpedia-owl:Place. ?pref dcterms:subject category-ja:日本の都道府県. ?s rdf:type dbpedia-owl:Politician; dbpedia-owl:birthPlace ?pref. }GROUP BY ?pref ORDER BY ?c 2015/8/2 Kansai Mash App! VOL.02 18
  • 19. A query example  「各都道府県で生まれた芸人の数」を調べる  The numbers of Japanese comedians who born each prefectures. PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX dbpedia-owl: <http://dbpedia.org/ontology/> PREFIX dcterms: <http://purl.org/dc/terms/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX dbpedia-ja: <http://ja.dbpedia.org/resource/> PREFIX category-ja: <http://ja.dbpedia.org/resource/Category:> select distinct ?pref (count(?s) AS ?c) where { ?pref rdf:type dbpedia-owl:Place. ?pref dcterms:subject category-ja:日本の都道府県. ?s rdf:type dbpedia-owl:Comedian; dbpedia-owl:birthPlace ?pref. }GROUP BY ?pref ORDER BY ?c 2015/8/2 Kansai Mash App! VOL.02 19 ここを, Politician→Comedian に変えるだけ!
  • 20. SPARQL検索が可能な日本語 LOD 2015/8/2 20 http://wp.lodosaka.jp/tool/searchdata/ LODハッカソン関西のWebサイトで (関西で開催しているLODのイベント) • SPARQL検索が可能な日本語LOD • SPARQLの使い方の解説 を掲載していますので,詳しく知りたい方 はこちらをご覧下さい. その他にも, • LODの作成・公開の方法 • LODの活用事例 などの情報も掲載しています. Kansai Mash App! VOL.02
  • 21. Summary  Linked Open Data  Open data published as Linked Data  LOD techniques  URIs as global ID.  Links to other data through property (named hyper-link).  SPARQL endpoint as search API.  Examples of LOD  DBpedia  LOD based on Wikipedia  You can use it as multi-lingual database.  Some open data by Osaka-city are published also as LOD. 2015/8/2 21Kansai Mash App! VOL.02