dbpediaの研究 その37
概要
dbpediaが難解なので、手出してみる。
鉄道駅LODやってみた。
奥羽本線、表示してみた。
写真
投げたsparqlクエリー
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX schema: <http://schema.org/>
PREFIX geo: <http://www.w3.org/2003/01/geo/wgs84_pos#>
PREFIX propja: <http://ja.dbpedia.org/property/>
PREFIX class: <https://uedayou.net/jrslod/Class/>
SELECT DISTINCT ?title ?lat ?lon
WHERE {
?link a class:駅;
rdfs:label ?title;
propja:所属路線 ?rosen;
geo:lat ?lat;
geo:long ?lon.
FILTER regex(?rosen, "奥羽")
}
成果物
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX schema: <http://schema.org/>
PREFIX geo: <http://www.w3.org/2003/01/geo/wgs84_pos#>
PREFIX propja: <http://ja.dbpedia.org/property/>
PREFIX class: <https://uedayou.net/jrslod/Class/>
SELECT DISTINCT ?title ?lat ?lon
WHERE {
?link a class:駅;
rdfs:label ?title;
propja:所属路線 ?rosen;
geo:lat ?lat;
geo:long ?lon.
FILTER regex(?rosen, "奥羽")
}
以上。
Author And Source
この問題について(dbpediaの研究 その37), 我々は、より多くの情報をここで見つけました https://qiita.com/ohisama@github/items/1d0e6c20592b0fe36962著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .