Language
Login
Language Setting
X
English
日本語 [Japanese]
about this App
大口町 数字で見る町民生活
useful
0
Loading...
//ロード完了後に実行 window.onload = function() { //コンテンツ領域内のdiv要素を走査してメニューを作る $("#statistics_contents > div[data-title]").each(function(i, e) { var liElement = $("<li>"); liElement.html($(e).attr("data-title")); liElement.on("click", function() { $("#statistics_menu .active_contents").removeClass("active_contents"); $(this).addClass("active_contents"); setContents(e); }); $("#statistics_list").append(liElement); }); //モバイルメニューにイベントを追加 $(".mobile_icon").on("click", function() { $(".mobile_icon").toggleClass("icon_close"); //メニュー表示・非表示 if ($("#statistics_list").css("display") == "block") { //非表示にする $("#statistics_list").slideUp(500); } else { //表示する $("#statistics_list").slideDown(500); } }); }; //レスポンシブ対応 $(window).on("load resize",function() { //大きさを取得 var ww = $(window).width(); var wh = $(window).height(); if(window.matchMedia("(max-width:960px)").matches){ //モバイル //モード切替 $("#result").css("flex-wrap", "wrap") $("#statistics_menu").removeClass("pc"); $("#statistics_menu").addClass("mobile"); }else{ //PC //モード切替 $("#result").css("flex-wrap", "nowrap") $("#statistics_menu").removeClass("mobile"); $("#statistics_menu").addClass("pc"); $("#statistics_list").css("display", ""); $(".mobile_icon").removeClass("icon_close"); } }); /* setContents @param e コンテンツ(DOM) @description 選択された要素からJSONデータを取得して表示します。 */ function setContents(e) { //選択された用要素以外のコンテンツを非表示 $("#statistics_contents .active_contents").removeClass("active_contents"); //選択されたコンテンツ内のworkidカスタム属性要素を走査 $(e).children("div[data-workid]").each(function(i, child) { //非表示にしておく $(child).hide(); //未処理なら処理 if(!$(child).attr("data-finished")) { //番号をつけておく $(child).attr("data-contents-count", i); //データタイプを取得 var dataType = $(child).attr("data-type"); switch(dataType) { case "table": setTableElement(child); break; case "dom": setJartyElement(child); break; default: break; } } else { //1番目を表示 if(i == 0) { $(child).show(); } } }); //選択されたコンテンツを表示 $(e).addClass("active_contents"); } /* setJartyElement @param child DOM要素対象DOM @description 指定された要素にjartyを適用します。 */ function setJartyElement(child, targetIndex = 0) { //ローディング画面を表示 if($(child).attr("data-contents-count") == targetIndex) { $(".loader").show(); } //データを取得 var url = $(child).attr("data-url"); //HTTP/HTTPSを切り替え if(location.protocol == "https:") { //HTTPS url = url.replace(/^http:/,"https:"); } else { //HTTP url = url.replace(/^https:/,"http:"); } //データを用意 var dictionaryData = {}; var arrayData = []; //データバインド情報を取得 var bindData = {}; $(child).find("[data-bindcol]").each(function(i, data) { var name = $(data).attr("data-bindname"); bindData[$(data).attr("data-bindcol")] = $(data).attr("data-bindname"); }); //フォーマット情報の連想配列を作る var formatCollection = new Map(); $.ajaxSetup({ beforeSend : function(xhr) { xhr.overrideMimeType('application/javascript;charset=Shift_JIS'); } }); //JSONデータを取得 $.ajax({ url: url, dataType: 'jsonp', crossDomain: true, timeout: 20000, responsive: true, success:function(data){ //取得したデータからヘッダ名とデータを取り出す $.each(data, function(key, item) { var tempData = {}; $.each(item, function(id, value) { //登録対象であれば処理 if(getLastName(id) in bindData) { //属性によって分岐 if("datatype" in value[0]) { switch(getLastName(value[0].datatype)) { //日付形式 case "date": var tempString = value[0].value.split("-"); var tempDate = new Date(); tempDate.setYear(tempString[0]); tempDate.setMonth(parseInt(tempString[1]) - 1); tempDate.setDate(tempString[2]); //表示フォーマット指定があれば準拠 if(formatCollection.has(getLastName(id))) { tempData[bindData[getLastName(id)]] = formatDate(tempDate, formatCollection.get(getLastName(id))); } else { tempData[bindData[getLastName(id)]] = tempDate; } break; //数値形式 case "int": tempData[bindData[getLastName(id)]] = value[0].value; break; default: tempData[bindData[getLastName(id)]] = value[0].value; break; } } else { tempData[bindData[getLastName(id)]] = value[0].value; } } }); //未登録のデータは空白とする $.each(bindData, function(bindKey, bindValue) { if(!(bindKey in tempData)) { tempData[bindKey] = ""; //alert(bindKey + "は存在しません"); } }); //配列にデータを追加 arrayData.push(tempData); }); //データを作成 dictionaryData["json"] = arrayData; var source = $(child).html(); var result = Jarty.eval(source, dictionaryData); $(child).html(result); //表示 if($(child).attr("data-contents-count") == targetIndex) { $(".loader").hide(); $(child).fadeIn(500); } }, error:function(error){ $(child).append("<p>Can not load JSON data.</p>"); //表示 if($(child).attr("data-contents-count") == targetIndex) { $(".loader").hide(); $(child).fadeIn(500); } } }); //処理済みにする $(child).attr("data-finished", "true"); } /* setTableElement @param child テーブル作成対象DOM @description 指定された要素にdatatablesを作成します。 */ function setTableElement(child, targetIndex = 0) { //エラーフラグ var errorFlag = false; //処理済みなら何もしない if($(child).attr("data-finished")) { return; } //インデックスが不一致なら何もしない if($(child).attr("data-contents-count") != targetIndex) { return; } //ローディング画面を表示 if($(child).attr("data-contents-count") == targetIndex) { $(".loader").show(); } //データを取得 var url = $(child).attr("data-url"); //HTTP/HTTPSを切り替え if(location.protocol == "https:") { //HTTPS url = url.replace(/^http:/,"https:"); } else { //HTTP url = url.replace(/^https:/,"http:"); } //検索窓 var searchingFlag = false; if($(child).attr("data-searching")) { searchingFlag = toBoolean($(child).attr("data-searching")); } //ページ表示 var pagingFlag = false; if($(child).attr("data-paging")) { pagingFlag = toBoolean($(child).attr("data-paging")); } //列ソート var orderingFlag = false; if($(child).attr("data-ordering")) { orderingFlag = toBoolean($(child).attr("data-ordering")); } //ボタン表示 var buttons = ""; if($(child).attr("data-display-button")) { if(toBoolean($(child).attr("data-display-button"))) { buttons = [ {extend:"copy",text:"コピー"}, {extend:"csv", text:"CSVダウンロード"}, {extend:"print",text:"印刷"} ]; } } //件数変更 var lengthChangeFlag = false; if($(child).attr("data-lengthChange")) { lengthChangeFlag = toBoolean($(child).attr("data-lengthChange")); } //件数表示 var infoFlag = false; if($(child).attr("data-info")) { infoFlag = toBoolean($(child).attr("data-info")); } //グループ行 var columnGroups = []; var groupMap = {}; //列情報を取得 var columnData = []; var columnDefs = []; //ヘッダの行列を数える var columnCount = 0; var rowCount = 0; $(child).children("table:first").each(function(j, table) { $(table).children("thead:first").each(function(k, thead) { $(thead).children("tr").each(function(l, tr) { if(l == 0) { $(tr).children("th").each(function(m, th) { //加算 columnCount += 1; //colspanしていれば加算する if($(th).attr("colspan")) { columnCount += parseInt($(th).attr("colspan")) - 1; } }); } //加算 rowCount += 1; }); }); }); //ヘッダの行列の二次元配列を作る var headerArray = new Array(rowCount); for(var j = 0; j < rowCount; j++) { headerArray[j] = new Array(columnCount).fill(0); } //フォーマット情報の連想配列を作る var formatCollection = new Map(); var renderNumberCollection = new Map(); //グループ情報の連想配列を作る var groupCollection = new Map(); //数式情報の連想配列を作る var expressionCollection = {}; var expressionOrder = []; var expressionRequireCollection = {}; var bindNameCollection = {}; //データバインド情報を取得 $(child).children("table:first").each(function(j, table) { $(table).children("thead:first").each(function(k, thead) { $(thead).children("tr").each(function(l, tr) { //現在の行を取得 var currentRow = l; //現在の列を取得 var currentColumn = 0; var spanedCol = 0; while(spanedCol < columnCount) { if(Number.isInteger(headerArray[currentRow][spanedCol]) && headerArray[currentRow][spanedCol] >= 0) { break; } spanedCol++; } currentColumn += spanedCol; $(tr).children("th").each(function(m, th) { while(Number.isInteger(headerArray[currentRow][currentColumn]) && headerArray[currentRow][currentColumn] < 0) { if(currentColumn >= columnCount) { break; } currentColumn += 1; } //データを登録 if($(th).attr("data-bindcol")) { //元データの列名を登録 var bindCol = $(th).attr("data-bindcol"); headerArray[currentRow][currentColumn] = bindCol; //表示フォーマットが指定されていれば格納 if($(th).attr("data-dataformat")) { formatCollection.set(bindCol, $(th).attr("data-dataformat")); } if($(th).attr("data-render-number")) { renderNumberCollection.set(bindCol, $(th).attr("data-render-number")); } //数式がセットされていれば格納 if($(th).attr("data-expression")) { //優先度の指定がなければ0番として登録 var tempPriority = 0; if($(th).attr("data-expression-priority")) { //優先度指定あり var tempParse = Number($(th).attr("data-expression-priority")); if(!isNaN(tempParse)) { tempPriority = tempParse; } } //配列が不足していれば追加 if(expressionOrder.length <= tempPriority) { for(var counter = expressionOrder.length; counter <= tempPriority; counter++) { var tempExpCollection = {}; expressionOrder.push(tempExpCollection); } } //該当する優先度のハッシュテーブルに追加 var expCollection = expressionOrder[tempPriority]; expCollection[bindCol] = $(th).attr("data-expression"); //必須固有名があれば登録 if($(th).attr("data-expression-require")) { var tempSplit = String($(th).attr("data-expression-require")).split(","); expressionRequireCollection[bindCol] = tempSplit; } } //数式用の固有名が定義されていればセット if($(th).attr("data-bindname")) { bindNameCollection[bindCol] = $(th).attr("data-bindname"); } //グルーピング指定情報を格納 if($(th).attr("data-grouping")) { groupCollection.set(bindCol, $(th).attr("data-grouping")); } } else { headerArray[currentRow][currentColumn] = -2; } //行方向に結合していたら、当該セルを無効化 var rowSpanCount = 0; if($(th).attr("rowspan")) { var tempRowSpan = parseInt($(th).attr("rowspan")); rowSpanCount = tempRowSpan; for(var n = 1; n < tempRowSpan; n++) { headerArray[currentRow + n][currentColumn] = -1; } } //列方向に結合していたら、当該セルを無効化 if($(th).attr("colspan")) { var tempColSpan = parseInt($(th).attr("colspan")); for(var n = 1; n < tempColSpan; n++) { headerArray[currentRow][currentColumn + n] = -1; for(var tempRowSpan = 0; tempRowSpan < rowSpanCount; tempRowSpan++) { headerArray[currentRow + tempRowSpan][currentColumn + n] = -1; } } currentColumn += tempColSpan - 1; } currentColumn += 1; }); }); }); }); //表示順を最適化(列→行の順で生成) var currentCol = 0; for(var j = 0; j < columnCount; j++) { for(var k = 0; k < rowCount; k++) { if(!Number.isInteger(headerArray[k][j])) { //数値の表示形式に指定があればヘルパーをセット if(renderNumberCollection.has(headerArray[k][j])) { var tempString = renderNumberCollection.get(headerArray[k][j]).replace(/\'/g, "\""); var renderArray = JSON.parse(tempString); columnDefs.push({targets:currentCol, render: $.fn.dataTable.render.number(renderArray[0], renderArray[1], renderArray[2], renderArray[3], renderArray[4])}); columnData.push({data:headerArray[k][j]}); } else { columnData.push({data:headerArray[k][j]}); } //グループ情報があれば登録 if(groupCollection.has(headerArray[k][j])) { columnGroups.push(headerArray[k][j]); } //インクリメント currentCol += 1; } } } //グループ情報を作成 if(columnGroups.length > 0) { groupMap["dataSrc"] = columnGroups; } var arrayData = []; //JSONデータを取得 $.ajax({ url: url, dataType: 'jsonp', timeout: 20000, crossDomain: true, responsive: true, success:function(data){ //取得したデータからヘッダ名とデータを取り出す $.each(data, function(key, item) { var tempData = {}; var bindNameData = {}; $.each(item, function(id, value) { //属性によって分岐 if("datatype" in value[0]) { switch(getLastName(value[0].datatype)) { //日付形式 case "date": var tempString = value[0].value.split("-"); var tempDate = new Date(); tempDate.setYear(tempString[0]); tempDate.setMonth(parseInt(tempString[1]) - 1); tempDate.setDate(tempString[2]); //表示フォーマット指定があれば準拠 if(formatCollection.has(getLastName(id))) { tempData[getLastName(id)] = formatDate(tempDate, formatCollection.get(getLastName(id))); //数式計算用のデータを登録 if(getLastName(id) in bindNameCollection) { bindNameData[bindNameCollection[getLastName(id)]] = formatDate(tempDate, formatCollection.get(getLastName(id))); } } else { tempData[getLastName(id)] = tempDate; //数式計算用のデータを登録 if(getLastName(id) in bindNameCollection) { bindNameData[bindNameCollection[getLastName(id)]] = tempDate; } } break; //数値形式 case "int": tempData[getLastName(id)] = value[0].value; //数式計算用のデータを登録 if(getLastName(id) in bindNameCollection) { bindNameData[bindNameCollection[getLastName(id)]] = value[0].value; } break; default: tempData[getLastName(id)] = value[0].value; //数式計算用のデータを登録 if(getLastName(id) in bindNameCollection) { bindNameData[bindNameCollection[getLastName(id)]] = value[0].value; } break; } } else { tempData[getLastName(id)] = value[0].value; //数式計算用のデータを登録 if(getLastName(id) in bindNameCollection) { bindNameData[bindNameCollection[getLastName(id)]] = value[0].value; } } }); //数式を処理 for(var counter = expressionOrder.length; counter > 0; counter--) { expressionCollection = expressionOrder[counter-1]; $.each(expressionCollection, function(expKey, expValue) { //数式エラーがあれば空白 try { //計算用の配列にコピー var tempBindNameData = Object.create(bindNameData); //必須ヘッダがデータになければ一時的に0で追加 if(expKey in expressionRequireCollection) { var tempRequire = expressionRequireCollection[expKey]; for(var counter = 0; counter < tempRequire.length; counter++) { //なければ追加 if(!(tempRequire[counter] in tempBindNameData)) { tempBindNameData[tempRequire[counter]] = 0; } } } //値を計算させる var expFunc = Jarty.compile(expValue); var expString = expFunc(tempBindNameData); expString = expString.replace(/[\"”]/g,""); tempData[expKey] = evalCalculation(expString); //計算結果で値を更新 if(expKey in bindNameCollection) { bindNameData[bindNameCollection[expKey]] = tempData[expKey]; } } catch(e) { //エラー tempData[expKey] = ""; } }); } //未登録のデータは空白とする $.each(columnData, function(columnIndex, columnValue) { if(!(columnValue.data in tempData)) { tempData[columnValue.data] = ""; } }); //配列にデータを追加 arrayData.push(tempData); }); var tableElement = $(child).children("table:first"); tableElement.attr("data-main", "true"); //DataTablesを作成 if(columnGroups.length > 0) { tableElement.DataTable({ data: arrayData, searching: searchingFlag, ordering: orderingFlag, paging: pagingFlag, lengthChange: lengthChangeFlag, info: infoFlag, responsive: true, language: {"url": "//cdn.datatables.net/plug-ins/1.13.5/i18n/ja.json"}, buttons:buttons, columns:columnData, columnDefs:columnDefs, rowGroup:groupMap, lengthMenu: [[10,25,50,100,-1],[10,25,50,100,"全て"]], dom: '<lf>rt<ip><"clear"B>' }); } else { tableElement.DataTable({ data: arrayData, searching: searchingFlag, ordering: orderingFlag, paging: pagingFlag, lengthChange: lengthChangeFlag, info: infoFlag, responsive: true, language: {"url": "//cdn.datatables.net/plug-ins/1.13.5/i18n/ja.json"}, buttons:buttons, columns:columnData, columnDefs:columnDefs, lengthMenu: [[10,25,50,100,-1],[10,25,50,100,"全て"]], dom: '<lf>rt<ip><"clear"B>' }); } //表示 if($(child).attr("data-contents-count") == targetIndex) { $(".loader").hide(); $(child).fadeIn(500); } }, error:function(error){ errorFlag = true; var errorP = $("<p>"); errorP.html("データの読み込みに失敗しました。お手数をおかけしますが、ページを再読み込みしてください。"); $(child).append(errorP); //表示 if($(child).attr("data-contents-count") == targetIndex) { $(".loader").hide(); $(child).fadeIn(500); } } }); if(!errorFlag) { //グラフを表示する場合、要素を作る //サブメニューを作る createSubMenu(child); //処理済みにする $(child).attr("data-finished", "true"); } } /* createSubMenu @param child 処理コンテンツ @description 指定されたコンテンツに同階層のサブメニューを作成します。 */ function createSubMenu(child) { //項目が2つ以上あればメニューを作る var parentElement = $(child).parent(); var countentsCount = $(parentElement).children("div[data-workid]").length; if(countentsCount > 1) { //メニュー要素を作成 var divElement = $("<div>"); var ulElement = $("<ul>"); ulElement.addClass("contents_menu"); //それぞれの要素の先頭に選択メニューを追加 $(parentElement).children("div[data-workid]").each(function(i, contentsElement) { if($(contentsElement).attr("data-title")) { //選択肢を作る var liElement = $("<li>"); var spanElement = $("<span>"); $(spanElement).html($(contentsElement).attr("data-title")); //表示中のものは強調表示 if(contentsElement == child) { //表示中のコンテンツ $(spanElement).addClass("current_contents"); } else { $(liElement).on("click", function() { //現在のコンテンツを非表示にする $(child).hide(); //対象コンテンツが処理済みなら表示する if($(contentsElement).attr("data-finished")) { //表示 $(contentsElement).show(); } else { //作成 var contentsIndex = parseInt($(contentsElement).attr("data-contents-count")); //データタイプを取得 var dataType = $(contentsElement).attr("data-type"); switch(dataType) { case "table": setTableElement(contentsElement, contentsIndex); break; case "dom": setJartyElement(contentsElement, contentsIndex); break; default: break; } } }); } //追加 $(liElement).append(spanElement); $(ulElement).append(liElement); } }); //要素を追加 $(divElement).append(ulElement); $(child).prepend(divElement); } } /* alertArrayData @param arrayObj 二次元配列 @description 指定された二次元配列を表示します。 */ function alertArrayData(arrayObj) { //メイン処理 var displayArray = ""; //配列を走査して文字列を成形 for(var i = 0; i < arrayObj.length; i++) { displayArray += "[" + arrayObj[i].toString() + "]\n"; } //表示 alert(displayArray); } // Get a parameter value in URL (e.g. ?paramString=value ) function getParameterFromURL( paramString ) { var value = ""; var topWindow = top.window.location.search; if( topWindow ){ var q = decodeURIComponent(topWindow.substring(1,topWindow.length)).split("&"); for ( var i = 0; i < q.length; i++ ){ var r = q[i].split("="); if ( r[0] == paramString ) value = r[1]; } } return value; } // get the last name of the string separated with # and / function getLastName( string ) { string = decodeURIComponent(string); var sharp = string.split("#"); var slash = sharp[sharp.length-1].split("/"); var lastName = slash[slash.length-1]; return lastName; } // shortening URL e.g. http://.../123.jpg function shortenURL( url ) { url = decodeURIComponent(url); var slash = url.split("/"); var lastName = slash[slash.length-1]; return url.split(":")[0]+"://.../"+lastName; } /* formatNumber @param num 数値 @param format フォーマット文字列 @return string 成形文字列 @description 指定された数値をフォーマット文字列に沿って成形します。 */ function formatNumber(num, format) { //引数処理 //デフォルトフォーマットを作る if(!format) { format = "0"; } if(format == "none") { format = "0"; } //メイン処理 format = format.replace(/"/g, "").replace(/\'/g, "").replace(/\"/g, "").replace(/\\/g, ""); var numMatch = false; format = format.replace(/\.0+/g, function(match) { if(match.length > 0) { var temp = num.toFixed(match.length - 1); if(temp.indexOf(".") > 0) { temp = temp.substr(temp.indexOf(".")); } return temp; } }); format = format.replace(/#,##0/g, function(match) { numMatch = true; return Math.floor(num).toString().replace( /(\d)(?=(\d\d\d)+(?!\d))/g, '$1,'); }); if(!numMatch) { format = format.replace(/0+/g, function(match, offset) { if(match.length > 0) { if(format.indexOf(".") > 0) { if(format.indexOf(".") > offset) { numMatch = true; return (match + Math.floor(num).toString()).slice(-1 * Math.max(match.length, Math.floor(num).toString().length)); } } else { numMatch = true; return (match + Math.floor(num).toString()).slice(-1 * Math.max(match.length, Math.floor(num).toString().length)); } } return match; }); } //関数終了 //返り値: 成形文字列 return format; } /* formatDate @param date 日付 @param format フォーマット文字列 @return string 成形文字列 @description 指定された日付をフォーマット文字列に沿って成形します。 */ function formatDate(date, format) { //引数処理 //デフォルトフォーマットを指定 if(!format) { format = "YYYY-MM-DD hh:mm:ss.SSS"; } //メイン処理 format = format.replace(/"/g, "").replace(/\'/g, "").replace(/\"/g, "").replace(/\\/g, ""); //Excel定型フォーマットを置換 var templateFormat = {"Short Time":"h:m", "General Date":"YYYY/MM/DD hh:mm:ss", "Long Date":"YYYY年M月D日"}; if(format in templateFormat) { format = templateFormat[format]; } //和暦指定を置換 if(format.search(/^\[JPN\]/) >= 0) { format = format.replace(/^\[JPN\]/, ""); format = format.replace(/y/g, "e"); } //mがhの直後またはsの直前なら「'」に置換 format = format.replace(/h([^YMDSdms]*)mm/g, "h$1\'\'").replace(/mm([^YMDSdhm]*)s/g, "\'\'$1s").replace(/h([^YMDSdms]*)m/g, "h$1\'").replace(/m([^YMDSdhm]*)s/g, "\'$1s"); //「'」をmに置換 format = format.replace(/m/g, "M").replace(/\'/g, "m"); //フォーマットに準拠して置換 format = format.replace(/YYYY/g, date.getUTCFullYear()); format = format.replace(/MM/g, ('0' + (date.getUTCMonth() + 1)).slice(-2)); format = format.replace(/DD/g, ('0' + date.getUTCDate()).slice(-2)); format = format.replace(/dd/g, ('0' + date.getUTCDate()).slice(-2)); format = format.replace(/M/g, (date.getUTCMonth() + 1)); format = format.replace(/D/g, (date.getUTCDate())); format = format.replace(/d/g, (date.getUTCDate())); format = format.replace(/hh/g, ('0' + date.getUTCHours()).slice(-2)); format = format.replace(/mm/g, ('0' + date.getUTCMinutes()).slice(-2)); format = format.replace(/ss/g, ('0' + date.getUTCSeconds()).slice(-2)); format = format.replace(/h/g, (date.getUTCHours())); format = format.replace(/m/g, (date.getUTCMinutes())); format = format.replace(/s/g, (date.getUTCSeconds())); if(format.match(/S/g)) { var milliSeconds = ('00' + date.getUTCMilliseconds()).slice(-3); var length = format.match(/S/g).length; for (var i = 0; i < length; i++) { format = format.replace(/S/, milliSeconds.substring(i, i + 1)); } } if(format.match(/ggg/)) { var opt = {timeZone: "UTC", era:"long", year:"numeric", month:"numeric"}; var wareki = date.toLocaleDateString("ja-JP-u-ca-japanese", opt); wareki = wareki.trim(); if(wareki.match(/^([^\d]+)\d/)) { wareki = wareki.match(/^([^\d]+)\d/)[1].replace(" ", ""); } else { wareki = wareki.slice(0, 4); } format = format.replace(/ggg/g, wareki); } if(format.match(/gg/)) { var opt = {timeZone: "UTC", era:"short", year:"numeric", month:"numeric"}; var wareki = date.toLocaleDateString("ja-JP-u-ca-japanese", opt); wareki = wareki.trim(); format = format.replace(/gg/g, wareki.slice(0,2)); } if(format.match(/g/)) { var opt = {timeZone:"UTC", era:"narrow", year:"2-digit", month:"short"}; var wareki = date.toLocaleDateString("ja-JP-u-ca-japanese", opt); wareki = wareki.slice(0, 2); if(wareki.match(/^[^\x01-\x7E\xA1-\xDF]+$/)) { format = format.replace(/g/g, wareki); } else { format = format.replace(/g/g, wareki[0]); } } if(format.match(/ee/)) { var opt = {timeZone: "UTC", year:"2-digit"}; var wareki = date.toLocaleDateString("ja-JP-u-ca-japanese", opt); wareki = wareki.trim(); if(wareki.match(/^[^\d]+(\d+)[^\d]/)) { wareki = wareki.match(/^[^\d]+(\d+)[^\d]/)[1]; format = format.replace(/ee/g, wareki); } } if(format.match(/e/)) { var opt = {timeZone: "UTC", year:"numeric"}; var wareki = date.toLocaleDateString("ja-JP-u-ca-japanese", opt); wareki = wareki.trim(); if(wareki.match(/^[^\d]+(\d+)[^\d]/)) { wareki = wareki.match(/^[^\d]+(\d+)[^\d]/)[1]; format = format.replace(/e/g, wareki); } else if(wareki.match(/^(\d+)[^\d]/)) { wareki = wareki.match(/^(\d+)[^\d]/)[1]; format = format.replace(/e/g, wareki); } } //関数終了 //返り値: 成形文字列 return format; } function toBoolean(data) { return data.toLowerCase() === 'true'; }
span.highlight {color: red;} span.propertyName {color: gray;} span.subject { color: blue; } span.object{ color: black; } body { background: white; } a, a span { text-decoration: underline; } a:hover, a span:hover { text-decoration: none; } #statistics_contents .active_contents { display: block; } #statistics_menu .active_contents { background-color: skyblue; } #statistics_contents > div { display: none; } #result { display: flex; width:100%; margin: 0px; padding: 0px; } #statistics_menu { clear: both; min-width: 200px } #statistics_menu .pc { flex: 0 0 200px; width: 200px; } #statistics_menu .mobile { width: 100%; display: block; position: fixed; top: 0px; left: 0px; z-index: 999; } .pc ul { display: block; } .mobile ul { display: none; position: relative; padding: 0.25em 1em; margin: 2em 0; top: 0; background: #efefef; width: 100%; } .mobile ul:before, .mobile ul:after{ position: absolute; top: 0; content:''; width: 10px; height: 100%; display: inline-block; box-sizing: border-box; } .mobile ul:before{ border-left: dotted 2px #15adc1; border-top: dotted 2px #15adc1; border-bottom: dotted 2px #15adc1; left: 0; } .mobile ul:after{ border-top: dotted 2px #15adc1; border-right: dotted 2px #15adc1; border-bottom: dotted 2px #15adc1; right: 0; } .mobile_icon { display: none; position: relative; background-color: transparent; cursor: pointer; margin: 0 auto 0 0; height: 60px; width: 60px; } .mobile .mobile_icon { display: block; } .mobile_icon span { position: absolute; left: 15px; width: 30px; height: 4px; background-color: black; border-radius: 8px; transition: ease 0.75s; } .mobile_icon span:nth-of-type(1) { top: 16px; } .mobile_icon span:nth-of-type(2) { top: 28px; } .mobile_icon span:nth-of-type(3) { bottom: 16px; } .icon_close span:nth-of-type(1) { transform: rotate(45deg); top: 28px; } .icon_close span:nth-of-type(2) { opacity: 0; } .icon_close span:nth-of-type(3) { transform: rotate(-45deg); top: 28px; } #statistics_contents { padding: 10px; } #statistics_contents .pc { width: calc(100% - 200px); } #statistics_contents .mobile { width: 100%; } #statistics_list { list-style: none; } #statistics_list li { width: 100%; } #statistics_list li:hover { text-decoration: underline; cursor: pointer; } .clear { clear: both; } .right { text-align: right; } .contents_menu { list-style: none; display:flex; flex-wrap: wrap; justify-content: flex-start; border:1px solid #acf; border-radius:10px; background:#eff; } .contents_menu li { min-width: 150px; display:flex; cursor: pointer; padding: 3px; border-radius:10px 10px 10px 10px; } .contents_menu li:hover { background:#def; } .contents_menu li span { display: block; width: 100%; text-align: center; } .current_contents { text-decoration: underline; font-weight: bold; } .loader{ margin:200px auto; } h1{ font-family: 'Actor', sans-serif; color:#FFF; font-size:16px; letter-spacing:1px; font-weight:200; text-align:center; } .loader span { width:16px; height:16px; border-radius:50%; display:inline-block; position:absolute; left:50%; margin-left:-10px; -webkit-animation:3s infinite linear; -moz-animation:3s infinite linear; -o-animation:3s infinite linear; } .loader span:nth-child(2){ background:#E84C3D; -webkit-animation:kiri 1.2s infinite linear; -moz-animation:kiri 1.2s infinite linear; -o-animation:kiri 1.2s infinite linear; } .loader span:nth-child(3){ background:#F1C40F; z-index:100; } .loader span:nth-child(4){ background:#2FCC71; -webkit-animation:kanan 1.2s infinite linear; -moz-animation:kanan 1.2s infinite linear; -o-animation:kanan 1.2s infinite linear; } @-webkit-keyframes kanan { 0% {-webkit-transform:translateX(20px); } 50%{-webkit-transform:translateX(-20px); } 100%{-webkit-transform:translateX(20px); z-index:200; } } @-moz-keyframes kanan { 0% {-moz-transform:translateX(20px); } 50%{-moz-transform:translateX(-20px); } 100%{-moz-transform:translateX(20px); z-index:200; } } @-o-keyframes kanan { 0% {-o-transform:translateX(20px); } 50%{-o-transform:translateX(-20px); } 100%{-o-transform:translateX(20px); z-index:200; } } @-webkit-keyframes kiri { 0% {-webkit-transform:translateX(-20px); z-index:200; } 50%{-webkit-transform:translateX(20px); } 100%{-webkit-transform:translateX(-20px); } } @-moz-keyframes kiri { 0% {-moz-transform:translateX(-20px); z-index:200; } 50%{-moz-transform:translateX(20px); } 100%{-moz-transform:translateX(-20px); } } @-o-keyframes kiri { 0% {-o-transform:translateX(-20px); z-index:200; } 50%{-o-transform:translateX(20px); } 100%{-o-transform:translateX(-20px); } } @media (max-width: 960px) { //メニューを非表示 #statistics_menu { display: none; } }
<div id="result"> <div id="statistics_menu"> <div class="mobile_icon"> <span></span> <span></span> <span></span> </div> <ul id="statistics_list"> </ul> </div> <div id="statistics_contents"> <div class="loader"> <h1>読込中...</h1> <span></span> <span></span> <span></span> </div> <div class="active_contents"> <p>メニューから閲覧したい表を選択してください。</p> </div> <!-- 表01_大口町民憲章 --> <div data-title="大口町民憲章"> <div data-workid="rdf1s9954i" data-url="http://linkdata.org/api/1/rdf1s9954i/233617_statistics01_rdf.json" data-type="dom"> <div> <p>わたくしたちは、恵まれた自然と輝く伝統を受け継ぎ、豊かで活気ある住みよい郷土「大口」をつくるため、自治の結束として、この憲章を掲げます。</p> <p style="text-align: right">昭和57年9月10日制定</p> <dl> {foreach from=$json item=data} <dt data-bindcol="件名" data-bindname="title" style="text-decoration:underline;">1.{$data.title}</dt> <dd data-bindcol="内容" data-bindname="contents">{$data.contents}</dd> {/foreach} </dl> </div> </div> </div> <!-- 表02_町の沿革、位置 --> <div data-title="町の沿革、位置"> <div data-workid="rdf1s9955i" data-url="http://linkdata.org/api/1/rdf1s9955i/233617_statistics02_rdf.json" data-type="dom"> <dl> {foreach from=$json item=data} <dt data-bindcol="件名" data-bindname="title" style="text-decoration:underline;font-weight:bold;">{$data.title}</dt> <dd data-bindcol="内容" data-bindname="contents">{$data.contents}</dd> {/foreach} </dl> </div> </div> <!-- 表03_大口町の気象 --> <div data-title="大口町の気象"> <div data-workid="rdf1s9956i" data-type="table" data-url="http://linkdata.org/api/1/rdf1s9956i/233617_statistics03_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true" data-display-button="true"> <table class="cell-border"> <thead> <tr> <th rowspan="2" data-bindcol="年度" data-dataformat="YYYY">年度</th> <th colspan="4">天気(日数)</th> <th rowspan="2" data-bindcol="雨量" data-render-number="[',','.',0,'','']">雨量(mm)</th> <th colspan="3">気温(度)</th> <th rowspan="2" data-bindcol="平均湿度">平均湿度(%)</th> </tr> <tr> <th data-bindcol="天気日数_晴">晴</th> <th data-bindcol="天気日数_曇">曇</th> <th data-bindcol="天気日数_雨">雨</th> <th data-bindcol="天気日数_雪">雪</th> <th data-bindcol="気温_平均">平均</th> <th data-bindcol="気温_最高">最高</th> <th data-bindcol="気温_最低">最低</th> </tr> </thead> </table> </div> </div> <!-- 表04_大口町のあゆみ --> <div data-title="大口町のあゆみ"> <div data-workid="rdf1s9957i" data-type="table" data-url="http://linkdata.org/api/1/rdf1s9957i/233617_statistics04_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <table class="cell-border"> <thead> <tr> <th data-bindcol="年度_西暦" data-dataformat="YYYY" data-grouping="true">年度</th> <th data-bindcol="内容">内容</th> </tr> </thead> </table> </div> </div> <!-- 表05_町の人口 --> <div data-title="町の人口"> <div data-workid="rdf1s9958i" data-type="table" data-url="http://linkdata.org/api/1/rdf1s9958i/233617_statistics05_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true" data-display-button="true"> <table class="cell-border"> <thead> <tr> <th rowspan="2" data-bindcol="年度" data-dataformat="YYYY">年度</th> <th colspan="4">人口(人)</th> <th colspan="2">世帯</th> </tr> <tr> <th data-bindcol="人口_男性" data-render-number="[',','.',0,'','']">男性</td> <th data-bindcol="人口_女性" data-render-number="[',','.',0,'','']">女性</td> <th data-bindcol="人口_合計" data-render-number="[',','.',0,'','']">合計</td> <th data-bindcol="人口_前年比" data-render-number="[',','.',0,'','']">前年比</td> <th data-bindcol="世帯数" data-render-number="[',','.',0,'','']">世帯数</td> <th data-bindcol="世帯数_前年比" data-render-number="[',','.',0,'','']">前年比</td> </tr> </thead> </table> </div> </div> <!-- 表06_外国人登録、戸籍関係届出件数 --> <div data-title="外国人登録、戸籍関係届出件数"> <div data-title="外国人登録者数" data-workid="rdf1s9984i" data-type="table" data-url="http://linkdata.org/api/1/rdf1s9984i/233617_statistics06a_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <table class="cell-border"> <thead> <tr> <th data-bindcol="年度" data-dataformat="YYYY">年度</th> <th data-bindcol="総数" data-render-number="[',','.',0,'','']">総数</th> <th data-bindcol="ブラジル" data-render-number="[',','.',0,'','']">ブラジル</th> <th data-bindcol="中国" data-render-number="[',','.',0,'','']">中国</th> <th data-bindcol="韓国" data-render-number="[',','.',0,'','']">韓国</th> <th data-bindcol="朝鮮" data-render-number="[',','.',0,'','']">朝鮮</th> <th data-bindcol="ペルー" data-render-number="[',','.',0,'','']">ペルー</th> <th data-bindcol="フィリピン" data-render-number="[',','.',0,'','']">フィリピン</th> <th data-bindcol="他" data-render-number="[',','.',0,'','']">その他</th> </tr> </thead> </table> </div> <div data-title="中長期在留者数" data-workid="rdf1s9960i" data-type="table" data-url="http://linkdata.org/api/1/rdf1s9960i/233617_statistics06b_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <table class="cell-border"> <thead> <tr> <th data-bindcol="年" data-dataformat="YYYY">年</th> <th data-bindcol="総数" data-render-number="[',','.',0,'','']">総数</th> <th data-bindcol="ブラジル" data-render-number="[',','.',0,'','']">ブラジル</th> <th data-bindcol="中国" data-render-number="[',','.',0,'','']">中国</th> <th data-bindcol="韓国" data-render-number="[',','.',0,'','']">韓国</th> <th data-bindcol="朝鮮" data-render-number="[',','.',0,'','']">朝鮮</th> <th data-bindcol="ペルー" data-render-number="[',','.',0,'','']">ペルー</th> <th data-bindcol="フィリピン" data-render-number="[',','.',0,'','']">フィリピン</th> <th data-bindcol="ベトナム" data-render-number="[',','.',0,'','']">ベトナム</th> <th data-bindcol="他" data-render-number="[',','.',0,'','']">その他</th> </tr> </thead> </table> <p>平成24年7月から在留管理制度の変更のため、外国人登録は中長期在留者制度へ変わりました。 </p> </div> <div data-title="戸籍関係届出件数" data-workid="rdf1s9961i" data-type="table" data-url="http://linkdata.org/api/1/rdf1s9961i/233617_statistics06c_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <table class="cell-border"> <thead> <tr> <th data-bindcol="年度_西暦" data-dataformat="YYYY">年度</th> <th data-bindcol="出生" data-render-number="[',','.',0,'','']">出生</th> <th data-bindcol="死亡" data-render-number="[',','.',0,'','']">死亡</th> <th data-bindcol="婚姻" data-render-number="[',','.',0,'','']">婚姻</th> <th data-bindcol="離婚" data-render-number="[',','.',0,'','']">離婚</th> </tr> </thead> </table> </div> </div> <!-- 表07-08_年齢別構成人口 --> <div data-title="年齢別構成人口"> <div data-workid="rdf1s9985i" data-type="table" data-url="http://linkdata.org/api/1/rdf1s9985i/233617_statistics07_08_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <table class="cell-border"> <thead> <tr> <th rowspan="2" data-bindcol="年度" data-dataformat="YYYY">年度</th> <th colspan="3">総数</th> <th colspan="3">0-4歳</th> <th colspan="3">5-9歳</th> <th colspan="3">10-14歳</th> <th colspan="3">15-19歳</th> <th colspan="3">20-24歳</th> <th colspan="3">25-29歳</th> <th colspan="3">30-34歳</th> <th colspan="3">35-39歳</th> <th colspan="3">40-44歳</th> <th colspan="3">45-49歳</th> <th colspan="3">50-54歳</th> <th colspan="3">55-59歳</th> <th colspan="3">60-64歳</th> <th colspan="3">65-69歳</th> <th colspan="3">70-74歳</th> <th colspan="3">75-79歳</th> <th colspan="3">80-84歳</th> <th colspan="3">85歳以上</th> <th colspan="3">85-89歳[再掲]</th> <th colspan="3">90-99歳[再掲]</th> <th colspan="3">100歳以上[再掲]</th> </tr> <tr> <th data-bindcol="総数_男" data-bindname="male" data-render-number="[',','.',0,'','']">男</th> <th data-bindcol="総数_女" data-bindname="female" data-render-number="[',','.',0,'','']">女</th> <th data-bindcol="総数" data-expression="{$male}+{$female}" data-render-number="[',','.',0,'','']">計</th> <th data-bindcol="0-4歳_男" data-bindname="male0" data-render-number="[',','.',0,'','']">男</th> <th data-bindcol="0-4歳_女" data-bindname="female0" data-render-number="[',','.',0,'','']">女</th> <th data-bindcol="0-4歳_計" data-expression="{$male0}+{$female0}" data-render-number="[',','.',0,'','']">計</th> <th data-bindcol="5-9歳_男" data-bindname="male5" data-render-number="[',','.',0,'','']">男</th> <th data-bindcol="5-9歳_女" data-bindname="female5" data-render-number="[',','.',0,'','']">女</th> <th data-bindcol="5-9歳_計" data-expression="{$male5}+{$female5}" data-render-number="[',','.',0,'','']">計</th> <th data-bindcol="10-14歳_男" data-bindname="male10" data-render-number="[',','.',0,'','']">男</th> <th data-bindcol="10-14歳_女" data-bindname="female10" data-render-number="[',','.',0,'','']">女</th> <th data-bindcol="10-14歳_計" data-expression="{$male10}+{$female10}" data-render-number="[',','.',0,'','']">計</th> <th data-bindcol="15-19歳_男" data-bindname="male15" data-render-number="[',','.',0,'','']">男</th> <th data-bindcol="15-19歳_女" data-bindname="female15" data-render-number="[',','.',0,'','']">女</th> <th data-bindcol="15-19歳_計" data-expression="{$male15}+{$female15}" data-render-number="[',','.',0,'','']">計</th> <th data-bindcol="20-24歳_男" data-bindname="male20" data-render-number="[',','.',0,'','']">男</th> <th data-bindcol="20-24歳_女" data-bindname="female20" data-render-number="[',','.',0,'','']">女</th> <th data-bindcol="20-24歳_計" data-expression="{$male20}+{$female20}" data-render-number="[',','.',0,'','']">計</th> <th data-bindcol="25-29歳_男" data-bindname="male25" data-render-number="[',','.',0,'','']">男</th> <th data-bindcol="25-29歳_女" data-bindname="female25" data-render-number="[',','.',0,'','']">女</th> <th data-bindcol="25-29歳_計" data-expression="{$male25}+{$female25}" data-render-number="[',','.',0,'','']">計</th> <th data-bindcol="30-34歳_男" data-bindname="male30" data-render-number="[',','.',0,'','']">男</th> <th data-bindcol="30-34歳_女" data-bindname="female30" data-render-number="[',','.',0,'','']">女</th> <th data-bindcol="30-34歳_計" data-expression="{$male30}+{$female30}" data-render-number="[',','.',0,'','']">計</th> <th data-bindcol="35-39歳_男" data-bindname="male35" data-render-number="[',','.',0,'','']">男</th> <th data-bindcol="35-39歳_女" data-bindname="female35" data-render-number="[',','.',0,'','']">女</th> <th data-bindcol="35-39歳_計" data-expression="{$male35}+{$female35}" data-render-number="[',','.',0,'','']">計</th> <th data-bindcol="40-44歳_男" data-bindname="male40" data-render-number="[',','.',0,'','']">男</th> <th data-bindcol="40-44歳_女" data-bindname="female40" data-render-number="[',','.',0,'','']">女</th> <th data-bindcol="40-44歳_計" data-expression="{$male40}+{$female40}" data-render-number="[',','.',0,'','']">計</th> <th data-bindcol="45-49歳_男" data-bindname="male45" data-render-number="[',','.',0,'','']">男</th> <th data-bindcol="45-49歳_女" data-bindname="female45" data-render-number="[',','.',0,'','']">女</th> <th data-bindcol="45-49歳_計" data-expression="{$male45}+{$female45}" data-render-number="[',','.',0,'','']">計</th> <th data-bindcol="50-54歳_男" data-bindname="male50" data-render-number="[',','.',0,'','']">男</th> <th data-bindcol="50-54歳_女" data-bindname="female50" data-render-number="[',','.',0,'','']">女</th> <th data-bindcol="50-54歳_計" data-expression="{$male50}+{$female50}" data-render-number="[',','.',0,'','']">計</th> <th data-bindcol="55-59歳_男" data-bindname="male55" data-render-number="[',','.',0,'','']">男</th> <th data-bindcol="55-59歳_女" data-bindname="female55" data-render-number="[',','.',0,'','']">女</th> <th data-bindcol="55-59歳_計" data-expression="{$male55}+{$female55}" data-render-number="[',','.',0,'','']">計</th> <th data-bindcol="60-64歳_男" data-bindname="male60" data-render-number="[',','.',0,'','']">男</th> <th data-bindcol="60-64歳_女" data-bindname="female60" data-render-number="[',','.',0,'','']">女</th> <th data-bindcol="60-64歳_計" data-expression="{$male60}+{$female60}" data-render-number="[',','.',0,'','']">計</th> <th data-bindcol="65-69歳_男" data-bindname="male65" data-render-number="[',','.',0,'','']">男</th> <th data-bindcol="65-69歳_女" data-bindname="female65" data-render-number="[',','.',0,'','']">女</th> <th data-bindcol="65-69歳_計" data-expression="{$male65}+{$female65}" data-render-number="[',','.',0,'','']">計</th> <th data-bindcol="70-74歳_男" data-bindname="male70" data-render-number="[',','.',0,'','']">男</th> <th data-bindcol="70-74歳_女" data-bindname="female70" data-render-number="[',','.',0,'','']">女</th> <th data-bindcol="70-74歳_計" data-expression="{$male70}+{$female70}" data-render-number="[',','.',0,'','']">計</th> <th data-bindcol="75-79歳_男" data-bindname="male75" data-render-number="[',','.',0,'','']">男</th> <th data-bindcol="75-79歳_女" data-bindname="female75" data-render-number="[',','.',0,'','']">女</th> <th data-bindcol="75-79歳_計" data-expression="{$male75}+{$female75}" data-render-number="[',','.',0,'','']">計</th> <th data-bindcol="80-84歳_男" data-bindname="male80" data-render-number="[',','.',0,'','']">男</th> <th data-bindcol="80-84歳_女" data-bindname="female80" data-render-number="[',','.',0,'','']">女</th> <th data-bindcol="80-84歳_計" data-expression="{$male80}+{$female80}" data-render-number="[',','.',0,'','']">計</th> <th data-bindcol="85歳以上_男" data-bindname="male85over" data-render-number="[',','.',0,'','']">男</th> <th data-bindcol="85歳以上_女" data-bindname="female85over" data-render-number="[',','.',0,'','']">女</th> <th data-bindcol="85歳以上_計" data-expression="{$male85over}+{$female85over}" data-render-number="[',','.',0,'','']">計</th> <th data-bindcol="85-89歳_男" data-bindname="male85" data-render-number="[',','.',0,'','']">男</th> <th data-bindcol="85-89歳_女" data-bindname="female85" data-render-number="[',','.',0,'','']">女</th> <th data-bindcol="85-89歳_計" data-expression="{$male85}+{$female85}" data-render-number="[',','.',0,'','']">計</th> <th data-bindcol="90-99歳_男" data-bindname="male90" data-render-number="[',','.',0,'','']">男</th> <th data-bindcol="90-99歳_女" data-bindname="female90" data-render-number="[',','.',0,'','']">女</th> <th data-bindcol="90-99歳_計" data-expression="{$male90}+{$female90}" data-render-number="[',','.',0,'','']">計</th> <th data-bindcol="100歳以上_男" data-bindname="male100over" data-render-number="[',','.',0,'','']">男</th> <th data-bindcol="100歳以上_女" data-bindname="female100over" data-render-number="[',','.',0,'','']">女</th> <th data-bindcol="100歳以上_計" data-expression="{$male100over}+{$female100over}" data-render-number="[',','.',0,'','']">計</th> </tr> </thead> </table> </div> </div> <!-- 表09_国勢調査人口、年齢階層別人口 --> <div data-title="国勢調査人口、年齢階層別人口"> <div data-title="国勢調査人口" data-workid="rdf1s9986i" data-type="table" data-url="http://linkdata.org/api/1/rdf1s9986i/233617_statistics09a_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <table class="cell-border"> <thead> <tr> <th rowspan="2" data-bindcol="年" data-dataformat="YYYY">年</th> <th colspan="3">人口</th> <th rowspan="2" data-bindcol="人口密度">人口密度</th> </tr> <tr> <th data-bindcol="人口_男性" data-bindname="male" data-render-number="[',','.',0,'','']">男性</th> <th data-bindcol="人口_女性" data-bindname="female" data-render-number="[',','.',0,'','']">女性</th> <th data-bindcol="人口_総数" data-expression="{$male} + {$female}" data-render-number="[',','.',0,'','']">総数</th> </tr> </thead> </table> <p>各年10月1日現在(国勢調査 指定統計第1号)</p> </div> <div data-title="年齢階層別人口" data-workid="rdf1s9987i" data-type="table" data-url="http://linkdata.org/api/1/rdf1s9987i/233617_statistics09b_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <table class="cell-border"> <thead> <tr> <th rowspan="2" data-bindcol="年" data-dataformat="YYYY">年</th> <th colspan="2">15歳未満</th> <th colspan="2">15-64歳</th> <th colspan="2">65歳以上</th> <th colspan="2">40歳以上[再掲]</th> <th colspan="2">75歳以上[再掲]</th> <th colspan="2">85歳以上[再掲]</th> <th rowspan="2" data-bindcol="人口総数" data-bindname="total" data-render-number="[',','.',0,'','']">人口総数</th> <th colspan="2">高齢化率(65歳以上)</th> </tr> <tr> <th data-bindcol="0-14歳人口" data-bindname="jinko0" data-render-number="[',','.',0,'','']">人口</th> <th data-bindcol="0-14歳人口比率" data-expression="{$jinko0}/{$total}*100" data-render-number="[',','.',1,'','%']">比率</th> <th data-bindcol="15-64歳人口" data-bindname="jinko15" data-render-number="[',','.',0,'','']">人口</th> <th data-bindcol="15-64歳人口比率" data-expression="{$jinko15}/{$total}*100" data-render-number="[',','.',1,'','%']">比率</th> <th data-bindcol="65歳以上人口" data-bindname="jinko65" data-render-number="[',','.',0,'','']">人口</th> <th data-bindcol="65歳以上人口比率" data-expression="{$jinko65}/{$total}*100" data-render-number="[',','.',1,'','%']">比率</th> <th data-bindcol="40歳以上人口" data-bindname="jinko40" data-render-number="[',','.',0,'','']">人口</th> <th data-bindcol="40歳以上人口比率" data-expression="{$jinko40}/{$total}*100" data-render-number="[',','.',1,'','%']">比率</th> <th data-bindcol="75歳以上人口" data-bindname="jinko75" data-render-number="[',','.',0,'','']">人口</th> <th data-bindcol="75歳以上人口比率" data-expression="{$jinko75}/{$total}*100" data-render-number="[',','.',1,'','%']">比率</th> <th data-bindcol="85歳以上人口" data-bindname="jinko85" data-render-number="[',','.',0,'','']">人口</th> <th data-bindcol="85歳以上人口比率" data-expression="{$jinko85}/{$total}*100" data-render-number="[',','.',1,'','%']">比率</th> <th data-bindcol="全国65歳以上比率" data-bindname="japan" data-expression="{$japan}*100" data-render-number="[',','.',1,'','%']">全国</th> <th data-bindcol="愛知県65歳以上比率" data-bindname="aichi" data-expression="{$aichi}*100" data-render-number="[',','.',1,'','%']">愛知県</th> </tr> </thead> </table> <p>各年10月1日現在(国勢調査 指定統計第1号)</p> </div> </div> <!-- 表10_流入流出人口 --> <div data-title="流入流出人口"> <div data-workid="rdf1s9991i" data-type="table" data-url="http://linkdata.org/api/1/rdf1s9991i/233617_statistics10_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <table class="cell-border"> <thead> <tr> <th data-bindcol="年" data-dataformat="YYYY">年</th> <th data-bindcol="夜間人口" data-bindname="night" data-render-number="[',','.',0,'','']">夜間人口</th> <th data-bindcol="昼間人口" data-bindname="daynight" data-render-number="[',','.',0,'','']">昼間人口</th> <th data-bindcol="昼間人口比" data-expression="{$daynight}/{$night}*100" data-render-number="[',','.',1,'','%']">昼間人口比</th> <th data-bindcol="流出人口" data-bindname="export" data-render-number="[',','.',0,'','']">流出人口</th> <th data-bindcol="流入人口" data-bindname="import" data-render-number="[',','.',0,'','']">流入人口</th> <th data-bindcol="超過人口" data-expression="{$import}-{$export}" data-render-number="[',','.',0,'','']">超過人口</th> </tr> </thead> </table> <p>各年10月1日現在(国勢調査 指定統計第1号)</p> </div> </div> <!-- 表11_世帯の家族類型別一般世帯数 --> <div data-title="世帯の家族類型別一般世帯数"> <div data-workid="rdf1s9992i" data-type="table" data-url="http://linkdata.org/api/1/rdf1s9992i/233617_statistics11_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <table class="cell-border"> <thead> <tr> <th data-bindcol="年" data-dataformat="YYYY">年</th> <th data-bindcol="総数" data-render-number="[',','.',0,'','']">総数</th> <th data-bindcol="夫婦のみ" data-render-number="[',','.',0,'','']">夫婦のみ</th> <th data-bindcol="夫婦と子供" data-render-number="[',','.',0,'','']">夫婦と子供</th> <th data-bindcol="男親と子供" data-render-number="[',','.',0,'','']">男親と子供</th> <th data-bindcol="女親と子供" data-render-number="[',','.',0,'','']">女親と子供</th> <th data-bindcol="夫婦と親" data-render-number="[',','.',0,'','']">夫婦と親</th> <th data-bindcol="3世代以上" data-render-number="[',','.',0,'','']">3世代以上</th> <th data-bindcol="その他親族" data-render-number="[',','.',0,'','']">その他親族</th> <th data-bindcol="非親族" data-render-number="[',','.',0,'','']">非親族</th> <th data-bindcol="単独世帯" data-render-number="[',','.',0,'','']">単独世帯</th> </tr> </thead> </table> <p>各年10月1日現在(国勢調査 指定統計第1号)</p> </div> </div> <!-- 表12-13_一般会計歳入決算額 --> <div data-title="一般会計歳入決算額"> <div data-workid="rdf1s9993i" data-type="table" data-url="http://linkdata.org/api/1/rdf1s9993i/233617_statistics12_13_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <p class="right">単位:千円</p> <table class="cell-border"> <thead> <tr> <th rowspan="2" data-bindcol="年度" data-dataformat="YYYY">年度</th> <th colspan="2">町税</th> <th colspan="2">地方譲与税</th> <th colspan="2">利子割交付金</th> <th colspan="2">地方消費税交付金</th> <th colspan="2">特別地方消費税交付金</th> <th colspan="2">配当割交付金</th> <th colspan="2">株式譲渡所得割交付金</th> <th colspan="2">法人事業税交付金</th> <th colspan="2">自動車取得税交付金</th> <th colspan="2">環境性能割交付金</th> <th colspan="2">地方特例交付金</th> <th colspan="2">地方交付税</th> <th colspan="2">交通安全対策特別交付金</th> <th colspan="2">分担金及び負担金</th> <th colspan="2">使用料及び手数料</th> <th colspan="2">国庫支出金</th> <th colspan="2">県支出金</th> <th colspan="2">財産収入</th> <th colspan="2">寄附金</th> <th colspan="2">繰入金</th> <th colspan="2">繰越金</th> <th colspan="2">諸収入</th> <th colspan="2">町債</th> <th colspan="2">歳入計</th> </tr> <tr> <th data-bindcol="町税" data-bindname="tax" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="町税_率" data-expression="{$tax}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="地方譲与税" data-bindname="concession" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="地方譲与税_率" data-expression="{$concession}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="利子割交付金" data-bindname="interest" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="利子割交付金_率" data-expression="{$interest}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="地方消費税交付金" data-bindname="consumption" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="地方消費税交付金_率" data-expression="{$consumption}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="特別地方消費税交付金" data-bindname="ex_consumption" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="特別地方消費税交付金_率" data-expression="{$ex_consumption}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="配当割交付金" data-bindname="income" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="配当割交付金_率" data-expression="{$income}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="株式譲渡所得割交付金" data-bindname="capital" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="株式譲渡所得割交付金_率" data-expression="{$capital}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="法人事業税交付金" data-bindname="corporate" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="法人事業税交付金_率" data-expression="{$corporate}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="自動車取得税交付金" data-bindname="car" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="自動車取得税交付金_率" data-expression="{$car}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="環境性能割交付金" data-bindname="environment" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="環境性能割交付金_率" data-expression="{$environment}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="地方特例交付金" data-bindname="ex_allocation" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="地方特例交付金_率" data-expression="{$ex_allocation}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="地方交付税" data-bindname="allocation" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="地方交付税_率" data-expression="{$allocation}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="交通安全対策特別交付金" data-bindname="traffic" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="交通安全対策特別交付金_率" data-expression="{$traffic}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="分担金及び負担金" data-bindname="contributions" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="分担金及び負担金_率" data-expression="{$contributions}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="使用料及び手数料" data-bindname="usage" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="使用料及び手数料_率" data-expression="{$usage}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="国庫支出金" data-bindname="national" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="国庫支出金_率" data-expression="{$national}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="県支出金" data-bindname="prefectural" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="県支出金_率" data-expression="{$prefectural}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="財産収入" data-bindname="property" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="財産収入_率" data-expression="{$property}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="寄附金" data-bindname="donations" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="寄附金_率" data-expression="{$donations}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="繰入金" data-bindname="deposit" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="繰入金_率" data-expression="{$deposit}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="繰越金" data-bindname="carryforwards" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="繰越金_率" data-expression="{$carryforwards}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="諸収入" data-bindname="other" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="諸収入_率" data-expression="{$other}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="町債" data-bindname="bond" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="町債_率" data-expression="{$bond}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="歳入合計" data-bindname="total" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="歳入合計_率" data-expression="{$total}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> </tr> </thead> </table> </div> </div> <!-- 表14-15_目的別一般会計歳出決算額 --> <div data-title="目的別一般会計歳出決算額"> <div data-workid="rdf1s10017i" data-type="table" data-url="http://linkdata.org/api/1/rdf1s10017i/233617_statistics14_15_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <p class="right">単位:千円</p> <table class="cell-border"> <thead> <tr> <th rowspan="2" data-bindcol="年度" data-dataformat="YYYY">年度</th> <th colspan="2">議会費</th> <th colspan="2">総務費</th> <th colspan="2">民生費</th> <th colspan="2">衛生費</th> <th colspan="2">労働費</th> <th colspan="2">農業費</th> <th colspan="2">商工費</th> <th colspan="2">土木費</th> <th colspan="2">消防費</th> <th colspan="2">教育費</th> <th colspan="2">災害復旧費</th> <th colspan="2">公債費</th> <th colspan="2">諸支出金</th> <th colspan="2">歳出合計</th> </tr> <tr> <th data-bindcol="議会費" data-bindname="gikai" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="議会費_率" data-expression="{$gikai}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="総務費" data-bindname="soumu" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="総務費_率" data-expression="{$soumu}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="民生費" data-bindname="minsei" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="民生費_率" data-expression="{$minsei}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="衛生費" data-bindname="eisei" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="衛生費_率" data-expression="{$eisei}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="労働費" data-bindname="roudou" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="労働費_率" data-expression="{$roudou}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="農業費" data-bindname="nougyou" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="農業費_率" data-expression="{$nougyou}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="商工費" data-bindname="syoukou" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="商工費_率" data-expression="{$syoukou}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="土木費" data-bindname="doboku" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="土木費_率" data-expression="{$doboku}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="消防費" data-bindname="syoubou" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="消防費_率" data-expression="{$syoubou}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="教育費" data-bindname="kyouiku" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="教育費_率" data-expression="{$kyouiku}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="災害復旧費" data-bindname="saigai" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="災害復旧費_率" data-expression="{$saigai}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="公債費" data-bindname="kousai" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="公債費_率" data-expression="{$kousai}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="諸支出金" data-bindname="shisyutsu" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="諸支出金_率" data-expression="{$shisyutsu}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="歳出合計" data-bindname="total" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="歳出合計_率" data-expression="{$total}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> </tr> </thead> </table> </div> </div> <!-- 表16-17_性質別一般会計歳出決算額 --> <div data-title="性質別一般会計歳出決算額"> <div data-workid="rdf1s10018i" data-type="table" data-url="http://linkdata.org/api/1/rdf1s10018i/233617_statistics16_17_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <p class="right">単位:千円</p> <table class="cell-border"> <thead> <tr> <th rowspan="4" data-bindcol="年度" data-dataformat="YYYY">年度</th> <th colspan="14">義務的経費</th> <th colspan="12">投経資的費</th> <th colspan="20">その他経費</th> <th rowspan="3" colspan="2">歳出合計</th> </tr> <tr> <th colspan="4">人件費</th> <th rowspan="2" colspan="2">扶助費</th> <th colspan="6">公債費</th> <th rowspan="2" colspan="2">小計</th> <th colspan="6">普通建設事業費</th> <th rowspan="2" colspan="2">災害復旧事業費</th> <th rowspan="2" colspan="2">失業対策事業費</th> <th rowspan="2" colspan="2">小計</th> <th rowspan="2" colspan="2">物件費</th> <th rowspan="2" colspan="2">維持補修費</th> <th colspan="6">補助費等</th> <th rowspan="2" colspan="2">積立金</th> <th rowspan="2" colspan="2">投資及び出資金</th> <th rowspan="2" colspan="2">貸付金</th> <th rowspan="2" colspan="2">繰出金</th> <th rowspan="2" colspan="2">小計</th> </tr> <tr> <th colspan="2">計</th> <th colspan="2">うち職員給</th> <th colspan="2">元利償還金</th> <th colspan="2">一時借入金</th> <th colspan="2">計</th> <th colspan="2">補助事業費</th> <th colspan="2">単独事業費</th> <th colspan="2">計</th> <th colspan="2">一部事務組合</th> <th colspan="2">他</th> <th colspan="2">計</th> </tr> <tr> <th data-bindcol="義務的経費_人件費" data-bindname="jinken" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="義務的経費_人件費_率" data-expression="{$jinken}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="義務的経費_人件費_うち職員給" data-bindname="jinken_shokuin" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="義務的経費_人件費_うち職員給_率" data-expression="{$jinken_shokuin}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="義務的経費_扶助費" data-bindname="fujo" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="義務的経費_扶助費_率" data-expression="{$fujo}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="義務的経費_公債費_元利償還金" data-bindname="kousai_shokan" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="義務的経費_公債費_率" data-expression="{$kousai_shokan}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="義務的経費_公債費_一時借入金" data-bindname="kousai_shakunyu" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="義務的経費_公債費_一時借入金_率" data-expression="{$kousai_shakunyu}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="義務的経費_公債費_計" data-bindname="kousai_total" data-expression="{$kousai_shokan}+{$kousai_shakunyu}" data-expression-priority="3" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="義務的経費_公債費_計_率" data-expression="{$kousai_total}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="義務的経費_小計" data-bindname="gimu_total" data-expression="{$kousai_total}+{$fujo}+{$jinken}" data-expression-priority="2" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="義務的経費_小計_率" data-expression="{$gimu_total}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="投経資的費_普通建設事業費_補助事業費" data-bindname="kensetsu_hojo" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="投経資的費_普通建設事業費_補助事業費_率" data-expression="{$kensetsu_hojo}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="投経資的費_普通建設事業費_単独事業費" data-bindname="kensetsu_tandoku" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="投経資的費_普通建設事業費_単独事業費_率" data-expression="{$kensetsu_tandoku}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="投経資的費_普通建設事業費_計" data-bindname="kensetsu_total" data-expression="{$kensetsu_hojo}+{$kensetsu_tandoku}" data-expression-priority="3" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="投経資的費_普通建設事業費_計_率" data-expression="{$kensetsu_total}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="投経資的費_災害復旧事業費" data-bindname="saigai" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="投経資的費_災害復旧事業費_率" data-expression="{$saigai}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="投経資的費_失業対策事業費" data-bindname="shitsugyo" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="投経資的費_失業対策事業費_率" data-expression="{$shitsugyo}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="投経資的費_小計" data-bindname="touki_total" data-expression="{$kensetsu_total}+{$saigai}+{$shitsugyo}" data-expression-priority="2" data-expression-require="shitsugyo" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="投経資的費_小計_率" data-expression="{$touki_total}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="その他経費_物件費" data-bindname="bukken" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="その他経費_物件費_率" data-expression="{$bukken}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="その他経費_維持補修費" data-bindname="iji" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="その他経費_維持補修費_率" data-expression="{$iji}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="その他経費_補助費等_一部事務組合" data-bindname="hojo_ichikumi" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="その他経費_補助費等_一部事務組合_率" data-expression="{$hojo_ichikumi}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="その他経費_補助費等_他" data-bindname="hojo_hoka" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="その他経費_補助費等_他_率" data-expression="{$hojo_hoka}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="その他経費_補助費等_計" data-bindname="hojo_total" data-expression="{$hojo_ichikumi}+{$hojo_hoka}" data-expression-priority="3" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="その他経費_補助費等_計_率" data-expression="{$hojo_total}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="その他経費_積立金" data-bindname="tsumitate" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="その他経費_積立金_率" data-expression="{$tsumitate}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="その他経費_投資及び出資金" data-bindname="toushi" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="その他経費_投資及び出資金_率" data-expression="{$toushi}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="その他経費_貸付金" data-bindname="kashitsuke" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="その他経費_貸付金_率" data-expression="{$kashitsuke}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="その他経費_繰出金" data-bindname="kuridashi" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="その他経費_繰出金_率" data-expression="{$kuridashi}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="その他経費_小計" data-bindname="sonota_total" data-expression="{$bukken}+{$iji}+{$hojo_total}+{$tsumitate}+{$toushi}+{$kashitsuke}+{$kuridashi}" data-expression-priority="2" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="その他経費_小計_率" data-expression="{$sonota_total}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="歳出計" data-bindname="total" data-expression="{$gimu_total}+{$touki_total}+{$sonota_total}" data-expression-priority="1" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="歳出計_率" data-expression="{$total}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> </tr> </thead> </table> </div> </div> <!-- 表18_町税決算額 --> <div data-title="町税決算額"> <div data-workid="rdf1s10019i" data-type="table" data-url="http://linkdata.org/api/1/rdf1s10019i/233617_statistics18_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <p class="right">単位:千円</p> <table class="cell-border"> <thead> <tr> <th rowspan="2" data-bindcol="年度" data-dataformat="YYYY">年度</th> <th colspan="2">個人町民税</th> <th colspan="2">法人町民税</th> <th colspan="2">固定資産税</th> <th colspan="2">国有資産等所在市町村交付金</th> <th colspan="2">軽自動車税</th> <th colspan="2">環境性能割</th> <th colspan="2">町たばこ税</th> <th colspan="2">特別土地保有税</th> <th colspan="2">都市計画税</th> <th colspan="2">合計</th> </tr> <tr> <th data-bindcol="個人町民税" data-bindname="kojin" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="個人町民税_率" data-expression="{$kojin}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="法人町民税" data-bindname="houjin" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="法人町民税_率" data-expression="{$houjin}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="固定資産税" data-bindname="kotei" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="固定資産税_率" data-expression="{$kotei}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="国有資産等所在市町村交付金" data-bindname="kokuyu" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="国有資産等所在市町村交付金_率" data-expression="{$kokuyu}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="軽自動車税" data-bindname="keiji" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="軽自動車税_率" data-expression="{$keiji}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="環境性能割" data-bindname="kankyo" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="環境性能割_率" data-expression="{$kankyo}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="町たばこ税" data-bindname="tabako" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="町たばこ税_率" data-expression="{$tabako}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="特別土地保有税" data-bindname="tochi" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="特別土地保有税_率" data-expression="{$tochi}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="都市計画税" data-bindname="toshi" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="都市計画税_率" data-expression="{$toshi}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> <th data-bindcol="計" data-bindname="total" data-expression="{$kojin}+{$houjin}+{$kotei}+{$kokuyu}+{$keiji}+{$kankyo}+{$tabako}+{$tochi}+{$toshi}" data-expression-require="kankyo" data-expression-priority="1" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="計_率" data-expression="{$total}/{$total}*100" data-render-number="[',','.',1,'','%']">割合</th> </tr> </thead> </table> </div> </div> <!-- 表19-20_特別会計歳入歳出決算額 --> <div data-title="特別会計歳入歳出決算額"> <div data-workid="rdf1s10020i" data-type="table" data-url="http://linkdata.org/api/1/rdf1s10020i/233617_statistics19_20_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <p class="right">単位:円</p> <table class="cell-border"> <thead> <tr> <th rowspan="2" data-bindcol="年度" data-dataformat="YYYY">年度</th> <th colspan="2">土地取得</th> <th colspan="2">国民健康保険</th> <th colspan="2">老人保健</th> <th colspan="2">社本育英事業</th> <th colspan="2">次世代育成事業</th> <th colspan="2">公共下水道事業</th> <th colspan="2">国際交流事業</th> <th colspan="2">農業集落家庭排水事業</th> <th colspan="2">訪問看護事業</th> <th colspan="2">介護保険</th> <th colspan="2">後期高齢者医療</th> </tr> <tr> <th data-bindcol="土地取得_歳入" data-render-number="[',','.',0,'','']">歳入</th> <th data-bindcol="土地取得_歳出" data-render-number="[',','.',0,'','']">歳出</th> <th data-bindcol="国民健康保険_歳入" data-render-number="[',','.',0,'','']">歳入</th> <th data-bindcol="国民健康保険_歳出" data-render-number="[',','.',0,'','']">歳出</th> <th data-bindcol="老人保健_歳入" data-render-number="[',','.',0,'','']">歳入</th> <th data-bindcol="老人保健_歳出" data-render-number="[',','.',0,'','']">歳出</th> <th data-bindcol="社本育英事業_歳入" data-render-number="[',','.',0,'','']">歳入</th> <th data-bindcol="社本育英事業_歳出" data-render-number="[',','.',0,'','']">歳出</th> <th data-bindcol="次世代育成事業_歳入" data-render-number="[',','.',0,'','']">歳入</th> <th data-bindcol="次世代育成事業_歳出" data-render-number="[',','.',0,'','']">歳出</th> <th data-bindcol="公共下水道事業_歳入" data-render-number="[',','.',0,'','']">歳入</th> <th data-bindcol="公共下水道事業_歳出" data-render-number="[',','.',0,'','']">歳出</th> <th data-bindcol="国際交流事業_歳入" data-render-number="[',','.',0,'','']">歳入</th> <th data-bindcol="国際交流事業_歳出" data-render-number="[',','.',0,'','']">歳出</th> <th data-bindcol="農業集落家庭排水事業_歳入" data-render-number="[',','.',0,'','']">歳入</th> <th data-bindcol="農業集落家庭排水事業_歳出" data-render-number="[',','.',0,'','']">歳出</th> <th data-bindcol="訪問看護事業_歳入" data-render-number="[',','.',0,'','']">歳入</th> <th data-bindcol="訪問看護事業_歳出" data-render-number="[',','.',0,'','']">歳出</th> <th data-bindcol="介護保険_歳入" data-render-number="[',','.',0,'','']">歳入</th> <th data-bindcol="介護保険_歳出" data-render-number="[',','.',0,'','']">歳出</th> <th data-bindcol="後期高齢者医療_歳入" data-render-number="[',','.',0,'','']">歳入</th> <th data-bindcol="後期高齢者医療_歳出" data-render-number="[',','.',0,'','']">歳出</th> </tr> </thead> </table> </div> </div> <!-- 表21_車種別保有自動車数 --> <div data-title="車種別保有自動車数"> <div data-workid="rdf1s10021i" data-type="table" data-url="http://linkdata.org/api/1/rdf1s10021i/233617_statistics21_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <table class="cell-border"> <thead> <tr> <th data-bindcol="年度" data-dataformat="YYYY">年度</th> <th data-bindcol="普通貨物" data-render-number="[',','.',0,'','']">普通貨物</th> <th data-bindcol="小型貨物" data-render-number="[',','.',0,'','']">小型貨物</th> <th data-bindcol="被けん引車" data-render-number="[',','.',0,'','']">被けん引車</th> <th data-bindcol="普通乗合" data-render-number="[',','.',0,'','']">普通乗合</th> <th data-bindcol="小型乗合" data-render-number="[',','.',0,'','']">小型乗合</th> <th data-bindcol="普通乗用" data-render-number="[',','.',0,'','']">普通乗用</th> <th data-bindcol="小型乗用" data-render-number="[',','.',0,'','']">小型乗用</th> <th data-bindcol="特種用途" data-render-number="[',','.',0,'','']">特種用途</th> <th data-bindcol="大型特殊" data-render-number="[',','.',0,'','']">大型特殊</th> <th data-bindcol="小型二輪" data-render-number="[',','.',0,'','']">小型二輪</th> <th data-bindcol="軽自動車" data-render-number="[',','.',0,'','']">軽自動車</th> <th data-bindcol="総数" data-render-number="[',','.',0,'','']">総数</th> </tr> </thead> </table> </div> </div> <!-- 表22_交通事故状況 --> <div data-title="交通事故状況"> <div data-workid="rdf1s10022i" data-type="table" data-url="http://linkdata.org/api/1/rdf1s10022i/233617_statistics22_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <table class="cell-border"> <thead> <tr> <th rowspan="3" data-bindcol="年度" data-dataformat="YYYY">年度</th> <th colspan="8">人身</th> <th rowspan="3" data-bindcol="物損_件数" data-bindname="busson_total_count" data-render-number="[',','.',0,'','']">物損</th> <th rowspan="3" data-bindcol="合計_件数" data-expression="{$jinshin_total_count}+{$busson_total_count}" data-render-number="[',','.',0,'','']">件数計</th> </tr> <tr> <th colspan="2">死亡</th> <th colspan="2">重傷</th> <th colspan="2">軽傷</th> <th colspan="2">小計</th> </tr> <tr> <th data-bindcol="人身_死亡_件数" data-bindname="die_count" data-render-number="[',','.',0,'','']">件数</th> <th data-bindcol="人身_死亡_人数" data-bindname="die_person" data-render-number="[',','.',0,'','']">人数</th> <th data-bindcol="人身_重傷_件数" data-bindname="heavy_count" data-render-number="[',','.',0,'','']">件数</th> <th data-bindcol="人身_重傷_人数" data-bindname="heavy_person" data-render-number="[',','.',0,'','']">人数</th> <th data-bindcol="人身_軽傷_件数" data-bindname="light_count" data-render-number="[',','.',0,'','']">件数</th> <th data-bindcol="人身_軽傷_人数" data-bindname="light_person" data-render-number="[',','.',0,'','']">人数</th> <th data-bindcol="人身_小計_件数" data-bindname="jinshin_total_count" data-expression="{$die_count}+{$heavy_count}+{$light_count}" data-expression-priority="1" data-render-number="[',','.',0,'','']">件数</th> <th data-bindcol="人身_小計_人数" bindname="jinshin_total_person" data-expression="{$die_person}+{$heavy_person}+{$light_person}" data-expression-priority="1" data-render-number="[',','.',0,'','']">人数</th> </tr> </thead> </table> </div> </div> <!-- 表23_交通事故状況 --> <div data-title="火災の状況、救急出動状況"> <div data-workid="rdf1s10023i" data-title="火災の状況" data-type="table" data-url="http://linkdata.org/api/1/rdf1s10023i/233617_statistics23a_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <table class="cell-border"> <thead> <tr> <th data-bindcol="年" data-dataformat="YYYY">年</th> <th data-bindcol="建物" data-bindname="buildings" data-render-number="[',','.',0,'','']">建物</th> <th data-bindcol="車両" data-bindname="cars" data-render-number="[',','.',0,'','']">人数</th> <th data-bindcol="その他" data-bindname="others" data-render-number="[',','.',0,'','']">その他</th> <th data-bindcol="合計" data-expression="{$buildings}+{$cars}+{$others}" data-render-number="[',','.',0,'','']">合計</th> </tr> </thead> </table> </div> <div data-workid="rdf1s10025i" data-title="救急出動状況" data-type="table" data-url="http://linkdata.org/api/1/rdf1s10025i/233617_statistics23b_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <table class="cell-border"> <thead> <tr> <th data-bindcol="年" data-dataformat="YYYY">年</th> <th data-bindcol="急病" data-bindname="kyuubyou" data-render-number="[',','.',0,'','']">急病</th> <th data-bindcol="交通事故" data-bindname="koutsuu" data-render-number="[',','.',0,'','']">交通事故</th> <th data-bindcol="労働災害" data-bindname="roudou" data-render-number="[',','.',0,'','']">労働災害</th> <th data-bindcol="合計" data-expression="{$kyuubyou}+{$koutsuu}+{$roudou}" data-render-number="[',','.',0,'','']">合計</th> </tr> </thead> </table> </div> </div> <!-- 表24-26_主要選挙投票状況 --> <div data-title="主要選挙投票状況"> <div data-workid="rdf1s10029i" data-title="衆議院議員(1995年以前)" data-type="table" data-url="http://linkdata.org/api/1/rdf1s10029i/233617_statistics24_26a1_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <table class="cell-border"> <thead> <tr> <th rowspan="2" data-bindcol="執行年月日" data-dataformat="YYYY/M/D">執行年月日</th> <th colspan="3">有権者数(人)</th> <th colspan="3">投票者数(人)</th> <th colspan="3">投票率(%)</th> </tr> <tr> <th data-bindcol="有権者数_男" data-bindname="yuuken_male" data-render-number="[',','.',0,'','']">男</th> <th data-bindcol="有権者数_女" data-bindname="yuuken_female" data-render-number="[',','.',0,'','']">女</th> <th data-bindcol="有権者数_計" data-bindname="yuuken_total" data-expression="{$yuuken_male}+{$yuuken_female}" data-render-number="[',','.',0,'','']">計</th> <th data-bindcol="投票者数_男" data-bindname="touhyou_male" data-render-number="[',','.',0,'','']">男</th> <th data-bindcol="投票者数_女" data-bindname="touhyou_female" data-render-number="[',','.',0,'','']">女</th> <th data-bindcol="投票者数_計" data-bindname="touhyou_total" data-expression="{$touhyou_male}+{$touhyou_female}" data-render-number="[',','.',0,'','']">計</th> <th data-bindcol="投票率_男" data-expression="{$touhyou_male}/{$yuuken_male}*100" data-render-number="[',','.',1,'','']">男</th> <th data-bindcol="投票率_女" data-expression="{$touhyou_female}/{$yuuken_female}*100" data-render-number="[',','.',1,'','']">女</th> <th data-bindcol="投票率_計" data-expression="{$touhyou_total}/{$yuuken_total}*100" data-render-number="[',','.',1,'','']">計</th> </tr> </thead> </table> </div> <div data-workid="rdf1s10029i" data-title="衆議院議員(1996年以降)" data-type="table" data-url="http://linkdata.org/api/1/rdf1s10029i/233617_statistics24_26a2_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <table class="cell-border"> <thead> <tr> <th rowspan="3" data-bindcol="執行年月日" data-dataformat="YYYY/M/D">執行年月日</th> <th colspan="9">小選挙区</th> <th colspan="9">比例代表</th> </tr> <tr> <th colspan="3">有権者数(人)</th> <th colspan="3">投票者数(人)</th> <th colspan="3">投票率(%)</th> <th colspan="3">有権者数(人)</th> <th colspan="3">投票者数(人)</th> <th colspan="3">投票率(%)</th> </tr> <tr> <th data-bindcol="小選挙区_有権者数_男" data-bindname="yuuken_male" data-render-number="[',','.',0,'','']">男</th> <th data-bindcol="小選挙区_有権者数_女" data-bindname="yuuken_female" data-render-number="[',','.',0,'','']">女</th> <th data-bindcol="小選挙区_有権者数_計" data-bindname="yuuken_total" data-expression="{$yuuken_male}+{$yuuken_female}" data-render-number="[',','.',0,'','']">計</th> <th data-bindcol="小選挙区_投票者数_男" data-bindname="touhyou_male" data-render-number="[',','.',0,'','']">男</th> <th data-bindcol="小選挙区_投票者数_女" data-bindname="touhyou_female" data-render-number="[',','.',0,'','']">女</th> <th data-bindcol="小選挙区_投票者数_計" data-bindname="touhyou_total" data-expression="{$touhyou_male}+{$touhyou_female}" data-render-number="[',','.',0,'','']">計</th> <th data-bindcol="小選挙区_投票率_男" data-expression="{$touhyou_male}/{$yuuken_male}*100" data-render-number="[',','.',1,'','']">男</th> <th data-bindcol="小選挙区_投票率_女" data-expression="{$touhyou_female}/{$yuuken_female}*100" data-render-number="[',','.',1,'','']">女</th> <th data-bindcol="小選挙区_投票率_計" data-expression="{$touhyou_total}/{$yuuken_total}*100" data-render-number="[',','.',1,'','']">計</th> <th data-bindcol="比例代表_有権者数_男" data-bindname="yuuken_male2" data-render-number="[',','.',0,'','']">男</th> <th data-bindcol="比例代表_有権者数_女" data-bindname="yuuken_female2" data-render-number="[',','.',0,'','']">女</th> <th data-bindcol="比例代表_有権者数_計" data-bindname="yuuken_total2" data-expression="{$yuuken_male2}+{$yuuken_female2}" data-render-number="[',','.',0,'','']">計</th> <th data-bindcol="比例代表_投票者数_男" data-bindname="touhyou_male2" data-render-number="[',','.',0,'','']">男</th> <th data-bindcol="比例代表_投票者数_女" data-bindname="touhyou_female2" data-render-number="[',','.',0,'','']">女</th> <th data-bindcol="比例代表_投票者数_計" data-bindname="touhyou_total2" data-expression="{$touhyou_male2}+{$touhyou_female2}" data-render-number="[',','.',0,'','']">計</th> <th data-bindcol="比例代表_投票率_男" data-expression="{$touhyou_male2}/{$yuuken_male2}*100" data-render-number="[',','.',1,'','']">男</th> <th data-bindcol="比例代表_投票率_女" data-expression="{$touhyou_female2}/{$yuuken_female2}*100" data-render-number="[',','.',1,'','']">女</th> <th data-bindcol="比例代表_投票率_計" data-expression="{$touhyou_total2}/{$yuuken_total2}*100" data-render-number="[',','.',1,'','']">計</th> </tr> </thead> </table> </div> <div data-workid="rdf1s10030i" data-title="参議院議員(1989年以前)" data-type="table" data-url="http://linkdata.org/api/1/rdf1s10030i/233617_statistics24_26b1_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <table class="cell-border"> <thead> <tr> <th rowspan="2" data-bindcol="執行年月日" data-dataformat="YYYY/M/D">執行年月日</th> <th colspan="3">有権者数(人)</th> <th colspan="3">投票者数(人)</th> <th colspan="3">投票率(%)</th> </tr> <tr> <th data-bindcol="有権者数_男" data-bindname="yuuken_male" data-render-number="[',','.',0,'','']">男</th> <th data-bindcol="有権者数_女" data-bindname="yuuken_female" data-render-number="[',','.',0,'','']">女</th> <th data-bindcol="有権者数_計" data-bindname="yuuken_total" data-expression="{$yuuken_male}+{$yuuken_female}" data-render-number="[',','.',0,'','']">計</th> <th data-bindcol="投票者数_男" data-bindname="touhyou_male" data-render-number="[',','.',0,'','']">男</th> <th data-bindcol="投票者数_女" data-bindname="touhyou_female" data-render-number="[',','.',0,'','']">女</th> <th data-bindcol="投票者数_計" data-bindname="touhyou_total" data-expression="{$touhyou_male}+{$touhyou_female}" data-render-number="[',','.',0,'','']">計</th> <th data-bindcol="投票率_男" data-expression="{$touhyou_male}/{$yuuken_male}*100" data-render-number="[',','.',1,'','']">男</th> <th data-bindcol="投票率_女" data-expression="{$touhyou_female}/{$yuuken_female}*100" data-render-number="[',','.',1,'','']">女</th> <th data-bindcol="投票率_計" data-expression="{$touhyou_total}/{$yuuken_total}*100" data-render-number="[',','.',1,'','']">計</th> </tr> </thead> </table> </div> <div data-workid="rdf1s10030i" data-title="参議院議員(1990年以降)" data-type="table" data-url="http://linkdata.org/api/1/rdf1s10030i/233617_statistics24_26b2_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <table class="cell-border"> <thead> <tr> <th rowspan="3" data-bindcol="執行年月日" data-dataformat="YYYY/M/D">執行年月日</th> <th colspan="9">選挙区</th> <th colspan="9">比例代表</th> </tr> <tr> <th colspan="3">有権者数(人)</th> <th colspan="3">投票者数(人)</th> <th colspan="3">投票率(%)</th> <th colspan="3">有権者数(人)</th> <th colspan="3">投票者数(人)</th> <th colspan="3">投票率(%)</th> </tr> <tr> <th data-bindcol="選挙区_有権者数_男" data-bindname="yuuken_male" data-render-number="[',','.',0,'','']">男</th> <th data-bindcol="選挙区_有権者数_女" data-bindname="yuuken_female" data-render-number="[',','.',0,'','']">女</th> <th data-bindcol="選挙区_有権者数_計" data-bindname="yuuken_total" data-expression="{$yuuken_male}+{$yuuken_female}" data-render-number="[',','.',0,'','']">計</th> <th data-bindcol="選挙区_投票者数_男" data-bindname="touhyou_male" data-render-number="[',','.',0,'','']">男</th> <th data-bindcol="選挙区_投票者数_女" data-bindname="touhyou_female" data-render-number="[',','.',0,'','']">女</th> <th data-bindcol="選挙区_投票者数_計" data-bindname="touhyou_total" data-expression="{$touhyou_male}+{$touhyou_female}" data-render-number="[',','.',0,'','']">計</th> <th data-bindcol="選挙区_投票率_男" data-expression="{$touhyou_male}/{$yuuken_male}*100" data-render-number="[',','.',1,'','']">男</th> <th data-bindcol="選挙区_投票率_女" data-expression="{$touhyou_female}/{$yuuken_female}*100" data-render-number="[',','.',1,'','']">女</th> <th data-bindcol="選挙区_投票率_計" data-expression="{$touhyou_total}/{$yuuken_total}*100" data-render-number="[',','.',1,'','']">計</th> <th data-bindcol="比例代表_有権者数_男" data-bindname="yuuken_male2" data-render-number="[',','.',0,'','']">男</th> <th data-bindcol="比例代表_有権者数_女" data-bindname="yuuken_female2" data-render-number="[',','.',0,'','']">女</th> <th data-bindcol="比例代表_有権者数_計" data-bindname="yuuken_total2" data-expression="{$yuuken_male2}+{$yuuken_female2}" data-render-number="[',','.',0,'','']">計</th> <th data-bindcol="比例代表_投票者数_男" data-bindname="touhyou_male2" data-render-number="[',','.',0,'','']">男</th> <th data-bindcol="比例代表_投票者数_女" data-bindname="touhyou_female2" data-render-number="[',','.',0,'','']">女</th> <th data-bindcol="比例代表_投票者数_計" data-bindname="touhyou_total2" data-expression="{$touhyou_male2}+{$touhyou_female2}" data-render-number="[',','.',0,'','']">計</th> <th data-bindcol="比例代表_投票率_男" data-expression="{$touhyou_male2}/{$yuuken_male2}*100" data-render-number="[',','.',1,'','']">男</th> <th data-bindcol="比例代表_投票率_女" data-expression="{$touhyou_female2}/{$yuuken_female2}*100" data-render-number="[',','.',1,'','']">女</th> <th data-bindcol="比例代表_投票率_計" data-expression="{$touhyou_total2}/{$yuuken_total2}*100" data-render-number="[',','.',1,'','']">計</th> </tr> </thead> </table> </div> <div data-workid="rdf1s10031i" data-title="愛知県知事" data-type="table" data-url="http://linkdata.org/api/1/rdf1s10031i/233617_statistics24_26c_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <table class="cell-border"> <thead> <tr> <th rowspan="2" data-bindcol="執行年月日" data-dataformat="YYYY/M/D">執行年月日</th> <th colspan="3">有権者数(人)</th> <th colspan="3">投票者数(人)</th> <th colspan="3">投票率(%)</th> </tr> <tr> <th data-bindcol="有権者数_男" data-bindname="yuuken_male" data-render-number="[',','.',0,'','']">男</th> <th data-bindcol="有権者数_女" data-bindname="yuuken_female" data-render-number="[',','.',0,'','']">女</th> <th data-bindcol="有権者数_計" data-bindname="yuuken_total" data-expression="{$yuuken_male}+{$yuuken_female}" data-render-number="[',','.',0,'','']">計</th> <th data-bindcol="投票者数_男" data-bindname="touhyou_male" data-render-number="[',','.',0,'','']">男</th> <th data-bindcol="投票者数_女" data-bindname="touhyou_female" data-render-number="[',','.',0,'','']">女</th> <th data-bindcol="投票者数_計" data-bindname="touhyou_total" data-expression="{$touhyou_male}+{$touhyou_female}" data-render-number="[',','.',0,'','']">計</th> <th data-bindcol="投票率_男" data-expression="{$touhyou_male}/{$yuuken_male}*100" data-render-number="[',','.',1,'','']">男</th> <th data-bindcol="投票率_女" data-expression="{$touhyou_female}/{$yuuken_female}*100" data-render-number="[',','.',1,'','']">女</th> <th data-bindcol="投票率_計" data-expression="{$touhyou_total}/{$yuuken_total}*100" data-render-number="[',','.',1,'','']">計</th> </tr> </thead> </table> </div> <div data-workid="rdf1s10032i" data-title="愛知県議会議員" data-type="table" data-url="http://linkdata.org/api/1/rdf1s10032i/233617_statistics24_26d_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <table class="cell-border"> <thead> <tr> <th rowspan="2" data-bindcol="執行年月日" data-dataformat="YYYY/M/D">執行年月日</th> <th colspan="3">有権者数(人)</th> <th colspan="3">投票者数(人)</th> <th colspan="3">投票率(%)</th> <th rowspan="2" data-bindcol="備考">備考</th> </tr> <tr> <th data-bindcol="有権者数_男" data-bindname="yuuken_male" data-render-number="[',','.',0,'','']">男</th> <th data-bindcol="有権者数_女" data-bindname="yuuken_female" data-render-number="[',','.',0,'','']">女</th> <th data-bindcol="有権者数_計" data-bindname="yuuken_total" data-expression="{$yuuken_male}+{$yuuken_female}" data-render-number="[',','.',0,'','']">計</th> <th data-bindcol="投票者数_男" data-bindname="touhyou_male" data-render-number="[',','.',0,'','']">男</th> <th data-bindcol="投票者数_女" data-bindname="touhyou_female" data-render-number="[',','.',0,'','']">女</th> <th data-bindcol="投票者数_計" data-bindname="touhyou_total" data-expression="{$touhyou_male}+{$touhyou_female}" data-render-number="[',','.',0,'','']">計</th> <th data-bindcol="投票率_男" data-expression="{$touhyou_male}/{$yuuken_male}*100" data-render-number="[',','.',1,'','']">男</th> <th data-bindcol="投票率_女" data-expression="{$touhyou_female}/{$yuuken_female}*100" data-render-number="[',','.',1,'','']">女</th> <th data-bindcol="投票率_計" data-expression="{$touhyou_total}/{$yuuken_total}*100" data-render-number="[',','.',1,'','']">計</th> </tr> </thead> </table> </div> <div data-workid="rdf1s10033i" data-title="大口町長" data-type="table" data-url="http://linkdata.org/api/1/rdf1s10033i/233617_statistics24_26e_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <table class="cell-border"> <thead> <tr> <th rowspan="2" data-bindcol="執行年月日" data-dataformat="YYYY/M/D">執行年月日</th> <th colspan="3">有権者数(人)</th> <th colspan="3">投票者数(人)</th> <th colspan="3">投票率(%)</th> <th rowspan="2" data-bindcol="備考">備考</th> </tr> <tr> <th data-bindcol="有権者数_男" data-bindname="yuuken_male" data-render-number="[',','.',0,'','']">男</th> <th data-bindcol="有権者数_女" data-bindname="yuuken_female" data-render-number="[',','.',0,'','']">女</th> <th data-bindcol="有権者数_計" data-bindname="yuuken_total" data-expression="{$yuuken_male}+{$yuuken_female}" data-render-number="[',','.',0,'','']">計</th> <th data-bindcol="投票者数_男" data-bindname="touhyou_male" data-render-number="[',','.',0,'','']">男</th> <th data-bindcol="投票者数_女" data-bindname="touhyou_female" data-render-number="[',','.',0,'','']">女</th> <th data-bindcol="投票者数_計" data-bindname="touhyou_total" data-expression="{$touhyou_male}+{$touhyou_female}" data-render-number="[',','.',0,'','']">計</th> <th data-bindcol="投票率_男" data-expression="{$touhyou_male}/{$yuuken_male}*100" data-render-number="[',','.',1,'','']">男</th> <th data-bindcol="投票率_女" data-expression="{$touhyou_female}/{$yuuken_female}*100" data-render-number="[',','.',1,'','']">女</th> <th data-bindcol="投票率_計" data-expression="{$touhyou_total}/{$yuuken_total}*100" data-render-number="[',','.',1,'','']">計</th> </tr> </thead> </table> </div> <div data-workid="rdf1s10034i" data-title="大口町議会議員" data-type="table" data-url="http://linkdata.org/api/1/rdf1s10034i/233617_statistics24_26f_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <table class="cell-border"> <thead> <tr> <th rowspan="2" data-bindcol="執行年月日" data-dataformat="YYYY/M/D">執行年月日</th> <th colspan="3">有権者数(人)</th> <th colspan="3">投票者数(人)</th> <th colspan="3">投票率(%)</th> <th rowspan="2" data-bindcol="備考">備考</th> </tr> <tr> <th data-bindcol="有権者数_男" data-bindname="yuuken_male" data-render-number="[',','.',0,'','']">男</th> <th data-bindcol="有権者数_女" data-bindname="yuuken_female" data-render-number="[',','.',0,'','']">女</th> <th data-bindcol="有権者数_計" data-bindname="yuuken_total" data-expression="{$yuuken_male}+{$yuuken_female}" data-render-number="[',','.',0,'','']">計</th> <th data-bindcol="投票者数_男" data-bindname="touhyou_male" data-render-number="[',','.',0,'','']">男</th> <th data-bindcol="投票者数_女" data-bindname="touhyou_female" data-render-number="[',','.',0,'','']">女</th> <th data-bindcol="投票者数_計" data-bindname="touhyou_total" data-expression="{$touhyou_male}+{$touhyou_female}" data-render-number="[',','.',0,'','']">計</th> <th data-bindcol="投票率_男" data-expression="{$touhyou_male}/{$yuuken_male}*100" data-render-number="[',','.',1,'','']">男</th> <th data-bindcol="投票率_女" data-expression="{$touhyou_female}/{$yuuken_female}*100" data-render-number="[',','.',1,'','']">女</th> <th data-bindcol="投票率_計" data-expression="{$touhyou_total}/{$yuuken_total}*100" data-render-number="[',','.',1,'','']">計</th> </tr> </thead> </table> </div> </div> <!-- 表27_戸籍謄抄本、住民票等の交付状況 --> <div data-title="戸籍謄抄本、住民票等の交付状況"> <div data-workid="rdf1s10035i" data-title="戸籍謄抄本、住民票等の交付状況" data-type="table" data-url="http://linkdata.org/api/1/rdf1s10035i/233617_statistics27_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <table class="cell-border"> <thead> <tr> <th data-bindcol="年度" data-dataformat="YYYY">年度</th> <th data-bindcol="戸籍謄本" data-render-number="[',','.',0,'','']">戸籍謄本</th> <th data-bindcol="戸籍抄本" data-render-number="[',','.',0,'','']">戸籍抄本</th> <th data-bindcol="除籍謄本" data-render-number="[',','.',0,'','']">除籍謄本</th> <th data-bindcol="除籍抄本" data-render-number="[',','.',0,'','']">除籍抄本</th> <th data-bindcol="住民票写し" data-render-number="[',','.',0,'','']">住民票写し</th> <th data-bindcol="住民票閲覧" data-render-number="[',','.',0,'','']">住民票閲覧</th> <th data-bindcol="戸籍附票" data-render-number="[',','.',0,'','']">戸籍附票</th> <th data-bindcol="印鑑証明書" data-render-number="[',','.',0,'','']">印鑑証明書</th> <th data-bindcol="住基カード" data-render-number="[',','.',0,'','']">住基カード</th> <th data-bindcol="個人番号カード" data-render-number="[',','.',0,'','']">個人番号カード</th> </tr> </thead> </table> </div> </div> <!-- 表28-29_保育園児数等 --> <div data-title="保育園児数等"> <div data-workid="rdf1s10278i" data-title="南保育園" data-type="table" data-url="http://linkdata.org/api/1/rdf1s10278i/233617_statistics28_29a_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <table class="cell-border"> <thead> <tr> <th rowspan="2" data-bindcol="年度" data-dataformat="YYYY">年度</th> <th rowspan="2" data-bindcol="定員" data-render-number="[',','.',0,'','']">定員</th> <th rowspan="2" data-bindcol="園児数" data-render-number="[',','.',0,'','']">園児数</th> <th rowspan="2" data-bindcol="延園児数" data-render-number="[',','.',0,'','']">延園児数</th> <th colspan="2">職員数</th> <th colspan="2">調理員数</th> <th colspan="2">事務員数</th> </tr> <tr> <th data-bindcol="職員" data-render-number="[',','.',0,'','']">総数</th> <th data-bindcol="臨時職員" data-render-number="[',','.',0,'','']">臨時</th> <th data-bindcol="調理員" data-render-number="[',','.',0,'','']">総数</th> <th data-bindcol="臨時調理員" data-render-number="[',','.',0,'','']">臨時</th> <th data-bindcol="事務員" data-render-number="[',','.',0,'','']">総数</th> <th data-bindcol="臨時事務員" data-render-number="[',','.',0,'','']">臨時</th> </tr> </thead> </table> <p>園児数: 毎年3月1日現在の園児数</p> <p>延園児数: 毎月初日の園児数を1年間累積した人数</p> </div> <div data-workid="rdf1s10279i" data-title="中保育園" data-type="table" data-url="http://linkdata.org/api/1/rdf1s10279i/233617_statistics28_29b_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <table class="cell-border"> <thead> <tr> <th rowspan="2" data-bindcol="年度" data-dataformat="YYYY">年度</th> <th rowspan="2" data-bindcol="定員" data-render-number="[',','.',0,'','']">定員</th> <th rowspan="2" data-bindcol="園児数" data-render-number="[',','.',0,'','']">園児数</th> <th rowspan="2" data-bindcol="延園児数" data-render-number="[',','.',0,'','']">延園児数</th> <th colspan="2">職員数</th> <th colspan="2">調理員数</th> <th colspan="2">事務員数</th> </tr> <tr> <th data-bindcol="職員" data-render-number="[',','.',0,'','']">総数</th> <th data-bindcol="臨時職員" data-render-number="[',','.',0,'','']">臨時</th> <th data-bindcol="調理員" data-render-number="[',','.',0,'','']">総数</th> <th data-bindcol="臨時調理員" data-render-number="[',','.',0,'','']">臨時</th> <th data-bindcol="事務員" data-render-number="[',','.',0,'','']">総数</th> <th data-bindcol="臨時事務員" data-render-number="[',','.',0,'','']">臨時</th> </tr> </thead> </table> <p>園児数: 毎年3月1日現在の園児数</p> <p>延園児数: 毎月初日の園児数を1年間累積した人数</p> <p>平成26年4月1日から民間保育所に移行</p> </div> <div data-workid="rdf1s10280i" data-title="西保育園" data-type="table" data-url="http://linkdata.org/api/1/rdf1s10280i/233617_statistics28_29c_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <table class="cell-border"> <thead> <tr> <th rowspan="2" data-bindcol="年度" data-dataformat="YYYY">年度</th> <th rowspan="2" data-bindcol="定員" data-render-number="[',','.',0,'','']">定員</th> <th rowspan="2" data-bindcol="園児数" data-render-number="[',','.',0,'','']">園児数</th> <th rowspan="2" data-bindcol="延園児数" data-render-number="[',','.',0,'','']">延園児数</th> <th colspan="2">職員数</th> <th colspan="2">調理員数</th> <th colspan="2">事務員数</th> </tr> <tr> <th data-bindcol="職員" data-render-number="[',','.',0,'','']">総数</th> <th data-bindcol="臨時職員" data-render-number="[',','.',0,'','']">臨時</th> <th data-bindcol="調理員" data-render-number="[',','.',0,'','']">総数</th> <th data-bindcol="臨時調理員" data-render-number="[',','.',0,'','']">臨時</th> <th data-bindcol="事務員" data-render-number="[',','.',0,'','']">総数</th> <th data-bindcol="臨時事務員" data-render-number="[',','.',0,'','']">臨時</th> </tr> </thead> </table> <p>園児数: 毎年3月1日現在の園児数</p> <p>延園児数: 毎月初日の園児数を1年間累積した人数</p> </div> <div data-workid="rdf1s10281i" data-title="北保育園" data-type="table" data-url="http://linkdata.org/api/1/rdf1s10281i/233617_statistics28_29d_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <table class="cell-border"> <thead> <tr> <th rowspan="2" data-bindcol="年度" data-dataformat="YYYY">年度</th> <th rowspan="2" data-bindcol="定員" data-render-number="[',','.',0,'','']">定員</th> <th rowspan="2" data-bindcol="園児数" data-render-number="[',','.',0,'','']">園児数</th> <th rowspan="2" data-bindcol="延園児数" data-render-number="[',','.',0,'','']">延園児数</th> <th colspan="2">職員数</th> <th colspan="2">調理員数</th> <th colspan="2">事務員数</th> </tr> <tr> <th data-bindcol="職員" data-render-number="[',','.',0,'','']">総数</th> <th data-bindcol="臨時職員" data-render-number="[',','.',0,'','']">臨時</th> <th data-bindcol="調理員" data-render-number="[',','.',0,'','']">総数</th> <th data-bindcol="臨時調理員" data-render-number="[',','.',0,'','']">臨時</th> <th data-bindcol="事務員" data-render-number="[',','.',0,'','']">総数</th> <th data-bindcol="臨時事務員" data-render-number="[',','.',0,'','']">臨時</th> </tr> </thead> </table> <p>園児数: 毎年3月1日現在の園児数</p> <p>延園児数: 毎月初日の園児数を1年間累積した人数</p> </div> <div data-workid="rdf1s10282i" data-title="東保育園" data-type="table" data-url="http://linkdata.org/api/1/rdf1s10282i/233617_statistics28_29e_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <table class="cell-border"> <thead> <tr> <th rowspan="2" data-bindcol="年度" data-dataformat="YYYY">年度</th> <th rowspan="2" data-bindcol="定員" data-render-number="[',','.',0,'','']">定員</th> <th rowspan="2" data-bindcol="園児数" data-render-number="[',','.',0,'','']">園児数</th> <th rowspan="2" data-bindcol="延園児数" data-render-number="[',','.',0,'','']">延園児数</th> <th colspan="2">職員数</th> <th colspan="2">調理員数</th> <th colspan="2">事務員数</th> </tr> <tr> <th data-bindcol="職員" data-render-number="[',','.',0,'','']">総数</th> <th data-bindcol="臨時職員" data-render-number="[',','.',0,'','']">臨時</th> <th data-bindcol="調理員" data-render-number="[',','.',0,'','']">総数</th> <th data-bindcol="臨時調理員" data-render-number="[',','.',0,'','']">臨時</th> <th data-bindcol="事務員" data-render-number="[',','.',0,'','']">総数</th> <th data-bindcol="臨時事務員" data-render-number="[',','.',0,'','']">臨時</th> </tr> </thead> </table> <p>園児数: 毎年3月1日現在の園児数</p> <p>延園児数: 毎月初日の園児数を1年間累積した人数</p> <p>平成12年度に休園</p> </div> </div> <!-- 表30-31_国民年金受給状況 --> <div data-title="国民年金受給状況"> <div data-workid="rdf1s10042i" data-title="旧法関係" data-type="table" data-url="http://linkdata.org/api/1/rdf1s10042i/233617_statistics30_31a_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <table class="cell-border"> <thead> <tr> <th rowspan="2" data-bindcol="年度" data-dataformat="YYYY">年度</th> <th colspan="2">老齢年金</th> <th colspan="2">通算老齢年金</th> <th colspan="2">障害年金</th> <th colspan="2">母子年金</th> <th colspan="2">合計</th> </tr> <tr> <th data-bindcol="老齢年金_受給者" data-render-number="[',','.',0,'','']">受給者</th> <th data-bindcol="老齢年金_年金額" data-render-number="[',','.',0,'','']">年金額</th> <th data-bindcol="通算老齢年金_受給者" data-render-number="[',','.',0,'','']">受給者</th> <th data-bindcol="通算老齢年金_年金額" data-render-number="[',','.',0,'','']">年金額</th> <th data-bindcol="障害年金_受給者" data-render-number="[',','.',0,'','']">受給者</th> <th data-bindcol="障害年金_年金額" data-render-number="[',','.',0,'','']">年金額</th> <th data-bindcol="母子年金_受給者" data-render-number="[',','.',0,'','']">受給者</th> <th data-bindcol="母子年金_年金額" data-render-number="[',','.',0,'','']">年金額</th> <th data-bindcol="合計_受給者" data-render-number="[',','.',0,'','']">受給者</th> <th data-bindcol="合計_年金額" data-render-number="[',','.',0,'','']">年金額</th> </tr> </thead> </table> </div> <div data-workid="rdf1s10042i" data-title="新法関係" data-type="table" data-url="http://linkdata.org/api/1/rdf1s10042i/233617_statistics30_31b_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <table class="cell-border"> <thead> <tr> <th rowspan="2" data-bindcol="年度" data-dataformat="YYYY">年度</th> <th colspan="2">老齢基礎年金</th> <th colspan="2">障害基礎年金</th> <th colspan="2">遺族基礎年金</th> <th colspan="2">寡婦年金新法</th> <th colspan="2">合計</th> </tr> <tr> <th data-bindcol="老齢基礎年金_受給者" data-render-number="[',','.',0,'','']">受給者</th> <th data-bindcol="老齢基礎年金_年金額" data-render-number="[',','.',0,'','']">年金額</th> <th data-bindcol="障害基礎年金_受給者" data-render-number="[',','.',0,'','']">受給者</th> <th data-bindcol="障害基礎年金_年金額" data-render-number="[',','.',0,'','']">年金額</th> <th data-bindcol="遺族基礎年金_受給者" data-render-number="[',','.',0,'','']">受給者</th> <th data-bindcol="遺族基礎年金_年金額" data-render-number="[',','.',0,'','']">年金額</th> <th data-bindcol="寡婦年金新法_受給者" data-render-number="[',','.',0,'','']">受給者</th> <th data-bindcol="寡婦年金新法_年金額" data-render-number="[',','.',0,'','']">年金額</th> <th data-bindcol="合計_受給者" data-render-number="[',','.',0,'','']">受給者</th> <th data-bindcol="合計_年金額" data-render-number="[',','.',0,'','']">年金額</th> </tr> </thead> </table> </div> </div> <!-- 表32-34_国民健康保険の状況 --> <div data-title="国民健康保険の状況"> <div data-workid="rdf1s10043i" data-title="加入状況" data-type="table" data-url="http://linkdata.org/api/1/rdf1s10043i/233617_statistics32_34a_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <table class="cell-border"> <thead> <tr> <th data-bindcol="年度" data-dataformat="YYYY">年度</th> <th data-bindcol="世帯総数" data-bindname="total_households" data-render-number="[',','.',0,'','']">世帯総数</th> <th data-bindcol="加入世帯数" data-bindname="enrolled_households" data-render-number="[',','.',0,'','']">加入世帯数</th> <th data-bindcol="加入世帯率" data-expression="{$enrolled_households}/{$total_households}*100" data-render-number="[',','.',1,'','%']">加入率</th> <th data-bindcol="人口総数" data-bindname="total_population" data-render-number="[',','.',0,'','']">人口総数</th> <th data-bindcol="被保険者数" data-bindname="insured_population" data-render-number="[',','.',0,'','']">被保険者数</th> <th data-bindcol="加入者率" data-expression="{$insured_population}/{$total_population}*100" data-render-number="[',','.',1,'','%']">加入者率</th> </tr> </thead> </table> <p>世帯総数:各年度4月~3月末の世帯の合計を12月で除した数(外国人含む)</p> <p>人口総数:各年度4月~3月末の世帯人員の合計を12月で除した数(外国人含む)</p> </div> <div data-workid="rdf1s10044i" data-title="給付状況" data-type="table" data-url="http://linkdata.org/api/1/rdf1s10044i/233617_statistics32_34b_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <table class="cell-border"> <thead> <tr> <th rowspan="3" data-bindcol="年度" data-dataformat="YYYY">年度</th> <th colspan="2" rowspan="2">総数</th> <th colspan="4">療養の給付</th> <th colspan="4">療養費</th> <th colspan="4">高額療養費</th> <th colspan="2" rowspan="2">出産育児一時金</th> <th colspan="2" rowspan="2">葬祭費</th> </tr> <tr> <th colspan="2">一般分</th> <th colspan="2">退職分</th> <th colspan="2">一般分</th> <th colspan="2">退職分</th> <th colspan="2">一般分</th> <th colspan="2">退職分</th> </tr> <tr> <th data-bindcol="総件数" data-render-number="[',','.',0,'','']">件数</th> <th data-bindcol="総支払額" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="一般療養給付費_件数" data-render-number="[',','.',0,'','']">件数</th> <th data-bindcol="一般療養給付費_支払額" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="退職療養給付費_件数" data-render-number="[',','.',0,'','']">件数</th> <th data-bindcol="退職療養給付費_支払額" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="一般療養費_件数" data-render-number="[',','.',0,'','']">件数</th> <th data-bindcol="一般療養費_支払額" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="退職療養費_件数" data-render-number="[',','.',0,'','']">件数</th> <th data-bindcol="退職療養費_支払額" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="一般高額療養費_件数" data-render-number="[',','.',0,'','']">件数</th> <th data-bindcol="一般高額療養費_支払額" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="退職高額療養費_件数" data-render-number="[',','.',0,'','']">件数</th> <th data-bindcol="退職高額療養費_支払額" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="出産育児一時金_件数" data-render-number="[',','.',0,'','']">件数</th> <th data-bindcol="出産育児一時金_支払額" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="葬祭費_件数" data-render-number="[',','.',0,'','']">件数</th> <th data-bindcol="葬祭費_支払額" data-render-number="[',','.',0,'','']">金額</th> </tr> </thead> </table> <p>高額療養費には高額介護合算療養費を含む。</p> <p>出産育児一時金には同支払手数料を含む。</p> </div> </div> <!-- 表35_老人保健・後期高齢者医療の状況 --> <div data-title="老人保健・後期高齢者医療の状況"> <div data-workid="rdf1s10045i" data-title="老人保健" data-type="table" data-url="http://linkdata.org/api/1/rdf1s10045i/233617_statistics35a_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <table class="cell-border"> <thead> <tr> <th rowspan="3" data-bindcol="年度" data-dataformat="YYYY">年度</th> <th rowspan="3" data-bindcol="受給者数" data-render-number="[',','.',0,'','']">受給者数</th> <th colspan="12">給付</th> </tr> <tr> <th colspan="2">入院</th> <th colspan="2">入院外</th> <th colspan="2">歯科</th> <th colspan="2">調剤</th> <th colspan="2">その他</th> <th colspan="2">合計</th> </tr> <tr> <th data-bindcol="入院件数" data-render-number="[',','.',0,'','']">件数</th> <th data-bindcol="入院金額" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="入院外件数" data-render-number="[',','.',0,'','']">件数</th> <th data-bindcol="入院外金額" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="歯科件数" data-render-number="[',','.',0,'','']">件数</th> <th data-bindcol="歯科金額" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="調剤件数" data-render-number="[',','.',0,'','']">件数</th> <th data-bindcol="調剤金額" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="その他の件数" data-render-number="[',','.',0,'','']">件数</th> <th data-bindcol="その他の金額" data-render-number="[',','.',0,'','']">金額</th> <th data-bindcol="合計件数" data-render-number="[',','.',0,'','']">件数</th> <th data-bindcol="合計金額" data-render-number="[',','.',0,'','']">金額</th> </tr> </thead> </table> <p>平成20年度より後期高齢者医療制度に移行</p> </div> <div data-workid="rdf1s10046i" data-title="後期高齢者医療制度" data-type="table" data-url="http://linkdata.org/api/1/rdf1s10046i/233617_statistics35b_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <table class="cell-border"> <thead> <tr> <th rowspan="2" data-bindcol="年度" data-dataformat="YYYY">年度</th> <th colspan="9">被保険者数</th> <th rowspan="2" data-bindcol="被扶養者であった被保険者数" data-render-number="[',','.',0,'','']">被扶養者であった被保険者数</th> </tr> <tr> <th data-bindcol="65-69歳" data-bindname="over65" data-render-number="[',','.',0,'','']">65-69歳</th> <th data-bindcol="70-74歳" data-bindname="over70" data-render-number="[',','.',0,'','']">70-74歳</th> <th data-bindcol="75-79歳" data-bindname="over75" data-render-number="[',','.',0,'','']">75-79歳</th> <th data-bindcol="80-84歳" data-bindname="over80" data-render-number="[',','.',0,'','']">80-84歳</th> <th data-bindcol="85-89歳" data-bindname="over85" data-render-number="[',','.',0,'','']">85-89歳</th> <th data-bindcol="90-94歳" data-bindname="over90" data-render-number="[',','.',0,'','']">90-94歳</th> <th data-bindcol="95-99歳" data-bindname="over95" data-render-number="[',','.',0,'','']">95-99歳</th> <th data-bindcol="100歳以上" data-bindname="over100" data-render-number="[',','.',0,'','']">100歳以上</th> <th data-bindcol="計" data-expression="{$over65}+{$over70}+{$over75}+{$over80}+{$over85}+{$over90}+{$over95}+{$over100}" data-render-number="[',','.',0,'','']">計</th> </tr> </thead> </table> <p>被保険者数: 各年度末時点</p> </div> </div> <!-- 表36_福祉医療の状況 --> <div data-title="福祉医療の状況"> <div data-workid="rdf1s10047i" data-title="福祉医療の状況" data-type="table" data-url="http://linkdata.org/api/1/rdf1s10047i/233617_statistics36_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <table class="cell-border"> <thead> <tr> <th rowspan="2" data-bindcol="年度" data-dataformat="YYYY">年度</th> <th colspan="2">乳幼児(子ども)医療</th> <th colspan="2">母子・父子家庭医療</th> <th colspan="2">障害者医療</th> <th colspan="2">精神障害者医療</th> <th colspan="2">後期高齢者福祉医療</th> </tr> <tr> <th data-bindcol="乳幼児_受給者数" data-render-number="[',','.',0,'','']">受給者数</th> <th data-bindcol="乳幼児_支給額" data-render-number="[',','.',0,'','']">支給額</th> <th data-bindcol="母子等_受給者数" data-render-number="[',','.',0,'','']">受給者数</th> <th data-bindcol="母子等_支給額" data-render-number="[',','.',0,'','']">支給額</th> <th data-bindcol="障害者_受給者数" data-render-number="[',','.',0,'','']">受給者数</th> <th data-bindcol="障害者_支給額" data-render-number="[',','.',0,'','']">支給額</th> <th data-bindcol="精神_受給者数" data-render-number="[',','.',0,'','']">受給者数</th> <th data-bindcol="精神_支給額" data-render-number="[',','.',0,'','']">支給額</th> <th data-bindcol="後期_受給者数" data-render-number="[',','.',0,'','']">受給者数</th> <th data-bindcol="後期_支給額" data-render-number="[',','.',0,'','']">支給額</th> </tr> </thead> </table> <p>乳幼児医療は2008年度に子ども医療に移行</p> </div> </div> <!-- 表37_がん検診、基本健康診査、わかば健診受診者数 --> <div data-title="がん検診・基本健康診査・わかば健診受診者数"> <div data-workid="rdf1s10048i" data-title="がん検診" data-type="table" data-url="http://linkdata.org/api/1/rdf1s10048i/233617_statistics37a_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <table class="cell-border"> <thead> <tr> <th data-bindcol="年度" data-dataformat="YYYY">年度</th> <th data-bindcol="胃がん検診" data-bindname="stomach" data-render-number="[',','.',0,'','']">胃がん</th> <th data-bindcol="子宮頸がん検診" data-bindname="cervical" data-render-number="[',','.',0,'','']">子宮頸がん</th> <th data-bindcol="乳がん検診" data-bindname="breast" data-render-number="[',','.',0,'','']">乳がん</th> <th data-bindcol="大腸がん検診" data-bindname="colorectal" data-render-number="[',','.',0,'','']">大腸がん</th> <th data-bindcol="肺がん検診" data-bindname="lung" data-render-number="[',','.',0,'','']">肺がん</th> <th data-bindcol="前立腺がん検診" data-bindname="prostate" data-render-number="[',','.',0,'','']">前立腺がん</th> <th data-bindcol="計" data-expression="{$stomach}+{$cervical}+{$breast}+{$colorectal}+{$lung}+{$prostate}" data-expression-require="prostate" data-render-number="[',','.',0,'','']">計</th> </tr> </thead> </table> <p>2013年度までは40歳以上のみ、2014年度以降は40歳未満を含む全がん検診受診者数</p> </div> <div data-workid="rdf1s10051i" data-title="基本健康診査" data-type="table" data-url="http://linkdata.org/api/1/rdf1s10051i/233617_statistics37b_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <table class="cell-border"> <thead> <tr> <th data-bindcol="年度" data-dataformat="YYYY">年度</th> <th data-bindcol="40-49歳" data-bindname="over40" data-render-number="[',','.',0,'','']">40-49歳</th> <th data-bindcol="50-59歳" data-bindname="over50" data-render-number="[',','.',0,'','']">50-59歳</th> <th data-bindcol="60-69歳" data-bindname="over60" data-render-number="[',','.',0,'','']">60-69歳</th> <th data-bindcol="70歳以上" data-bindname="over70" data-render-number="[',','.',0,'','']">70歳以上</th> <th data-bindcol="計" data-expression="{$over40}+{$over50}+{$over60}+{$over70}" data-render-number="[',','.',0,'','']">計</th> </tr> </thead> </table> <p>2008年度より法改正に伴い基本健康診査は廃止</p> </div> <div data-workid="rdf1s10052i" data-title="わかば健診" data-type="table" data-url="http://linkdata.org/api/1/rdf1s10052i/233617_statistics37c_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <table class="cell-border"> <thead> <tr> <th data-bindcol="年度" data-dataformat="YYYY">年度</th> <th data-bindcol="20-29歳" data-bindname="over20" data-render-number="[',','.',0,'','']">20-29歳</th> <th data-bindcol="30-39歳" data-bindname="over30" data-render-number="[',','.',0,'','']">30-39歳</th> <th data-bindcol="計" data-expression="{$over20}+{$over30}" data-render-number="[',','.',0,'','']">計</th> </tr> </thead> </table> </div> </div> <!-- 表38_農地転用実績 --> <div data-title="農地転用実績"> <div data-workid="rdf1s10158i" data-title="農地転用実績" data-type="table" data-url="http://linkdata.org/api/1/rdf1s10158i/233617_statistics38_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <table class="cell-border"> <thead> <tr> <th rowspan="2" data-bindcol="年度" data-dataformat="YYYY">年度</th> <th colspan="3">許可事案4条</th> <th colspan="3">許可事案5条</th> <th colspan="3">届出事案4条</th> <th colspan="3">届出事案5条</th> <th colspan="3">合計</th> </tr> <tr> <th data-bindcol="許可事案4条_件数" data-bindname="c4a" data-render-number="[',','.',0,'','']">件数</th> <th data-bindcol="許可事案4条_面積_田" data-bindname="t4a" data-render-number="[',','.',1,'','']">面積(田)</th> <th data-bindcol="許可事案4条_面積_畑" data-bindname="h4a" data-render-number="[',','.',1,'','']">面積(畑)</th> <th data-bindcol="許可事案5条_件数" data-bindname="c5a" data-render-number="[',','.',0,'','']">件数</th> <th data-bindcol="許可事案5条_面積_田" data-bindname="t5a" data-render-number="[',','.',1,'','']">面積(田)</th> <th data-bindcol="許可事案5条_面積_畑" data-bindname="h5a" data-render-number="[',','.',1,'','']">面積(畑)</th> <th data-bindcol="届出事案4条_件数" data-bindname="c4b" data-render-number="[',','.',0,'','']">件数</th> <th data-bindcol="届出事案4条_面積_田" data-bindname="t4b" data-render-number="[',','.',1,'','']">面積(田)</th> <th data-bindcol="届出事案4条_面積_畑" data-bindname="h4b" data-render-number="[',','.',1,'','']">面積(畑)</th> <th data-bindcol="届出事案5条_件数" data-bindname="c5b" data-render-number="[',','.',0,'','']">件数</th> <th data-bindcol="届出事案5条_面積_田" data-bindname="t5b" data-render-number="[',','.',1,'','']">面積(田)</th> <th data-bindcol="届出事案5条_面積_畑" data-bindname="h5b" data-render-number="[',','.',1,'','']">面積(畑)</th> <th data-bindcol="合計_件数" data-expression="{$c4a}+{$c4b}+{$c5a}+{$c5b}" data-render-number="[',','.',0,'','']">件数</th> <th data-bindcol="合計_面積_田" data-expression="{$t4a}+{$t4b}+{$t5a}+{$t5b}" data-render-number="[',','.',1,'','']">面積(田)</th> <th data-bindcol="合計_面積_畑" data-expression="{$h4a}+{$h4b}+{$h5a}+{$h5b}" data-render-number="[',','.',1,'','']">面積(畑)</th> </tr> </thead> </table> </div> </div> <!-- 表39_専業、兼業別農家数等 --> <div data-title="専業、兼業別農家数等"> <div data-workid="rdf1s10159i" data-title="専業、兼業別農家数等" data-type="table" data-url="http://linkdata.org/api/1/rdf1s10159i/233617_statistics39_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <table class="cell-border"> <thead> <tr> <th data-bindcol="年" data-dataformat="YYYY">年</th> <th data-bindcol="総数" data-render-number="[',','.',0,'','']">総数</th> <th data-bindcol="専業" data-render-number="[',','.',0,'','']">専業</th> <th data-bindcol="第1種兼業" data-render-number="[',','.',0,'','']">第1種兼業</th> <th data-bindcol="第2種兼業" data-render-number="[',','.',0,'','']">第2種兼業</th> <th data-bindcol="自給的農家" data-render-number="[',','.',0,'','']">自給的農家</th> <th data-bindcol="農家人口" data-render-number="[',','.',0,'','']">農家人口</th> <th data-bindcol="農業就業人口" data-bindname="c4b" data-render-number="[',','.',0,'','']">農業就業人口</th> </tr> </thead> </table> <p>農林業センサス(各年2月1日現在)</p> <dl> <dt>第1種兼業</dt> <dd>農業所得を主とするもの</dd> <dt>第2種兼業</dt> <dd>農業所得を従とするもの</dd> <dt>自給的農家</dt> <dd>経営耕地面積が30アール未満でかつ年間の農作物販売金額が50万円未満</dd> <dt>農家人口</dt> <dd>総農家の世帯員数</dd> <dt>農業就業人口</dt> <dd>自営農業に従事した世帯員(農業従事者)のうち、調査期日前1年間に「農業のみに従事した世帯員」 及び「農業と兼業の双方に従事したが、農業の従事日数の方が多い世帯員」のことをいう。</dd> </dl> </div> </div> <!-- 表40_産業別事業所及び従業者数 --> <div data-title="産業別事業所及び従業者数"> <div data-workid="rdf1s10160i" data-title="平成13年まで" data-type="table" data-url="http://linkdata.org/api/1/rdf1s10160i/233617_statistics40a_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <table class="cell-border"> <thead> <tr> <th rowspan="2" data-bindcol="調査期日" data-dataformat="YYYY">年</th> <th colspan="11">事業所数</th> <th colspan="11">従業者数</th> </tr> <tr> <th data-bindcol="農林漁業_事業所数" data-bindname="a1" data-render-number="[',','.',0,'','']">農林漁業</th> <th data-bindcol="建設業_事業所数" data-bindname="a2" data-render-number="[',','.',0,'','']">建設業</th> <th data-bindcol="製造業_事業所数" data-bindname="a3" data-render-number="[',','.',0,'','']">製造業</th> <th data-bindcol="電気ガス水道業_事業所数" data-bindname="a4" data-render-number="[',','.',0,'','']">電気ガス水道業</th> <th data-bindcol="運輸通信業_事業所数" data-bindname="a5" data-render-number="[',','.',0,'','']">運輸通信業</th> <th data-bindcol="金融保険業_事業所数" data-bindname="a6" data-render-number="[',','.',0,'','']">金融保険業</th> <th data-bindcol="卸売小売飲食店_事業所数" data-bindname="a7" data-render-number="[',','.',0,'','']">卸売小売飲食店</th> <th data-bindcol="不動産業_事業所数" data-bindname="a8" data-render-number="[',','.',0,'','']">不動産業</th> <th data-bindcol="サービス業_事業所数" data-bindname="a9" data-render-number="[',','.',0,'','']">サービス業</th> <th data-bindcol="公務_事業所数" data-bindname="a10" data-render-number="[',','.',0,'','']">公務</th> <th data-bindcol="合計_事業所数" data-expression-require="a1,a2,a3,a4,a5,a6,a7,a8,a9,a10" data-expression="{$a1}+{$a2}+{$a3}+{$a4}+{$a5}+{$a6}+{$a7}+{$a8}+{$a9}+{$a10}" data-render-number="[',','.',0,'','']">合計</th> <th data-bindcol="農林漁業_従業者数" data-bindname="b1" data-render-number="[',','.',0,'','']">農林漁業</th> <th data-bindcol="建設業_従業者数" data-bindname="b2" data-render-number="[',','.',0,'','']">建設業</th> <th data-bindcol="製造業_従業者数" data-bindname="b3" data-render-number="[',','.',0,'','']">製造業</th> <th data-bindcol="電気ガス水道業_従業者数" data-bindname="b4" data-render-number="[',','.',0,'','']">電気ガス水道業</th> <th data-bindcol="運輸通信業_従業者数" data-bindname="b5" data-render-number="[',','.',0,'','']">運輸通信業</th> <th data-bindcol="金融保険業_従業者数" data-bindname="b6" data-render-number="[',','.',0,'','']">金融保険業</th> <th data-bindcol="卸売小売飲食店_従業者数" data-bindname="b7" data-render-number="[',','.',0,'','']">卸売小売飲食店</th> <th data-bindcol="不動産業_従業者数" data-bindname="b8" data-render-number="[',','.',0,'','']">不動産業</th> <th data-bindcol="サービス業_従業者数" data-bindname="b9" data-render-number="[',','.',0,'','']">サービス業</th> <th data-bindcol="公務_従業者数" data-bindname="b10" data-render-number="[',','.',0,'','']">公務</th> <th data-bindcol="合計_従業者数" data-expression="{$b1}+{$b2}+{$b3}+{$b4}+{$b5}+{$b6}+{$b7}+{$b8}+{$b9}+{$b10}" data-expression-require="b1,b2,b3,b4,b5,b6,b7,b8,b9,b10" data-render-number="[',','.',0,'','']">合計</th> </tr> </thead> </table> <p>注:統計表による伏字となっている箇所があります。</p> </div> <div data-workid="rdf1s10160i" data-title="平成18年まで" data-type="table" data-url="http://linkdata.org/api/1/rdf1s10160i/233617_statistics40b_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <table class="cell-border"> <thead> <tr> <th rowspan="2" data-bindcol="調査期日" data-dataformat="YYYY">年</th> <th colspan="16">事業所数</th> <th colspan="16">従業者数</th> </tr> <tr> <th data-bindcol="農林漁業_事業所数" data-bindname="a1" data-render-number="[',','.',0,'','']">農林漁業</th> <th data-bindcol="建設業_事業所数" data-bindname="a2" data-render-number="[',','.',0,'','']">建設業</th> <th data-bindcol="製造業_事業所数" data-bindname="a3" data-render-number="[',','.',0,'','']">製造業</th> <th data-bindcol="電気ガス水道業_事業所数" data-bindname="a4" data-render-number="[',','.',0,'','']">電気ガス水道業</th> <th data-bindcol="情報通信業_事業所数" data-bindname="a5" data-render-number="[',','.',0,'','']">情報通信業</th> <th data-bindcol="運輸業_事業所数" data-bindname="a6" data-render-number="[',','.',0,'','']">運輸業</th> <th data-bindcol="卸売・小売業_事業所数" data-bindname="a7" data-render-number="[',','.',0,'','']">卸売・小売業</th> <th data-bindcol="金融保険業_事業所数" data-bindname="a8" data-render-number="[',','.',0,'','']">金融保険業</th> <th data-bindcol="不動産業_事業所数" data-bindname="a9" data-render-number="[',','.',0,'','']">不動産業</th> <th data-bindcol="飲食・宿泊業_事業所数" data-bindname="a10" data-render-number="[',','.',0,'','']">飲食・宿泊業</th> <th data-bindcol="医療・福祉_事業所数" data-bindname="a11" data-render-number="[',','.',0,'','']">医療・福祉業</th> <th data-bindcol="教育・学習支援業_事業所数" data-bindname="a12" data-render-number="[',','.',0,'','']">教育・学習支援業</th> <th data-bindcol="複合サービス事業_事業所数" data-bindname="a13" data-render-number="[',','.',0,'','']">複合サービス事業</th> <th data-bindcol="サービス業_事業所数" data-bindname="a14" data-render-number="[',','.',0,'','']">サービス業</th> <th data-bindcol="公務_事業所数" data-bindname="a15" data-render-number="[',','.',0,'','']">公務</th> <th data-bindcol="合計_事業所数" data-expression-require="a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14,a15" data-expression="{$a1}+{$a2}+{$a3}+{$a4}+{$a5}+{$a6}+{$a7}+{$a8}+{$a9}+{$a10}+{$a11}+{$a12}+{$a13}+{$a14}+{$a15}" data-render-number="[',','.',0,'','']">合計</th> <th data-bindcol="農林漁業_従業者数" data-bindname="b1" data-render-number="[',','.',0,'','']">農林漁業</th> <th data-bindcol="建設業_従業者数" data-bindname="b2" data-render-number="[',','.',0,'','']">建設業</th> <th data-bindcol="製造業_従業者数" data-bindname="b3" data-render-number="[',','.',0,'','']">製造業</th> <th data-bindcol="電気ガス水道業_従業者数" data-bindname="b4" data-render-number="[',','.',0,'','']">電気ガス水道業</th> <th data-bindcol="情報通信業_従業者数" data-bindname="b5" data-render-number="[',','.',0,'','']">情報通信業</th> <th data-bindcol="運輸業_従業者数" data-bindname="b6" data-render-number="[',','.',0,'','']">運輸業</th> <th data-bindcol="卸売・小売業_従業者数" data-bindname="b7" data-render-number="[',','.',0,'','']">卸売・小売業</th> <th data-bindcol="金融保険業_従業者数" data-bindname="b8" data-render-number="[',','.',0,'','']">金融保険業</th> <th data-bindcol="不動産業_従業者数" data-bindname="b9" data-render-number="[',','.',0,'','']">不動産業</th> <th data-bindcol="飲食・宿泊業_従業者数" data-bindname="b10" data-render-number="[',','.',0,'','']">飲食・宿泊業</th> <th data-bindcol="医療・福祉_従業者数" data-bindname="b11" data-render-number="[',','.',0,'','']">医療・福祉業</th> <th data-bindcol="教育・学習支援業_従業者数" data-bindname="b12" data-render-number="[',','.',0,'','']">教育・学習支援業</th> <th data-bindcol="複合サービス事業_従業者数" data-bindname="b13" data-render-number="[',','.',0,'','']">複合サービス事業</th> <th data-bindcol="サービス業_従業者数" data-bindname="b14" data-render-number="[',','.',0,'','']">サービス業</th> <th data-bindcol="公務_従業者数" data-bindname="b15" data-render-number="[',','.',0,'','']">公務</th> <th data-bindcol="合計_従業者数" data-expression="{$b1}+{$b2}+{$b3}+{$b4}+{$b5}+{$b6}+{$b7}+{$b8}+{$b9}+{$b10}+{$b11}+{$b12}+{$b13}+{$b14}+{$b15}" data-expression-require="b1,b2,b3,b4,b5,b6,b7,b8,b9,b10,b11,b12,b13,b14,b15" data-render-number="[',','.',0,'','']">合計</th> </tr> </thead> </table> <p>注:統計表による伏字となっている箇所があります。</p> </div> <div data-workid="rdf1s10160i" data-title="平成19年以降" data-type="table" data-url="http://linkdata.org/api/1/rdf1s10160i/233617_statistics40c_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <table class="cell-border"> <thead> <tr> <th rowspan="2" data-bindcol="調査期日" data-dataformat="YYYY">年</th> <th colspan="18">事業所数</th> <th colspan="18">従業者数</th> </tr> <tr> <th data-bindcol="農林漁業_事業所数" data-bindname="a1" data-render-number="[',','.',0,'','']">農林漁業</th> <th data-bindcol="建設業_事業所数" data-bindname="a2" data-render-number="[',','.',0,'','']">建設業</th> <th data-bindcol="製造業_事業所数" data-bindname="a3" data-render-number="[',','.',0,'','']">製造業</th> <th data-bindcol="電気ガス水道業_事業所数" data-bindname="a4" data-render-number="[',','.',0,'','']">電気ガス水道業</th> <th data-bindcol="情報通信業_事業所数" data-bindname="a5" data-render-number="[',','.',0,'','']">情報通信業</th> <th data-bindcol="運輸業・郵便業_事業所数" data-bindname="a6" data-render-number="[',','.',0,'','']">運輸業・郵便業</th> <th data-bindcol="卸売業・小売業_事業所数" data-bindname="a7" data-render-number="[',','.',0,'','']">卸売・小売業</th> <th data-bindcol="金融業・保険業_事業所数" data-bindname="a8" data-render-number="[',','.',0,'','']">金融業・保険業</th> <th data-bindcol="不動産業_事業所数" data-bindname="a9" data-render-number="[',','.',0,'','']">不動産業</th> <th data-bindcol="学術研究・専門・技術サービス業_事業所数" data-bindname="a10" data-render-number="[',','.',0,'','']">学術研究・専門・技術サービス業</th> <th data-bindcol="宿泊業・飲食サービス業_事業所数" data-bindname="a11" data-render-number="[',','.',0,'','']">宿泊業・飲食サービス業</th> <th data-bindcol="生活関連サービス業・娯楽業_事業所数" data-bindname="a12" data-render-number="[',','.',0,'','']">生活関連サービス業・娯楽業</th> <th data-bindcol="教育・学習支援業_事業所数" data-bindname="a13" data-render-number="[',','.',0,'','']">教育・学習支援業</th> <th data-bindcol="医療・福祉_事業所数" data-bindname="a14" data-render-number="[',','.',0,'','']">医療・福祉業</th> <th data-bindcol="複合サービス事業_事業所数" data-bindname="a15" data-render-number="[',','.',0,'','']">複合サービス事業</th> <th data-bindcol="サービス業_事業所数" data-bindname="a16" data-render-number="[',','.',0,'','']">サービス業</th> <th data-bindcol="公務_事業所数" data-bindname="a17" data-render-number="[',','.',0,'','']">公務</th> <th data-bindcol="合計_事業所数" data-expression-require="a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14,a15,a16,a17" data-expression="{$a1}+{$a2}+{$a3}+{$a4}+{$a5}+{$a6}+{$a7}+{$a8}+{$a9}+{$a10}+{$a11}+{$a12}+{$a13}+{$a14}+{$a15}+{$a16}+{$a17}" data-render-number="[',','.',0,'','']">合計</th> <th data-bindcol="農林漁業_従業者数" data-bindname="b1" data-render-number="[',','.',0,'','']">農林漁業</th> <th data-bindcol="建設業_従業者数" data-bindname="b2" data-render-number="[',','.',0,'','']">建設業</th> <th data-bindcol="製造業_従業者数" data-bindname="b3" data-render-number="[',','.',0,'','']">製造業</th> <th data-bindcol="電気ガス水道業_従業者数" data-bindname="b4" data-render-number="[',','.',0,'','']">電気ガス水道業</th> <th data-bindcol="情報通信業_従業者数" data-bindname="b5" data-render-number="[',','.',0,'','']">情報通信業</th> <th data-bindcol="運輸業・郵便業_従業者数" data-bindname="b6" data-render-number="[',','.',0,'','']">運輸業・郵便業</th> <th data-bindcol="卸売業・小売業_従業者数" data-bindname="b7" data-render-number="[',','.',0,'','']">卸売・小売業</th> <th data-bindcol="金融業・保険業_従業者数" data-bindname="b8" data-render-number="[',','.',0,'','']">金融業・保険業</th> <th data-bindcol="不動産業_従業者数" data-bindname="b9" data-render-number="[',','.',0,'','']">不動産業</th> <th data-bindcol="学術研究・専門・技術サービス業_従業者数" data-bindname="b10" data-render-number="[',','.',0,'','']">学術研究・専門・技術サービス業</th> <th data-bindcol="宿泊業・飲食サービス業_従業者数" data-bindname="b11" data-render-number="[',','.',0,'','']">宿泊業・飲食サービス業</th> <th data-bindcol="生活関連サービス業・娯楽業_従業者数" data-bindname="b12" data-render-number="[',','.',0,'','']">生活関連サービス業・娯楽業</th> <th data-bindcol="教育・学習支援業_従業者数" data-bindname="b13" data-render-number="[',','.',0,'','']">教育・学習支援業</th> <th data-bindcol="医療・福祉_従業者数" data-bindname="b14" data-render-number="[',','.',0,'','']">医療・福祉業</th> <th data-bindcol="複合サービス事業_従業者数" data-bindname="b15" data-render-number="[',','.',0,'','']">複合サービス事業</th> <th data-bindcol="サービス業_従業者数" data-bindname="b16" data-render-number="[',','.',0,'','']">サービス業</th> <th data-bindcol="公務_従業者数" data-bindname="b17" data-render-number="[',','.',0,'','']">公務</th> <th data-bindcol="合計_従業者数" data-expression="{$b1}+{$b2}+{$b3}+{$b4}+{$b5}+{$b6}+{$b7}+{$b8}+{$b9}+{$b10}+{$b11}+{$b12}+{$b13}+{$b14}+{$b15}+{$b16}+{$b17}" data-expression-require="b1,b2,b3,b4,b5,b6,b7,b8,b9,b10,b11,b12,b13,b14,b15,b16,b17" data-render-number="[',','.',0,'','']">合計</th> </tr> </thead> </table> <p>注:統計表による伏字となっている箇所があります。</p> </div> </div> <!-- 表41_労働力状態別15歳以上人口 --> <div data-title="労働力状態別15歳以上人口"> <div data-workid="rdf1s10161i" data-title="労働力状態別15歳以上人口" data-type="table" data-url="http://linkdata.org/api/1/rdf1s10161i/233617_statistics41_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <table class="cell-border"> <thead> <tr> <th data-bindcol="年度" data-dataformat="YYYY">年度</th> <th data-bindcol="15歳以上人口" data-render-number="[',','.',0,'','']">15歳以上人口</th> <th data-bindcol="労働力人口" data-render-number="[',','.',0,'','']">労働力人口</th> <th data-bindcol="就業者" data-render-number="[',','.',0,'','']">就業者</th> <th data-bindcol="主に仕事" data-render-number="[',','.',0,'','']">主に仕事</th> <th data-bindcol="家事のほか仕事" data-render-number="[',','.',0,'','']">家事のほか仕事</th> <th data-bindcol="通学のほか仕事" data-render-number="[',','.',0,'','']">通学のほか仕事</th> <th data-bindcol="休業者" data-render-number="[',','.',0,'','']">休業者</th> <th data-bindcol="完全失業者" data-render-number="[',','.',0,'','']">完全失業者</th> <th data-bindcol="非労働力人口" data-render-number="[',','.',0,'','']">非労働力人口</th> </tr> </thead> </table> <p>国勢調査:各年10月1日現在</p> </div> </div> <!-- 表42_資源ごみ等の収集状況 --> <div data-title="資源ごみ等の収集状況"> <div data-workid="rdf1s10166i" data-title="資源ごみ等の収集状況" data-type="table" data-url="http://linkdata.org/api/1/rdf1s10166i/233617_statistics42_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <table class="cell-border"> <thead> <tr> <th data-bindcol="年度" data-dataformat="YYYY">年度</th> <th data-bindcol="スチール類" data-bindname="a1" data-render-number="[',','.',2,'','']">スチール類</th> <th data-bindcol="アルミ類" data-bindname="a2" data-render-number="[',','.',2,'','']">アルミ類</th> <th data-bindcol="生きビン類" data-bindname="a3" data-render-number="[',','.',2,'','']">生きビン類</th> <th data-bindcol="雑ビン類" data-bindname="a4" data-render-number="[',','.',2,'','']">雑ビン類</th> <th data-bindcol="プラスチック" data-bindname="a5" data-render-number="[',','.',2,'','']">プラスチック</th> <th data-bindcol="ペットボトル" data-bindname="a6" data-render-number="[',','.',2,'','']">ペットボトル</th> <th data-bindcol="トレー" data-bindname="a7" data-render-number="[',','.',2,'','']">トレー</th> <th data-bindcol="埋め立てごみ類" data-bindname="a8" data-render-number="[',','.',2,'','']">埋め立てごみ類</th> <th data-bindcol="乾電池類" data-bindname="a9" data-render-number="[',','.',2,'','']">乾電池類</th> <th data-bindcol="蛍光管" data-bindname="a10" data-render-number="[',','.',2,'','']">蛍光管</th> <th data-bindcol="粗大ごみ" data-bindname="a11" data-render-number="[',','.',2,'','']">粗大ごみ</th> <th data-bindcol="新聞" data-bindname="a12" data-render-number="[',','.',2,'','']">新聞</th> <th data-bindcol="ざつがみ" data-bindname="a13" data-render-number="[',','.',2,'','']">ざつがみ</th> <th data-bindcol="雑誌" data-bindname="a14" data-render-number="[',','.',2,'','']">雑誌</th> <th data-bindcol="ダンボール" data-bindname="a15" data-render-number="[',','.',2,'','']">ダンボール</th> <th data-bindcol="牛乳パック" data-bindname="a16" data-render-number="[',','.',2,'','']">牛乳パック</th> <th data-bindcol="布類" data-bindname="a17" data-render-number="[',','.',2,'','']">布類</th> <th data-bindcol="合計_事業所数" data-expression-require="a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14,a15,a16,a17" data-expression="{$a1}+{$a2}+{$a3}+{$a4}+{$a5}+{$a6}+{$a7}+{$a8}+{$a9}+{$a10}+{$a11}+{$a12}+{$a13}+{$a14}+{$a15}+{$a16}+{$a17}" data-render-number="[',','.',2,'','']">合計</th> </tr> </thead> </table> <p>単位:t</p> <p>新聞、ざつがみ、雑誌、ダンボール、牛乳バック、布類は集団回収分含む</p> <p>2000~2005年度は、乾電池類・蛍光管を合わせて各年度10.12t、13.36t、14.30t、 8.86t、10.55t、9.87tを回収(内訳算出不可)</p> </div> </div> <!-- 表46_建築確認申請等の状況 --> <div data-title="建築確認申請等の状況"> <div data-workid="rdf1s10249i" data-title="建築確認申請等の状況" data-type="table" data-url="http://linkdata.org/api/1/rdf1s10249i/233617_statistics46_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <table class="cell-border"> <thead> <tr> <th data-bindcol="年度" data-dataformat="YYYY">年度</th> <th data-bindcol="建築確認申請_町受付" data-bindname="a1" data-render-number="[',','.',0,'','']">建築確認申請(町受付)</th> <th data-bindcol="建築確認申請_民間受付" data-bindname="a2" data-render-number="[',','.',0,'','']">建築確認申請(民間受付)</th> <th data-bindcol="建築確認申請_合計" data-render-number="[',','.',0,'','']" data-expression-require="a1,a2" data-expression="{$a1}+{$a2}">建築確認申請(合計)</th> <th data-bindcol="工作物確認申請_昇降機除く" data-render-number="[',','.',0,'','']">工作物確認申請(昇降機除く)</th> <th data-bindcol="開発許可申請" data-render-number="[',','.',0,'','']">開発許可申請</th> <th data-bindcol="建築許可申請" data-render-number="[',','.',0,'','']">建築許可申請</th> <th data-bindcol="雨水浸透阻害行為許可申請" data-render-number="[',','.',0,'','']">雨水浸透阻害行為許可申請</th> </tr> </thead> </table> </div> </div> <!-- 表47_下水道普及状況 --> <div data-title="下水道普及状況"> <div data-workid="rdf1s10250i" data-title="下水道普及状況" data-type="table" data-url="http://linkdata.org/api/1/rdf1s10250i/233617_statistics47_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <table class="cell-border"> <thead> <tr> <th data-bindcol="年度" data-dataformat="YYYY">年度</th> <th data-bindcol="人口" data-bindname="a1" data-render-number="[',','.',0,'','']">人口(人)</th> <th data-bindcol="処理区域内人口" data-bindname="a2" data-render-number="[',','.',0,'','']">処理区域内人口(人)</th> <th data-bindcol="水洗化人口" data-bindname="a3" data-render-number="[',','.',0,'','']">水洗化人口(人)</th> <th data-bindcol="普及率" data-render-number="[',','.',1,'','%']" data-expression="100*{$a2}/{$a1}">普及率</th> <th data-bindcol="水洗化率" data-render-number="[',','.',1,'','%']" data-expression="100*{$a3}/{$a2}">水洗化率</th> <th data-bindcol="整備面積" data-render-number="[',','.',1,'','']">整備面積(ha)</th> </tr> </thead> </table> </div> </div> <!-- 表48_49_小学校の概要 --> <div data-title="小学校の概要"> <div data-workid="rdf1s10274i" data-title="南小学校" data-type="table" data-url="http://linkdata.org/api/1/rdf1s10274i/233617_statistics48_49a_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <table class="cell-border"> <thead> <tr> <th rowspan="3" data-bindcol="年度" data-dataformat="YYYY">年度</th> <th colspan="4">1学年</th> <th colspan="4">2学年</th> <th colspan="4">3学年</th> <th colspan="4">4学年</th> <th colspan="4">5学年</th> <th colspan="4">6学年</th> <th colspan="4">その他</th> <th colspan="4">合計</th> </tr> <tr> <th rowspan="2" data-bindcol="1学年_学級数" data-render-number="[',','.',0,'','']" data-bindname="class1">学級数</th> <th colspan="3">児童数</th> <th rowspan="2" data-bindcol="2学年_学級数" data-render-number="[',','.',0,'','']" data-bindname="class2">学級数</th> <th colspan="3">児童数</th> <th rowspan="2" data-bindcol="3学年_学級数" data-render-number="[',','.',0,'','']" data-bindname="class3">学級数</th> <th colspan="3">児童数</th> <th rowspan="2" data-bindcol="4学年_学級数" data-render-number="[',','.',0,'','']" data-bindname="class4">学級数</th> <th colspan="3">児童数</th> <th rowspan="2" data-bindcol="5学年_学級数" data-render-number="[',','.',0,'','']" data-bindname="class5">学級数</th> <th colspan="3">児童数</th> <th rowspan="2" data-bindcol="6学年_学級数" data-render-number="[',','.',0,'','']" data-bindname="class6">学級数</th> <th colspan="3">児童数</th> <th rowspan="2" data-bindcol="特別_学級数" data-render-number="[',','.',0,'','']" data-bindname="class_other">学級数</th> <th colspan="3">児童数</th> <th rowspan="2" data-bindcol="合計_学級数" data-render-number="[',','.',0,'','']" data-bindname="class" data-expression="{$class1}+{$class2}+{$class3}+{$class4}+{$class5}+{$class6}+{$class_other}">学級数</th> <th colspan="3">児童数</th> </tr> <tr> <th data-bindcol="1学年_男" data-render-number="[',','.',0,'','']" data-bindname="male1">男</th> <th data-bindcol="1学年_女" data-render-number="[',','.',0,'','']" data-bindname="female1">女</th> <th data-bindcol="1学年_計" data-render-number="[',','.',0,'','']" data-expression="{$male1}+{$female1}">計</th> <th data-bindcol="2学年_男" data-render-number="[',','.',0,'','']" data-bindname="male2">男</th> <th data-bindcol="2学年_女" data-render-number="[',','.',0,'','']" data-bindname="female2">女</th> <th data-bindcol="2学年_計" data-render-number="[',','.',0,'','']" data-expression="{$male2}+{$female2}">計</th> <th data-bindcol="3学年_男" data-render-number="[',','.',0,'','']" data-bindname="male3">男</th> <th data-bindcol="3学年_女" data-render-number="[',','.',0,'','']" data-bindname="female3">女</th> <th data-bindcol="3学年_計" data-render-number="[',','.',0,'','']" data-expression="{$male3}+{$female3}">計</th> <th data-bindcol="4学年_男" data-render-number="[',','.',0,'','']" data-bindname="male4">男</th> <th data-bindcol="4学年_女" data-render-number="[',','.',0,'','']" data-bindname="female4">女</th> <th data-bindcol="4学年_計" data-render-number="[',','.',0,'','']" data-expression="{$male4}+{$female4}">計</th> <th data-bindcol="5学年_男" data-render-number="[',','.',0,'','']" data-bindname="male5">男</th> <th data-bindcol="5学年_女" data-render-number="[',','.',0,'','']" data-bindname="female5">女</th> <th data-bindcol="5学年_計" data-render-number="[',','.',0,'','']" data-expression="{$male5}+{$female5}">計</th> <th data-bindcol="6学年_男" data-render-number="[',','.',0,'','']" data-bindname="male6">男</th> <th data-bindcol="6学年_女" data-render-number="[',','.',0,'','']" data-bindname="female6">女</th> <th data-bindcol="6学年_計" data-render-number="[',','.',0,'','']" data-expression="{$male6}+{$female6}">計</th> <th data-bindcol="特別_男" data-render-number="[',','.',0,'','']" data-bindname="male_other">男</th> <th data-bindcol="特別_女" data-render-number="[',','.',0,'','']" data-bindname="female_other">女</th> <th data-bindcol="特別_計" data-render-number="[',','.',0,'','']" data-expression="{$male_other}+{$female_other}">計</th> <th data-bindcol="合計_男" data-render-number="[',','.',0,'','']" data-expression="{$male1}+{$male2}+{$male3}+{$male4}+{$male5}+{$male6}+{$male_other}" data-bindname="male" data-expression-priority="1">男</th> <th data-bindcol="合計_女" data-render-number="[',','.',0,'','']" data-expression="{$female1}+{$female2}+{$female3}+{$female4}+{$female5}+{$female6}+{$female_other}" data-bindname="female" data-expression-priority="1">女</th> <th data-bindcol="合計_計" data-render-number="[',','.',0,'','']" data-expression="{$male}+{$female}">計</th> </tr> </thead> </table> <p>毎年5月1日現在</p> <p>その他:特殊・特別支援</p> </div> <div data-workid="rdf1s10275i" data-title="北小学校" data-type="table" data-url="http://linkdata.org/api/1/rdf1s10275i/233617_statistics48_49b_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <table class="cell-border"> <thead> <tr> <th rowspan="3" data-bindcol="年度" data-dataformat="YYYY">年度</th> <th colspan="4">1学年</th> <th colspan="4">2学年</th> <th colspan="4">3学年</th> <th colspan="4">4学年</th> <th colspan="4">5学年</th> <th colspan="4">6学年</th> <th colspan="4">その他</th> <th colspan="4">合計</th> </tr> <tr> <th rowspan="2" data-bindcol="1学年_学級数" data-render-number="[',','.',0,'','']" data-bindname="class1">学級数</th> <th colspan="3">児童数</th> <th rowspan="2" data-bindcol="2学年_学級数" data-render-number="[',','.',0,'','']" data-bindname="class2">学級数</th> <th colspan="3">児童数</th> <th rowspan="2" data-bindcol="3学年_学級数" data-render-number="[',','.',0,'','']" data-bindname="class3">学級数</th> <th colspan="3">児童数</th> <th rowspan="2" data-bindcol="4学年_学級数" data-render-number="[',','.',0,'','']" data-bindname="class4">学級数</th> <th colspan="3">児童数</th> <th rowspan="2" data-bindcol="5学年_学級数" data-render-number="[',','.',0,'','']" data-bindname="class5">学級数</th> <th colspan="3">児童数</th> <th rowspan="2" data-bindcol="6学年_学級数" data-render-number="[',','.',0,'','']" data-bindname="class6">学級数</th> <th colspan="3">児童数</th> <th rowspan="2" data-bindcol="特別_学級数" data-render-number="[',','.',0,'','']" data-bindname="class_other">学級数</th> <th colspan="3">児童数</th> <th rowspan="2" data-bindcol="合計_学級数" data-render-number="[',','.',0,'','']" data-bindname="class" data-expression="{$class1}+{$class2}+{$class3}+{$class4}+{$class5}+{$class6}+{$class_other}">学級数</th> <th colspan="3">児童数</th> </tr> <tr> <th data-bindcol="1学年_男" data-render-number="[',','.',0,'','']" data-bindname="male1">男</th> <th data-bindcol="1学年_女" data-render-number="[',','.',0,'','']" data-bindname="female1">女</th> <th data-bindcol="1学年_計" data-render-number="[',','.',0,'','']" data-expression="{$male1}+{$female1}">計</th> <th data-bindcol="2学年_男" data-render-number="[',','.',0,'','']" data-bindname="male2">男</th> <th data-bindcol="2学年_女" data-render-number="[',','.',0,'','']" data-bindname="female2">女</th> <th data-bindcol="2学年_計" data-render-number="[',','.',0,'','']" data-expression="{$male2}+{$female2}">計</th> <th data-bindcol="3学年_男" data-render-number="[',','.',0,'','']" data-bindname="male3">男</th> <th data-bindcol="3学年_女" data-render-number="[',','.',0,'','']" data-bindname="female3">女</th> <th data-bindcol="3学年_計" data-render-number="[',','.',0,'','']" data-expression="{$male3}+{$female3}">計</th> <th data-bindcol="4学年_男" data-render-number="[',','.',0,'','']" data-bindname="male4">男</th> <th data-bindcol="4学年_女" data-render-number="[',','.',0,'','']" data-bindname="female4">女</th> <th data-bindcol="4学年_計" data-render-number="[',','.',0,'','']" data-expression="{$male4}+{$female4}">計</th> <th data-bindcol="5学年_男" data-render-number="[',','.',0,'','']" data-bindname="male5">男</th> <th data-bindcol="5学年_女" data-render-number="[',','.',0,'','']" data-bindname="female5">女</th> <th data-bindcol="5学年_計" data-render-number="[',','.',0,'','']" data-expression="{$male5}+{$female5}">計</th> <th data-bindcol="6学年_男" data-render-number="[',','.',0,'','']" data-bindname="male6">男</th> <th data-bindcol="6学年_女" data-render-number="[',','.',0,'','']" data-bindname="female6">女</th> <th data-bindcol="6学年_計" data-render-number="[',','.',0,'','']" data-expression="{$male6}+{$female6}">計</th> <th data-bindcol="特別_男" data-render-number="[',','.',0,'','']" data-bindname="male_other">男</th> <th data-bindcol="特別_女" data-render-number="[',','.',0,'','']" data-bindname="female_other">女</th> <th data-bindcol="特別_計" data-render-number="[',','.',0,'','']" data-expression="{$male_other}+{$female_other}">計</th> <th data-bindcol="合計_男" data-render-number="[',','.',0,'','']" data-expression="{$male1}+{$male2}+{$male3}+{$male4}+{$male5}+{$male6}+{$male_other}" data-bindname="male" data-expression-priority="1">男</th> <th data-bindcol="合計_女" data-render-number="[',','.',0,'','']" data-expression="{$female1}+{$female2}+{$female3}+{$female4}+{$female5}+{$female6}+{$female_other}" data-bindname="female" data-expression-priority="1">女</th> <th data-bindcol="合計_計" data-render-number="[',','.',0,'','']" data-expression="{$male}+{$female}">計</th> </tr> </thead> </table> <p>毎年5月1日現在</p> <p>その他:特殊・特別支援</p> </div> <div data-workid="rdf1s10276i" data-title="西小学校" data-type="table" data-url="http://linkdata.org/api/1/rdf1s10276i/233617_statistics48_49c_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <table class="cell-border"> <thead> <tr> <th rowspan="3" data-bindcol="年度" data-dataformat="YYYY">年度</th> <th colspan="4">1学年</th> <th colspan="4">2学年</th> <th colspan="4">3学年</th> <th colspan="4">4学年</th> <th colspan="4">5学年</th> <th colspan="4">6学年</th> <th colspan="4">その他</th> <th colspan="4">合計</th> </tr> <tr> <th rowspan="2" data-bindcol="1学年_学級数" data-render-number="[',','.',0,'','']" data-bindname="class1">学級数</th> <th colspan="3">児童数</th> <th rowspan="2" data-bindcol="2学年_学級数" data-render-number="[',','.',0,'','']" data-bindname="class2">学級数</th> <th colspan="3">児童数</th> <th rowspan="2" data-bindcol="3学年_学級数" data-render-number="[',','.',0,'','']" data-bindname="class3">学級数</th> <th colspan="3">児童数</th> <th rowspan="2" data-bindcol="4学年_学級数" data-render-number="[',','.',0,'','']" data-bindname="class4">学級数</th> <th colspan="3">児童数</th> <th rowspan="2" data-bindcol="5学年_学級数" data-render-number="[',','.',0,'','']" data-bindname="class5">学級数</th> <th colspan="3">児童数</th> <th rowspan="2" data-bindcol="6学年_学級数" data-render-number="[',','.',0,'','']" data-bindname="class6">学級数</th> <th colspan="3">児童数</th> <th rowspan="2" data-bindcol="特別_学級数" data-render-number="[',','.',0,'','']" data-bindname="class_other">学級数</th> <th colspan="3">児童数</th> <th rowspan="2" data-bindcol="合計_学級数" data-render-number="[',','.',0,'','']" data-bindname="class" data-expression="{$class1}+{$class2}+{$class3}+{$class4}+{$class5}+{$class6}+{$class_other}">学級数</th> <th colspan="3">児童数</th> </tr> <tr> <th data-bindcol="1学年_男" data-render-number="[',','.',0,'','']" data-bindname="male1">男</th> <th data-bindcol="1学年_女" data-render-number="[',','.',0,'','']" data-bindname="female1">女</th> <th data-bindcol="1学年_計" data-render-number="[',','.',0,'','']" data-expression="{$male1}+{$female1}">計</th> <th data-bindcol="2学年_男" data-render-number="[',','.',0,'','']" data-bindname="male2">男</th> <th data-bindcol="2学年_女" data-render-number="[',','.',0,'','']" data-bindname="female2">女</th> <th data-bindcol="2学年_計" data-render-number="[',','.',0,'','']" data-expression="{$male2}+{$female2}">計</th> <th data-bindcol="3学年_男" data-render-number="[',','.',0,'','']" data-bindname="male3">男</th> <th data-bindcol="3学年_女" data-render-number="[',','.',0,'','']" data-bindname="female3">女</th> <th data-bindcol="3学年_計" data-render-number="[',','.',0,'','']" data-expression="{$male3}+{$female3}">計</th> <th data-bindcol="4学年_男" data-render-number="[',','.',0,'','']" data-bindname="male4">男</th> <th data-bindcol="4学年_女" data-render-number="[',','.',0,'','']" data-bindname="female4">女</th> <th data-bindcol="4学年_計" data-render-number="[',','.',0,'','']" data-expression="{$male4}+{$female4}">計</th> <th data-bindcol="5学年_男" data-render-number="[',','.',0,'','']" data-bindname="male5">男</th> <th data-bindcol="5学年_女" data-render-number="[',','.',0,'','']" data-bindname="female5">女</th> <th data-bindcol="5学年_計" data-render-number="[',','.',0,'','']" data-expression="{$male5}+{$female5}">計</th> <th data-bindcol="6学年_男" data-render-number="[',','.',0,'','']" data-bindname="male6">男</th> <th data-bindcol="6学年_女" data-render-number="[',','.',0,'','']" data-bindname="female6">女</th> <th data-bindcol="6学年_計" data-render-number="[',','.',0,'','']" data-expression="{$male6}+{$female6}">計</th> <th data-bindcol="特別_男" data-render-number="[',','.',0,'','']" data-bindname="male_other">男</th> <th data-bindcol="特別_女" data-render-number="[',','.',0,'','']" data-bindname="female_other">女</th> <th data-bindcol="特別_計" data-render-number="[',','.',0,'','']" data-expression="{$male_other}+{$female_other}">計</th> <th data-bindcol="合計_男" data-render-number="[',','.',0,'','']" data-expression="{$male1}+{$male2}+{$male3}+{$male4}+{$male5}+{$male6}+{$male_other}" data-bindname="male" data-expression-priority="1">男</th> <th data-bindcol="合計_女" data-render-number="[',','.',0,'','']" data-expression="{$female1}+{$female2}+{$female3}+{$female4}+{$female5}+{$female6}+{$female_other}" data-bindname="female" data-expression-priority="1">女</th> <th data-bindcol="合計_計" data-render-number="[',','.',0,'','']" data-expression="{$male}+{$female}">計</th> </tr> </thead> </table> <p>毎年5月1日現在</p> <p>その他:特殊・特別支援</p> </div> </div> <!-- 表50_51_中学校の概要 --> <div data-title="中学校の概要"> <div data-workid="rdf1s10253i" data-title="大口中学校" data-type="table" data-url="http://linkdata.org/api/1/rdf1s10253i/233617_statistics50_51a_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <table class="cell-border"> <thead> <tr> <th rowspan="3" data-bindcol="年度" data-dataformat="YYYY">年度</th> <th colspan="4">1学年</th> <th colspan="4">2学年</th> <th colspan="4">3学年</th> <th colspan="4">その他</th> <th colspan="4">合計</th> </tr> <tr> <th rowspan="2" data-bindcol="1学年_学級数" data-render-number="[',','.',0,'','']" data-bindname="class1">学級数</th> <th colspan="3">生徒数</th> <th rowspan="2" data-bindcol="2学年_学級数" data-render-number="[',','.',0,'','']" data-bindname="class2">学級数</th> <th colspan="3">生徒数</th> <th rowspan="2" data-bindcol="3学年_学級数" data-render-number="[',','.',0,'','']" data-bindname="class3">学級数</th> <th colspan="3">生徒数</th> <th rowspan="2" data-bindcol="特殊_学級数" data-render-number="[',','.',0,'','']" data-bindname="class_other">学級数</th> <th colspan="3">生徒数</th> <th rowspan="2" data-bindcol="合計_学級数" data-render-number="[',','.',0,'','']" data-bindname="class" data-expression="{$class1}+{$class2}+{$class3}+{$class_other}">学級数</th> <th colspan="3">生徒数</th> </tr> <tr> <th data-bindcol="1学年_男" data-render-number="[',','.',0,'','']" data-bindname="male1">男</th> <th data-bindcol="1学年_女" data-render-number="[',','.',0,'','']" data-bindname="female1">女</th> <th data-bindcol="1学年_計" data-render-number="[',','.',0,'','']" data-expression="{$male1}+{$female1}">計</th> <th data-bindcol="2学年_男" data-render-number="[',','.',0,'','']" data-bindname="male2">男</th> <th data-bindcol="2学年_女" data-render-number="[',','.',0,'','']" data-bindname="female2">女</th> <th data-bindcol="2学年_計" data-render-number="[',','.',0,'','']" data-expression="{$male2}+{$female2}">計</th> <th data-bindcol="3学年_男" data-render-number="[',','.',0,'','']" data-bindname="male3">男</th> <th data-bindcol="3学年_女" data-render-number="[',','.',0,'','']" data-bindname="female3">女</th> <th data-bindcol="3学年_計" data-render-number="[',','.',0,'','']" data-expression="{$male3}+{$female3}">計</th> <th data-bindcol="特殊_男" data-render-number="[',','.',0,'','']" data-bindname="male_other">男</th> <th data-bindcol="特殊_女" data-render-number="[',','.',0,'','']" data-bindname="female_other">女</th> <th data-bindcol="特殊_計" data-render-number="[',','.',0,'','']" data-expression="{$male_other}+{$female_other}">計</th> <th data-bindcol="合計_男" data-render-number="[',','.',0,'','']" data-expression="{$male1}+{$male2}+{$male3}+{$male_other}" data-bindname="male" data-expression-priority="1">男</th> <th data-bindcol="合計_女" data-render-number="[',','.',0,'','']" data-expression="{$female1}+{$female2}+{$female3}+{$female_other}" data-bindname="female" data-expression-priority="1">女</th> <th data-bindcol="合計_計" data-render-number="[',','.',0,'','']" data-expression="{$male}+{$female}">計</th> </tr> </thead> </table> <p>毎年5月1日現在</p> <p>その他:特殊・特別支援</p> </div> <div data-workid="rdf1s10277i" data-title="北部中学校" data-type="table" data-url="http://linkdata.org/api/1/rdf1s10277i/233617_statistics50_51b_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <table class="cell-border"> <thead> <tr> <th rowspan="3" data-bindcol="年度" data-dataformat="YYYY">年度</th> <th colspan="4">1学年</th> <th colspan="4">2学年</th> <th colspan="4">3学年</th> <th colspan="4">その他</th> <th colspan="4">合計</th> </tr> <tr> <th rowspan="2" data-bindcol="1学年_学級数" data-render-number="[',','.',0,'','']" data-bindname="class1">学級数</th> <th colspan="3">生徒数</th> <th rowspan="2" data-bindcol="2学年_学級数" data-render-number="[',','.',0,'','']" data-bindname="class2">学級数</th> <th colspan="3">生徒数</th> <th rowspan="2" data-bindcol="3学年_学級数" data-render-number="[',','.',0,'','']" data-bindname="class3">学級数</th> <th colspan="3">生徒数</th> <th rowspan="2" data-bindcol="特殊_学級数" data-render-number="[',','.',0,'','']" data-bindname="class_other">学級数</th> <th colspan="3">生徒数</th> <th rowspan="2" data-bindcol="合計_学級数" data-render-number="[',','.',0,'','']" data-bindname="class" data-expression="{$class1}+{$class2}+{$class3}+{$class_other}">学級数</th> <th colspan="3">生徒数</th> </tr> <tr> <th data-bindcol="1学年_男" data-render-number="[',','.',0,'','']" data-bindname="male1">男</th> <th data-bindcol="1学年_女" data-render-number="[',','.',0,'','']" data-bindname="female1">女</th> <th data-bindcol="1学年_計" data-render-number="[',','.',0,'','']" data-expression="{$male1}+{$female1}">計</th> <th data-bindcol="2学年_男" data-render-number="[',','.',0,'','']" data-bindname="male2">男</th> <th data-bindcol="2学年_女" data-render-number="[',','.',0,'','']" data-bindname="female2">女</th> <th data-bindcol="2学年_計" data-render-number="[',','.',0,'','']" data-expression="{$male2}+{$female2}">計</th> <th data-bindcol="3学年_男" data-render-number="[',','.',0,'','']" data-bindname="male3">男</th> <th data-bindcol="3学年_女" data-render-number="[',','.',0,'','']" data-bindname="female3">女</th> <th data-bindcol="3学年_計" data-render-number="[',','.',0,'','']" data-expression="{$male3}+{$female3}">計</th> <th data-bindcol="特殊_男" data-render-number="[',','.',0,'','']" data-bindname="male_other">男</th> <th data-bindcol="特殊_女" data-render-number="[',','.',0,'','']" data-bindname="female_other">女</th> <th data-bindcol="特殊_計" data-render-number="[',','.',0,'','']" data-expression="{$male_other}+{$female_other}">計</th> <th data-bindcol="合計_男" data-render-number="[',','.',0,'','']" data-expression="{$male1}+{$male2}+{$male3}+{$male_other}" data-bindname="male" data-expression-priority="1">男</th> <th data-bindcol="合計_女" data-render-number="[',','.',0,'','']" data-expression="{$female1}+{$female2}+{$female3}+{$female_other}" data-bindname="female" data-expression-priority="1">女</th> <th data-bindcol="合計_計" data-render-number="[',','.',0,'','']" data-expression="{$male}+{$female}">計</th> </tr> </thead> </table> <p>毎年5月1日現在</p> <p>その他:特殊・特別支援</p> <p>平成20年度に大口中学校に統合</p> </div> </div> <!-- 表52_53_各施設の利用状況 --> <div data-title="各施設の利用状況"> <div data-workid="rdf1s10267i" data-title="図書館" data-type="table" data-url="http://linkdata.org/api/1/rdf1s10267i/233617_statistics52_53a_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <table class="cell-border"> <thead> <tr> <th rowspan="2" data-bindcol="年度" data-dataformat="YYYY">年度</th> <th rowspan="2" data-bindcol="開館日数" data-render-number="[',','.',0,'','']">開館日数</th> <th rowspan="2" data-bindcol="入館者数" data-render-number="[',','.',0,'','']">入館者数</th> <th colspan="8">貸出点数</th> </tr> <tr> <th data-bindcol="貸出件数_一般図書" data-render-number="[',','.',0,'','']" data-bindname="number1">一般図書</th> <th data-bindcol="貸出件数_児童図書" data-render-number="[',','.',0,'','']" data-bindname="number2">児童図書</th> <th data-bindcol="貸出件数_郷土資料" data-render-number="[',','.',0,'','']" data-bindname="number3">郷土資料</th> <th data-bindcol="貸出件数_雑誌" data-render-number="[',','.',0,'','']" data-bindname="number4">雑誌</th> <th data-bindcol="貸出件数_CD" data-render-number="[',','.',0,'','']" data-bindname="number5">CD</th> <th data-bindcol="貸出件数_ビデオ" data-render-number="[',','.',0,'','']" data-bindname="number6">ビデオ</th> <th data-bindcol="貸出件数_DVD" data-render-number="[',','.',0,'','']" data-bindname="number7">DVD</th> <th data-bindcol="貸出件数_合計" data-render-number="[',','.',0,'','']" data-expression="{$number1}+{$number2}+{$number3}+{$number4}+{$number5}+{$number6}+{$number7}" data-expression-require="number1,number2,number3,number4,number5,number6,number7">合計</th> </tr> </thead> </table> <p>平成26年度は、中央公民館の耐震改修工事のため入館者のカウントを行っていません。</p> </div> <div data-workid="rdf1s10268i" data-title="温水プール" data-type="table" data-url="http://linkdata.org/api/1/rdf1s10268i/233617_statistics52_53b_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <table class="cell-border"> <thead> <tr> <th rowspan="2" data-bindcol="年度" data-dataformat="YYYY">年度</th> <th rowspan="2" data-bindcol="開館日数" data-render-number="[',','.',0,'','']">開館日数</th> <th colspan="4">利用者数</th> </tr> <tr> <th data-bindcol="利用者数_一般" data-render-number="[',','.',0,'','']" data-bindname="number1">一般</th> <th data-bindcol="利用者数_小中学生" data-render-number="[',','.',0,'','']" data-bindname="number2">小中学生</th> <th data-bindcol="利用者数_幼児" data-render-number="[',','.',0,'','']" data-bindname="number3">幼児</th> <th data-bindcol="利用者数_合計" data-render-number="[',','.',0,'','']" data-expression="{$number1}+{$number2}+{$number3}" data-expression-require="number1,number2,number3">合計</th> </tr> </thead> </table> </div> <div data-workid="rdf1s10269i" data-title="体育施設" data-type="table" data-url="http://linkdata.org/api/1/rdf1s10269i/233617_statistics52_53c_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <table class="cell-border"> <thead> <tr> <th rowspan="2" data-bindcol="年度" data-dataformat="YYYY">年度</th> <th rowspan="2" data-bindcol="野球グラウンド" data-render-number="[',','.',0,'','']">野球グラウンド</th> <th rowspan="2" data-bindcol="テニスコート" data-render-number="[',','.',0,'','']">町テニスコート</th> <th colspan="2">総合運動場</th> <th colspan="2">総合テニスコート</th> <th rowspan="2" data-bindcol="二ツ屋グラウンド" data-render-number="[',','.',0,'','']">二ツ屋グラウンド</th> <th colspan="2">わかしゃち国体記念運動公園</th> <th rowspan="2" data-bindcol="河北グラウンド" data-render-number="[',','.',0,'','']">河北グラウンド</th> <th rowspan="2" data-bindcol="秋田グラウンド" data-render-number="[',','.',0,'','']">秋田グラウンド</th> <th rowspan="2" data-bindcol="屋内運動場" data-render-number="[',','.',0,'','']">屋内運動場</th> </tr> <tr> <th data-bindcol="総合運動場" data-render-number="[',','.',0,'','']">総数</th> <th data-bindcol="総合運動場_ナイター" data-render-number="[',','.',0,'','']">ナイター</th> <th data-bindcol="総合運動場テニスコート" data-render-number="[',','.',0,'','']">総数</th> <th data-bindcol="総合運動場テニスコート_ナイター" data-render-number="[',','.',0,'','']">ナイター</th> <th data-bindcol="わかしゃち国体記念運動公園" data-render-number="[',','.',0,'','']">総数</th> <th data-bindcol="わかしゃち国体記念運動公園_ナイター" data-render-number="[',','.',0,'','']">ナイター</th> </tr> </thead> </table> </div> <div data-workid="rdf1s10272i" data-title="野外活動施設" data-type="table" data-url="http://linkdata.org/api/1/rdf1s10272i/233617_statistics52_53d_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <table class="cell-border"> <thead> <tr> <th data-bindcol="年度" data-dataformat="YYYY">年度</th> <th data-bindcol="フィールドアスレチック" data-render-number="[',','.',0,'','']">フィールドアスレチック</th> <th data-bindcol="キャンプ場" data-render-number="[',','.',0,'','']">キャンプ場</th> </tr> </thead> </table> </div> <div data-workid="rdf1s10273i" data-title="ほほえみプラザ" data-type="table" data-url="http://linkdata.org/api/1/rdf1s10273i/233617_statistics52_53e_rdf.json" data-info="true" data-lengthChange="true" data-paging="true" data-ordering="true"> <table class="cell-border"> <thead> <tr> <th rowspan="2" data-bindcol="年度" data-dataformat="YYYY">年度</th> <th colspan="2">トレーニングセンター</th> <th colspan="2">研修センター</th> </tr> <tr> <th data-bindcol="開館日数_トレーニングセンター" data-render-number="[',','.',0,'','']">開館日数</th> <th data-bindcol="利用者数_トレーニングセンター" data-render-number="[',','.',0,'','']">利用者数</th> <th data-bindcol="開館日数_研修センター" data-render-number="[',','.',0,'','']">開館日数</th> <th data-bindcol="利用者数_研修センター" data-render-number="[',','.',0,'','']">利用者数</th> </tr> </thead> </table> </div> </div> </div> </div>
Preview
Input Data
ReadMe
Snapshots
LinkData Work
Table Data
大口町西小学校の児童数等
Contributor:大口町
Update:Sep 10, 2024
10 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表48「小学校の概要」のデータです。
233617_statistics48_49c
大口町民憲章
Contributor:大口町
Update:Jun 26, 2023
119 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表01「大口町民憲章」のデータです。
233617_statistics01
大口町年齢階層別人口
Contributor:大口町
Update:Aug 2, 2023
14 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表09「年齢階層別人口」のデータです。
233617_statistics09b
大口町建築確認申請等の状況
Contributor:大口町
Update:Sep 10, 2024
19 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表46「建築確認申請等の状況」のデータです。
233617_statistics46
大口町長選挙投票状況
Contributor:大口町
Update:Sep 21, 2023
19 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表24-26「主要選挙投票状況」のデータです。
233617_statistics24_26e
大口町目的別一般会計歳出決算額
Contributor:大口町
Update:Sep 10, 2024
16 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表14-15「目的別一般会計歳出決算額」のデータです。
233617_statistics14_15
大口町議会議員選挙投票状況
Contributor:大口町
Update:Sep 21, 2023
18 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表24-26「主要選挙投票状況」のデータです。
233617_statistics24_26f
大口町福祉医療の状況
Contributor:大口町
Update:Sep 10, 2024
25 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表36「福祉医療の状況」のデータです。
233617_statistics36
大口町車種別保有自動車数
Contributor:大口町
Update:Sep 10, 2024
23 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表21「車種別保有自動車数」のデータです。
233617_statistics21
大口町国民年金受給状況
Contributor:大口町
Update:Sep 10, 2024
36 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表30-31「国民年金受給状況」のデータです。
233617_statistics30_31a
233617_statistics30_31b
大口町衆議院議員選挙投票状況
Contributor:大口町
Update:Sep 21, 2023
35 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表24-26「主要選挙投票状況」のデータです。
233617_statistics24_26a1
233617_statistics24_26a2
大口町がん検診受診者数
Contributor:大口町
Update:Sep 10, 2024
24 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表37「がん検診、 基本健康診査、わかば健診受診者数」のデータです。
233617_statistics37a
大口町のあゆみ
Contributor:大口町
Update:Sep 10, 2024
47 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表04「大口町のあゆみ」のデータです。
233617_statistics04
大口町下水道普及状況
Contributor:大口町
Update:Sep 10, 2024
21 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表47「下水道普及状況」のデータです。
233617_statistics47
大口町国民健康保険加入状況
Contributor:大口町
Update:Sep 10, 2024
20 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表32-34「国民健康保険の状況」のデータです。
233617_statistics32_34a
大口町南小学校の児童数等
Contributor:大口町
Update:Sep 10, 2024
18 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表48「小学校の概要」のデータです。
233617_statistics48_49a
大口町体育施設の利用状況
Contributor:大口町
Update:Sep 10, 2024
14 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表52-53「各施設の利用状況」のデータです。
233617_statistics52_53c
大口町老人保健の状況
Contributor:大口町
Update:Sep 28, 2023
19 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表35「老人保健・後期高齢者医療の状況」のデータです。
233617_statistics35a
大口町東保育園の園児数等
Contributor:大口町
Update:Aug 16, 2024
4 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表28「保育園児数等」のデータです。
233617_statistics28_29e
[
]
大口町愛知県知事選挙投票状況
Contributor:大口町
Update:Sep 21, 2023
13 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表24-26「主要選挙投票状況」のデータです。
233617_statistics24_26c
大口町ほほえみプラザの利用状況
Contributor:大口町
Update:Sep 10, 2024
17 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表52-53「各施設の利用状況」のデータです。
233617_statistics52_53e
大口町救急出動状況
Contributor:大口町
Update:Sep 10, 2024
19 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表23「救急出動状況」のデータです。
233617_statistics23b
大口町北保育園の園児数等
Contributor:大口町
Update:Sep 10, 2024
6 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表28「保育園児数等」のデータです。
233617_statistics28_29d
[
]
大口町北小学校の児童数等
Contributor:大口町
Update:Sep 10, 2024
17 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表48「小学校の概要」のデータです。
233617_statistics48_49b
大口町国勢調査人口
Contributor:大口町
Update:Aug 2, 2023
33 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表09「国勢調査人口」のデータです。
233617_statistics09a
大口町の気象
Contributor:大口町
Update:Sep 10, 2024
69 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表03「町の気象」のデータです。
233617_statistics03
大口町大口中学校の生徒数等
Contributor:大口町
Update:Sep 10, 2024
30 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表50-51「中学校の概要」のデータです。
233617_statistics50_51a
大口町交通事故状況
Contributor:大口町
Update:Sep 10, 2024
29 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表22「交通事故状況」のデータです。
233617_statistics22
大口町野外活動施設の利用状況
Contributor:大口町
Update:Sep 10, 2024
18 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表52-53「各施設の利用状況」のデータです。
233617_statistics52_53d
大口町西保育園の園児数等
Contributor:大口町
Update:Sep 10, 2024
7 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表28「保育園児数等」のデータです。
233617_statistics28_29c
大口町国民健康保険給付状況
Contributor:大口町
Update:Sep 10, 2024
30 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表32-34「国民健康保険の状況」のデータです。
233617_statistics32_34b
大口町世帯家族類型別世帯数
Contributor:大口町
Update:Aug 4, 2023
14 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表11「世帯の家族類型別一般世帯数」のデータです。
233617_statistics11
大口町町税決算額
Contributor:大口町
Update:Sep 10, 2024
22 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表18「町税決算額」のデータです。
233617_statistics18
大口町参議院議員選挙投票状況
Contributor:大口町
Update:Sep 21, 2023
19 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表24-26「主要選挙投票状況」のデータです。
233617_statistics24_26b1
233617_statistics24_26b2
大口町南保育園の園児数等
Contributor:大口町
Update:Sep 10, 2024
9 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表28「保育園児数等」のデータです。
233617_statistics28_29a
大口町年齢別構成人口
Contributor:大口町
Update:Sep 10, 2024
31 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表07-08「年齢別構成人口」のデータです。
233617_statistics07_08
大口町火災状況
Contributor:大口町
Update:Sep 10, 2024
27 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表23「火災の状況」のデータです。
233617_statistics23a
特別会計歳入歳出決算額
Contributor:大口町
Update:Sep 10, 2024
17 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表19-20「特別会計歳入歳出決算額」のデータです。
233617_statistics19_20
大口町一般会計歳入決算額
Contributor:大口町
Update:Sep 10, 2024
20 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表12-13「一般会計歳入決算額」のデータです。
233617_statistics12_13
大口町北部中学校の生徒数等
Contributor:大口町
Update:Aug 15, 2024
9 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表50-51「中学校の概要」のデータです。
233617_statistics50_51b
大口町中長期在留者数
Contributor:大口町
Update:Sep 10, 2024
35 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表06「中長期在留者数」のデータです。
233617_statistics06b
大口町流入流出人口
Contributor:大口町
Update:Aug 4, 2023
23 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表10「流入流出人口」のデータです。
233617_statistics10
大口町の沿革、位置
Contributor:大口町
Update:Jun 26, 2023
43 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表02「町の沿革、位置のデータです。
233617_statistics02
大口町外国人登録者数
Contributor:大口町
Update:Aug 1, 2023
27 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表06「外国人登録者数」のデータです。
233617_statistics06a
大口町労働力状態別15歳以上人口
Contributor:大口町
Update:Jan 13, 2024
21 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表41「労働力状態別15歳以上人口」のデータです。
233617_statistics41
大口町産業(大分類)別事業所及び従業者数
Contributor:大口町
Update:Sep 10, 2024
57 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表40「産業(大分類)別事業所及び従業者数」のデータです。
233617_statistics40a
233617_statistics40b
233617_statistics40c
大口町後期高齢者医療制度被保険者数
Contributor:大口町
Update:Sep 10, 2024
14 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表35「老人保健・後期高齢者医療の状況」のデータです。
233617_statistics35b
大口町資源ごみ等の収集状況
Contributor:大口町
Update:Sep 10, 2024
22 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表42「資源ごみ等の収集状況」のデータです。
233617_statistics42
大口町温水プールの利用状況
Contributor:大口町
Update:Sep 10, 2024
17 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表52-53「各施設の利用状況」のデータです。
233617_statistics52_53b
大口町性質別一般会計歳出決算額
Contributor:大口町
Update:Sep 10, 2024
29 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表16-17「性質別一般会計歳出決算額」のデータです。
233617_statistics16_17
大口町住民票等の交付状況
Contributor:大口町
Update:Sep 10, 2024
20 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表27「戸籍謄抄本、住民票等の交付状況」のデータです。
233617_statistics27
大口町専業、兼業別農家数等
Contributor:大口町
Update:Jan 13, 2024
26 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表39「専業、兼業別農家数等」のデータです。
233617_statistics39
大口町戸籍関係届出件数
Contributor:大口町
Update:Sep 10, 2024
18 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表06「戸籍関係届出件数」のデータです。
233617_statistics06c
大口町愛知県議会議員選挙投票状況
Contributor:大口町
Update:Sep 21, 2023
18 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表24-26「主要選挙投票状況」のデータです。
233617_statistics24_26d
大口町基本健康診査受診者数
Contributor:大口町
Update:Oct 2, 2023
16 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表37「がん検診、 基本健康診査、わかば健診受診者数」のデータです。
233617_statistics37b
大口町農地転用実績
Contributor:大口町
Update:Sep 10, 2024
26 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表38「農地転用実績」のデータです。
233617_statistics38
大口町わかば健診受診者数
Contributor:大口町
Update:Sep 10, 2024
23 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表37「がん検診、 基本健康診査、わかば健診受診者数」のデータです。
233617_statistics37c
大口町中保育園の園児数等
Contributor:大口町
Update:Sep 10, 2024
8 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表28「保育園児数等」のデータです。
233617_statistics28_29b
大口町の人口
Contributor:大口町
Update:Sep 10, 2024
70 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表05「町の人口」のデータです。
233617_statistics05
大口町図書館の利用状況
Contributor:大口町
Update:Sep 10, 2024
19 Downloads, 1 Applications
大口町の統計(数字で見る町民生活)の表52-53「各施設の利用状況」のデータです。
233617_statistics52_53a
Add LinkData work(LinkData)
Link http://app.linkdata.org/run/app1s1909i?tab=readme
https://cdn.jsdelivr.net/npm/chart.js
jarty-0.2.2.js
eval-calculation.js
https://unpkg.com/encoding-japanese@2.1.0/encoding.min.js
https://code.jquery.com/jquery-3.7.1.min.js
https://cdn.datatables.net/v/dt/dt-1.13.5/b-2.4.1/b-html5-2.4.1/b-print-2.4.1/date-1.5.1/r-2.5.0/rg-1.4.0/datatables.min.js
Work
Add
Clear
insert work id or work name.