-
Notifications
You must be signed in to change notification settings - Fork 0
/
wdMapTool.html
245 lines (213 loc) · 8.78 KB
/
wdMapTool.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Wikidataへのマッピングデータ検索</title>
<link rel="stylesheet" href="style.css">
<script src="KGSearch.js"></script> <!-- KG検索用のライブラリ読み込み -->
<script src="options.js"></script> <!-- KG検索設定ファイルの読み込み -->
<script src="wdMapping.js"></script> <!-- KG検索用のライブラリ読み込み -->
<script>
//詳細表示ページ用の設定
const keylink = "item"; //リンクのkeyとする変数
const detail_html = "details.html"; //詳細表示用のHTMLファイル
window.addEventListener('load', () => {
setButtonsForMapping();
}, false);
//検索に用いるSPARQLクエリを生成し,実行する
async function makeQuery(){
const endpoint = "https://query.wikidata.org/sparql";
const resultArea = document.getElementById('result_div');
const delailsArea = document.getElementById('details_div');
delailsArea.innerHTML='<iframe src="" name="details"style="width: 400px; height: 80hv;"></iframe>';
//入力データの取得+クエリ生成処理
const textLABEL = document.getElementById('LABELS').value;
const labels = textLABEL.split('\n');
// const modes = ["LabelFull","LabelForward","LabelAmbi","IRI"];
let mode = "LabelFull";
if(document.getElementById('LabelForward').checked){
mode = "LabelForward";
}
else if(document.getElementById('LabelAmbi').checked){
mode = "LabelAmbi";
}
else if(document.getElementById('matchIRI').checked){
mode = "IRI";
}
let num = 1;
for(let i=0;i<labels.length;i++){
const uriLbl = labels[i].split('\t');
console.log('uri='+uriLbl[0]+'label='+uriLbl[1]+' searching...');
//let m=0
// for(m=0;m<modes.length;m++){
if(uriLbl[1]==undefined){
console.log('undefinedでスキップ');
break;
}
let query = document.getElementById('query_area').value;
query = await makeMappingQuery2(query,uriLbl[0],uriLbl[1],mode);
document.getElementById('query_area2').value = query;
//SPARQLクエリの実行
dispLoading("検索中...["+i+"]");
const resultData = await sendSPARQLQuery(endpoint, query);
removeLoading();
document.getElementById('result_box').style.display="flex";
document.getElementById('resjson_area').value = JSON.stringify(resultData,null,' ');
if(resultData.results.bindings.length>0){
//showResult(resultData,resultArea); //クエリ結果の表示【テーブル表示用】
console.log('label='+uriLbl[1]+' mode='+mode+'...OK!');
showResult(resultData,resultArea); //クエリ結果の表示【テーブル表示用(結合無し)】
// break;
}
if(((i+1) % 100 == 0 )||(i == labels.length -1)){
let tabledata = resultArea.innerHTML;
saveTable("output_"+num+".html",tabledata);
num++;
if(i != labels.length -1){
resultArea.innerHTML ="";
}
}
}
}
/*
* クエリ結果の表示【テーブル表示用】
*/
function showResult(resultData,resultArea){
//クエリ結果のJSONデータを「ヘッダ部(keys)」と「値(data)」に分けて処理する
if(resultData==null){
return;
}
const keys = resultData.head.vars;
const data = resultData.results.bindings;
removeSearchIng();
let mesText = "";
let orgDiv = resultArea.innerHTML;
if(orgDiv.indexOf("<table")>=0){
mesText = resultArea.innerHTML.replace("</table>","");
}
else{
mesText = "<table>\n<tr>" ;
for(let j = 0; j < keys.length; j++){
mesText+='<th style="background:#afeeee">'
+getSearchPropLabel(keys[j]) +'</th>';
}
mesText+="</tr>\n";
}
for(let i = 0; i < data.length; i++){
mesText+="<tr>";
for(let j = 0; j < keys.length; j++){
let val = "-";
if(data[i][keys[j]]!=null){
val =data[i][keys[j]].value;
}
// mesText += '<th>'+ val +'</th>';
if(keys[j]=='class'||keys[j]=='super'){ //変数名が「keylink」のときは詳細表示へのリンク
mesText += '<th>'+getHtmlData(val)+'</th>';
}
else{
mesText += '<th>'+ val +'</th>';
// mesText += '<th>'+getHtmlData(val)+'</th>';
}
}
mesText+="</tr>";
}
resultArea.innerHTML = mesText+'</table>';
//「IDsの取得数」か「SPARQLの結果の数」がLIMITの50になった時は「続きを検索」ON
if(data.length == 50 || contQueryIds){
contQuery = true;
}
else {
contQuery = false;
}
const contButton = document.getElementById('cont');
if(contQuery){
contButton.style.display="block";
}
else{
contButton.style.display="none";
}
}
</script>
</head>
<body>
<header id="head" >
<h1>Wikidataへのマッピングデータ検索</h1>
</header>
<!-- 検索条件設定の領域 -->
<div id="menu" class="container">
<div style="margin-top:4px;">
<b>Wikidataとのマッピング</b><br>
1行ごとに「URI(TAB)ラベル」のテキストを貼り付けて【検索の実行】<br>
<!-- <input id="LABEL" type="text" value="" size="40"/> -->
<textarea id="LABELS" class="t_area" rows="20" >
http://xxxx.org ドーナツ
http://yyyy.org くるまえび
http://zzzz.org ブラックタイガー
</textarea><br>
<input type="button" id="send" value="検索の実行" style="margin-top:8px; "><br>
<hr>
<div>
<b>検索設定</b>:<br>
<label><input type="radio" id="LabelFull" name="labelType" value="full" checked>ラベル完全一致</label>
<label><input type="radio" id="LabelForward" name="labelType" value="forward">ラベル前方一致</label>
<label><input type="radio" id="LabelAmbi" name="labelType" value="ambi">ラベルあいまい検索</label>
<label><input type="radio" id="matchIRI" name="labelType" value="IRI">IRI一致</label>
</div>
<input type="button" id="showQueryCond" value="▼詳細検索条件">
<input type="button" id="hideQueryCond" value="△詳細検索条件" style="display:none">
<!-- <div id="QueryCond_div" style="display:none">
<div>
<b>ラベルの検索設定</b>:<br>
<label><input type="radio" id="LabelFull" name="labelType" value="full">完全一致</label>
<label><input type="radio" id="LabelForward" name="labelType" value="forward">前方一致</label>
<label><input type="radio" id="LabelAmbi" name="labelType" value="ambi" checked>あいまい検索</label>
</div>
<b>検索条件</b>:<br>
<div id="search_cond_div"></div>
<hr>
<input type="button" id="dispQuery" value="▼クエリの表示">
<input type="button" id="hideQuery" value="△クエリの非表示" style="display:none">
</div> -->
</div>
<div id="query" style="display:none">
<!-- <b>検索項目設定</b>:<br>
<div id="search_prop_div"></div>
<b>設定用ファイル</b>:<br>
<textarea id="settings_area" class="t_area" rows="10" ></textarea><br> -->
<b>置き換え前のクエリ</b>:<br>
<textarea id="query_area" class="t_area" rows="10">
select DISTINCT ?uri ?lbl ?item ?itemLabel ?class ?classLabel ?super ?superLabel
where{
OPTIONAL{?item wdt:P31 ?class.}
OPTIONAL{?item wdt:P279 ?super .}
SERVICE wikibase:label { bd:serviceParam wikibase:language "ja,en". }
}
ORDER BY ?item
LIMIT 50
</textarea>
<br>
<b>置き換え後のクエリ</b>:<input type="button" value="WikidataでSPARQL検索"
onclick="openSPARQLendpoint('https://query.wikidata.org#',
document.getElementById('query_area2').value)"><br>
<textarea id="query_area2" class="t_area" rows="10" ></textarea><br>
<b>クエリ実行結果の戻り値(JSON形式)</b>:<br>
<textarea id="resjson_area" class="t_area" rows="10" ></textarea>
</div>
</div>
<!-- 結果表示用の領域 -->
<div id="result_box" style=" display: none; ">
<div>
<div id="result_div" class="result_div" > </div>
<input type="button" id="cont" value="続きを検索" style=" display: none;" >
</div>
<!-- 詳細表示画面の領域 -->
<div id="details_div" >
<iframe src="" name="details"style="width: 400px; height: 80hv;"></iframe>
</div>
</div>
<hr>
This page is developed using <b><a href="https://kgs.hozo.jp/">KGSearchForWD</a></b>
</body>
</html>