Skip to content

Instantly share code, notes, and snippets.

@shimizu
Last active February 15, 2017 13:16
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shimizu/9677a62ae65decd646a3 to your computer and use it in GitHub Desktop.
Save shimizu/9677a62ae65decd646a3 to your computer and use it in GitHub Desktop.
Rain drop -Japan-
if(!d3.geo2circle) d3.geo2circle = function(coordinates, radius) {
//circle 生成用の変数
var circle = [],
length = 0,
lengths = [length],
polygon = d3.geom.polygon(coordinates),
p0 = coordinates[0],
p1,
x,
y,
i = 0,
n = coordinates.length;
// coordinatesの前後間の距離を求める
while (++i < n) {
p1 = coordinates[i];
//console.log(p1);
x = p1[0] - p0[0];
y = p1[1] - p0[1];
lengths.push(length += Math.sqrt(x * x + y * y));
p0 = p1;
}
var area = polygon.area(),
radius = (radius) ? radius : Math.sqrt(Math.abs(area) / Math.PI),
centroid = polygon.centroid(-1 / (6 * area)),
angle,
i = -1,
k = 2 * Math.PI / lengths[lengths.length - 1];
// 三角関数による円の描画
while (++i < n) {
angle = lengths[i] * k;
circle.push([
centroid[0] + radius * Math.cos(angle),
centroid[1] + radius * Math.sin(angle)
]);
}
return circle;
};
<!DOCTYPE html>
<meta charset="utf-8">
<title>Rain drop -Japan-</title>
<style>
html, body, svg {
width:100%;
height:100%;
margin: 0px;
padding: 0px;
}
</style>
<body>
<svg>
</svg>
<br>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.3/d3.min.js"></script>
<script src="d3.geo2circle.js"></script>
<script>
var projection = d3.geo
.mercator()
.scale(1500)
.translate([500 , 350])
.center([139.0032936, 36.3219088]);
var path = d3.geo.path().projection(projection); 
d3.json('todofuken.geojson', function(json) {
var svg = d3.select('svg')
var calcCoords = function(polygon, properties) {
var geoCoords = polygon.map(projection);
var scatterCoords = d3.geo2circle(geoCoords, 6);
var scatterPathString = 'M' + scatterCoords.join('L') + 'Z';
var geoPathString = 'M' + geoCoords.join('L') + 'Z';
return { scatterPath: scatterPathString, geoPath: geoPathString , properties:properties};
};
var pathDataSet = [];
for (var i = 0; i < json.features.length; i++) {
var geometry = json.features[i].geometry;
var properties =json.features[i].properties;
properties.geometry = geometry;
if (geometry.type == 'Polygon') {
pathDataSet.push(calcCoords(geometry.coordinates[0], properties));
} else if (geometry.type == 'MultiPolygon') {
geometry.coordinates.forEach(function(coordinates){
pathDataSet.push(calcCoords(coordinates[0], properties));
});
}
}
var raindrop = svg.selectAll('path')
.data(pathDataSet )
.enter()
.append('path')
.attr({
'stroke':'white',
'fill':'#6666ff',
'opacity':0.9
})
.attr('d', function(d){ return d.scatterPath } )
.attr('transform', function(d, i){
var center = path.centroid(d.properties.geometry);
var y = ~~center[1];
return 'translate(0,'+(0-y)+')';
});
var update = function(){
raindrop
.transition()
.duration(1000)
.delay(function(d){ return (Math.random() * 10 ) * 1000 })
.attr('opacity', 0.6)
.attr('transform','translate(0,0)')
.attr('d', function(d){ return d.geoPath } )
.each("end", function () {
d3.select(this)
.transition()
.duration(1000)
.delay(function(d){ return (Math.random() * 10 ) * 1000 })
.attr("opacity", 0)
.each("end", function () {
d3.select(this).attr('d', function(d){ return d.scatterPath } )
.attr('transform', function(d, i){
var center = path.centroid(d.properties.geometry);
var y = ~~center[1];
return 'translate(0,'+(0-y)+')';
})
.attr("opacity", 0.9);
});
});
setTimeout(update, 1000 * 10);
}
update();
});
</script>
Display the source blob
Display the rendered blob
Raw
{
"type": "FeatureCollection",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
"features": [
{ "type": "Feature", "properties": { "ObjName": "Tottori", "JIS-CODE": 31, "jis": "31", "pref": "鳥取県", "jobs_ratio": "0.52", "fullness_r": "10.3" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.37516784667969, 35.605754852294922 ], [ 134.5146484375, 35.353061676025391 ], [ 134.51524353027344, 35.275917053222656 ], [ 134.39930725097656, 35.241485595703125 ], [ 134.17704772949219, 35.175277709960937 ], [ 134.14448547363281, 35.264957427978516 ], [ 134.0184326171875, 35.306652069091797 ], [ 133.86964416503906, 35.291091918945313 ], [ 133.59532165527344, 35.337936401367188 ], [ 133.5220947265625, 35.187335968017578 ], [ 133.29464721679687, 35.098278045654297 ], [ 133.26530456542969, 35.057861328125 ], [ 133.1331787109375, 35.073844909667969 ], [ 133.19047546386719, 35.171470642089844 ], [ 133.30670166015625, 35.271488189697266 ], [ 133.32040405273438, 35.413665771484375 ], [ 133.50469970703125, 35.514747619628906 ], [ 133.85374450683594, 35.501678466796875 ], [ 134.19090270996094, 35.535358428955078 ], [ 134.37516784667969, 35.605754852294922 ] ] ] ] } },
{ "type": "Feature", "properties": { "ObjName": "Nara", "JIS-CODE": 29, "jis": "29", "pref": "奈良県", "jobs_ratio": "0.4", "fullness_r": "13.1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 136.05369567871094, 34.737281799316406 ], [ 136.05523681640625, 34.577236175537109 ], [ 136.2244873046875, 34.494586944580078 ], [ 136.07330322265625, 34.391071319580078 ], [ 136.11936950683594, 34.318881988525391 ], [ 136.092041015625, 34.030254364013672 ], [ 136.00019836425781, 34.009506225585937 ], [ 135.90690612792969, 33.916290283203125 ], [ 135.88389587402344, 33.906787872314453 ], [ 135.874267578125, 33.862281799316406 ], [ 135.8602294921875, 33.871780395507813 ], [ 135.60209655761719, 33.908348083496094 ], [ 135.63699340820312, 33.974632263183594 ], [ 135.54751586914062, 34.080387115478516 ], [ 135.63717651367188, 34.207298278808594 ], [ 135.70625305175781, 34.212696075439453 ], [ 135.65182495117187, 34.383857727050781 ], [ 135.67393493652344, 34.705909729003906 ], [ 135.73098754882812, 34.780780792236328 ], [ 135.85317993164062, 34.708946228027344 ], [ 135.9237060546875, 34.751483917236328 ], [ 136.05369567871094, 34.737281799316406 ] ] ] ] } },
{ "type": "Feature", "properties": { "ObjName": "Shiga", "JIS-CODE": 25, "jis": "25", "pref": "滋賀県", "jobs_ratio": "0.44", "fullness_r": "10.7" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 136.41233825683594, 35.219444274902344 ], [ 136.44935607910156, 35.160839080810547 ], [ 136.41387939453125, 34.979267120361328 ], [ 136.35731506347656, 34.8995361328125 ], [ 136.24234008789063, 34.860469818115234 ], [ 136.12666320800781, 34.886432647705078 ], [ 136.02296447753906, 34.790767669677734 ], [ 135.86268615722656, 34.903022766113281 ], [ 135.82290649414062, 35.046985626220703 ], [ 135.84037780761719, 35.278366088867188 ], [ 135.76800537109375, 35.353252410888672 ], [ 135.8831787109375, 35.40087890625 ], [ 135.94155883789062, 35.515758514404297 ], [ 136.1065673828125, 35.534255981445313 ], [ 136.28092956542969, 35.661533355712891 ], [ 136.36962890625, 35.555736541748047 ], [ 136.43955993652344, 35.393707275390625 ], [ 136.41233825683594, 35.219444274902344 ] ], [ [ 136.19125366210937, 35.485393524169922 ], [ 136.07792663574219, 35.463100433349609 ], [ 136.07432556152344, 35.327056884765625 ], [ 135.92343139648437, 35.197086334228516 ], [ 136.04911804199219, 35.142738342285156 ], [ 136.24549865722656, 35.283401489257813 ], [ 136.27708435058594, 35.348186492919922 ], [ 136.19125366210937, 35.485393524169922 ] ] ] ] } },
{ "type": "Feature", "properties": { "ObjName": "Gifu", "JIS-CODE": 21, "jis": "21", "pref": "岐阜県", "jobs_ratio": "0.59", "fullness_r": "8.5" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 136.755859375, 36.085357666015625 ], [ 136.84799194335937, 36.251178741455078 ], [ 136.7960205078125, 36.300392150878906 ], [ 136.87075805664062, 36.3570556640625 ], [ 137.06069946289062, 36.369964599609375 ], [ 137.16165161132812, 36.452663421630859 ], [ 137.5084228515625, 36.419384002685547 ], [ 137.58366394042969, 36.390205383300781 ], [ 137.64395141601562, 36.296443939208984 ], [ 137.55278015136719, 36.110652923583984 ], [ 137.59539794921875, 36.017490386962891 ], [ 137.48689270019531, 35.916767120361328 ], [ 137.38540649414062, 35.89263916015625 ], [ 137.338134765625, 35.799777984619141 ], [ 137.45379638671875, 35.759654998779297 ], [ 137.61299133300781, 35.531604766845703 ], [ 137.60493469238281, 35.334133148193359 ], [ 137.56350708007813, 35.287246704101563 ], [ 137.43740844726562, 35.227031707763672 ], [ 137.3170166015625, 35.286014556884766 ], [ 137.19422912597656, 35.253482818603516 ], [ 137.07267761230469, 35.308460235595703 ], [ 136.98527526855469, 35.400131225585938 ], [ 136.77207946777344, 35.367557525634766 ], [ 136.67765808105469, 35.235374450683594 ], [ 136.6700439453125, 35.136226654052734 ], [ 136.520751953125, 35.250877380371094 ], [ 136.41233825683594, 35.219444274902344 ], [ 136.43955993652344, 35.393707275390625 ], [ 136.36962890625, 35.555736541748047 ], [ 136.28092956542969, 35.661533355712891 ], [ 136.33197021484375, 35.775699615478516 ], [ 136.49134826660156, 35.768375396728516 ], [ 136.78382873535156, 35.802436828613281 ], [ 136.82382202148437, 35.891704559326172 ], [ 136.732177734375, 36.010139465332031 ], [ 136.755859375, 36.085357666015625 ] ] ] ] } },
{ "type": "Feature", "properties": { "ObjName": "Toyama", "JIS-CODE": 16, "jis": "16", "pref": "富山県", "jobs_ratio": "0.62", "fullness_r": "11.3" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 137.05087280273437, 36.958240509033203 ], [ 136.99087524414062, 36.879169464111328 ], [ 137.10964965820313, 36.770584106445312 ], [ 137.32763671875, 36.762294769287109 ], [ 137.42308044433594, 36.920368194580078 ], [ 137.63401794433594, 36.980316162109375 ], [ 137.70576477050781, 36.940242767333984 ], [ 137.75901794433594, 36.768215179443359 ], [ 137.74824523925781, 36.593090057373047 ], [ 137.69364929199219, 36.565387725830078 ], [ 137.58366394042969, 36.390205383300781 ], [ 137.5084228515625, 36.419384002685547 ], [ 137.16165161132812, 36.452663421630859 ], [ 137.06069946289062, 36.369964599609375 ], [ 136.87075805664062, 36.3570556640625 ], [ 136.7960205078125, 36.300392150878906 ], [ 136.81434631347656, 36.544155120849609 ], [ 136.78463745117187, 36.616348266601563 ], [ 136.8812255859375, 36.905181884765625 ], [ 137.05087280273437, 36.958240509033203 ] ] ] ] } },
{ "type": "Feature", "properties": { "ObjName": "Kyoto", "JIS-CODE": 26, "jis": "26", "pref": "京都府", "jobs_ratio": "0.48", "fullness_r": "12" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.8656005859375, 35.657890319824219 ], [ 134.93022155761719, 35.647342681884766 ], [ 135.11299133300781, 35.744499206542969 ], [ 135.23190307617188, 35.769184112548828 ], [ 135.30073547363281, 35.669792175292969 ], [ 135.25254821777344, 35.535354614257813 ], [ 135.48304748535156, 35.555366516113281 ], [ 135.46394348144531, 35.462085723876953 ], [ 135.53224182128906, 35.380615234375 ], [ 135.76800537109375, 35.353252410888672 ], [ 135.84037780761719, 35.278366088867188 ], [ 135.82290649414062, 35.046985626220703 ], [ 135.86268615722656, 34.903022766113281 ], [ 136.02296447753906, 34.790767669677734 ], [ 136.05369567871094, 34.737281799316406 ], [ 135.9237060546875, 34.751483917236328 ], [ 135.85317993164062, 34.708946228027344 ], [ 135.73098754882812, 34.780780792236328 ], [ 135.61570739746094, 34.958541870117188 ], [ 135.54133605957031, 34.919681549072266 ], [ 135.37069702148437, 35.045646667480469 ], [ 135.38874816894531, 35.125225067138672 ], [ 135.22383117675781, 35.165058135986328 ], [ 135.15005493164062, 35.262283325195313 ], [ 135.06881713867187, 35.243362426757813 ], [ 134.9354248046875, 35.308200836181641 ], [ 134.93695068359375, 35.407238006591797 ], [ 135.04972839355469, 35.420352935791016 ], [ 135.03096008300781, 35.53704833984375 ], [ 134.93074035644531, 35.513042449951172 ], [ 134.8656005859375, 35.657890319824219 ] ] ] ] } },
{ "type": "Feature", "properties": { "ObjName": "Fukui", "JIS-CODE": 18, "jis": "18", "pref": "福井県", "jobs_ratio": "0.71", "fullness_r": "9.1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 136.28092956542969, 35.661533355712891 ], [ 136.1065673828125, 35.534255981445313 ], [ 135.94155883789062, 35.515758514404297 ], [ 135.8831787109375, 35.40087890625 ], [ 135.76800537109375, 35.353252410888672 ], [ 135.53224182128906, 35.380615234375 ], [ 135.46394348144531, 35.462085723876953 ], [ 135.48304748535156, 35.555366516113281 ], [ 135.526611328125, 35.490726470947266 ], [ 135.7198486328125, 35.488784790039063 ], [ 135.87141418457031, 35.609970092773437 ], [ 135.9837646484375, 35.639678955078125 ], [ 135.96983337402344, 35.730060577392578 ], [ 136.09992980957031, 35.775711059570312 ], [ 135.96498107910156, 35.975296020507813 ], [ 136.13591003417969, 36.215805053710937 ], [ 136.24552917480469, 36.293647766113281 ], [ 136.35458374023437, 36.168121337890625 ], [ 136.55058288574219, 36.151435852050781 ], [ 136.66777038574219, 36.068756103515625 ], [ 136.755859375, 36.085357666015625 ], [ 136.732177734375, 36.010139465332031 ], [ 136.82382202148437, 35.891704559326172 ], [ 136.78382873535156, 35.802436828613281 ], [ 136.49134826660156, 35.768375396728516 ], [ 136.33197021484375, 35.775699615478516 ], [ 136.28092956542969, 35.661533355712891 ] ] ] ] } },
{ "type": "Feature", "properties": { "ObjName": "Yamanashi", "JIS-CODE": 19, "jis": "19", "pref": "山梨県", "jobs_ratio": "0.51", "fullness_r": "8.5" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 138.73028564453125, 35.90655517578125 ], [ 138.94151306152344, 35.853420257568359 ], [ 139.02995300292969, 35.715656280517578 ], [ 139.13035583496094, 35.671653747558594 ], [ 139.08805847167969, 35.516407012939453 ], [ 138.91746520996094, 35.399551391601563 ], [ 138.68270874023437, 35.360397338867188 ], [ 138.53352355957031, 35.4051513671875 ], [ 138.53053283691406, 35.205192565917969 ], [ 138.39878845214844, 35.205482482910156 ], [ 138.37007141113281, 35.304008483886719 ], [ 138.26344299316406, 35.315036773681641 ], [ 138.26016235351562, 35.536849975585938 ], [ 138.21900939941406, 35.647117614746094 ], [ 138.19349670410156, 35.799297332763672 ], [ 138.36590576171875, 35.962818145751953 ], [ 138.67445373535156, 35.870929718017578 ], [ 138.73028564453125, 35.90655517578125 ] ] ] ] } },
{ "type": "Feature", "properties": { "ObjName": "Saitama", "JIS-CODE": 11, "jis": "11", "pref": "埼玉県", "jobs_ratio": "0.37", "fullness_r": "7.3" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 138.73028564453125, 35.90655517578125 ], [ 138.711669921875, 35.982799530029297 ], [ 138.76029968261719, 36.035865783691406 ], [ 139.0382080078125, 36.128196716308594 ], [ 139.12371826171875, 36.273612976074219 ], [ 139.52946472167969, 36.192256927490234 ], [ 139.67042541503906, 36.210441589355469 ], [ 139.68620300292969, 36.200008392333984 ], [ 139.77108764648437, 36.086009979248047 ], [ 139.89457702636719, 35.874610900878906 ], [ 139.89506530761719, 35.785305023193359 ], [ 139.76274108886719, 35.813907623291016 ], [ 139.3812255859375, 35.767112731933594 ], [ 139.287109375, 35.840263366699219 ], [ 139.02658081054687, 35.895130157470703 ], [ 138.94151306152344, 35.853420257568359 ], [ 138.73028564453125, 35.90655517578125 ] ] ] ] } },
{ "type": "Feature", "properties": { "ObjName": "Gunma", "JIS-CODE": 10, "jis": "10", "pref": "群馬県", "jobs_ratio": "0.57", "fullness_r": "8.1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 138.711669921875, 35.982799530029297 ], [ 138.63299560546875, 36.027027130126953 ], [ 138.60983276367187, 36.280654907226563 ], [ 138.64962768554687, 36.399288177490234 ], [ 138.40159606933594, 36.437240600585937 ], [ 138.42939758300781, 36.594581604003906 ], [ 138.52371215820312, 36.692775726318359 ], [ 138.69598388671875, 36.73724365234375 ], [ 138.9285888671875, 36.834606170654297 ], [ 139.10101318359375, 37.050056457519531 ], [ 139.23643493652344, 36.949245452880859 ], [ 139.39236450195312, 36.902828216552734 ], [ 139.33163452148437, 36.631149291992188 ], [ 139.46047973632812, 36.605621337890625 ], [ 139.43475341796875, 36.464801788330078 ], [ 139.36909484863281, 36.369606018066406 ], [ 139.46412658691406, 36.280010223388672 ], [ 139.63322448730469, 36.265922546386719 ], [ 139.67042541503906, 36.210441589355469 ], [ 139.52946472167969, 36.192256927490234 ], [ 139.12371826171875, 36.273612976074219 ], [ 139.0382080078125, 36.128196716308594 ], [ 138.76029968261719, 36.035865783691406 ], [ 138.711669921875, 35.982799530029297 ] ] ] ] } },
{ "type": "Feature", "properties": { "ObjName": "Tochigi", "JIS-CODE": 9, "jis": "9", "pref": "栃木県", "jobs_ratio": "0.46", "fullness_r": "9" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 139.39236450195312, 36.902828216552734 ], [ 139.45988464355469, 36.961925506591797 ], [ 139.6795654296875, 37.057449340820312 ], [ 139.8134765625, 37.087154388427734 ], [ 139.88653564453125, 37.148674011230469 ], [ 140.03709411621094, 37.139720916748047 ], [ 140.24185180664062, 37.023040771484375 ], [ 140.26078796386719, 36.935333251953125 ], [ 140.22657775878906, 36.693870544433594 ], [ 140.25465393066406, 36.5159912109375 ], [ 140.198974609375, 36.411430358886719 ], [ 139.98060607910156, 36.370841979980469 ], [ 139.68620300292969, 36.200008392333984 ], [ 139.67042541503906, 36.210441589355469 ], [ 139.63322448730469, 36.265922546386719 ], [ 139.46412658691406, 36.280010223388672 ], [ 139.36909484863281, 36.369606018066406 ], [ 139.43475341796875, 36.464801788330078 ], [ 139.46047973632812, 36.605621337890625 ], [ 139.33163452148437, 36.631149291992188 ], [ 139.39236450195312, 36.902828216552734 ] ] ] ] } },
{ "type": "Feature", "properties": { "ObjName": "Shizuoka", "JIS-CODE": 22, "jis": "22", "pref": "静岡県", "jobs_ratio": "0.44", "fullness_r": "7.4" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 137.834716796875, 35.211776733398437 ], [ 138.13633728027344, 35.367851257324219 ], [ 138.15383911132812, 35.568042755126953 ], [ 138.21900939941406, 35.647117614746094 ], [ 138.26016235351562, 35.536849975585938 ], [ 138.26344299316406, 35.315036773681641 ], [ 138.37007141113281, 35.304008483886719 ], [ 138.39878845214844, 35.205482482910156 ], [ 138.53053283691406, 35.205192565917969 ], [ 138.53352355957031, 35.4051513671875 ], [ 138.68270874023437, 35.360397338867188 ], [ 138.91746520996094, 35.399551391601563 ], [ 138.99952697753906, 35.395645141601563 ], [ 138.97486877441406, 35.263126373291016 ], [ 139.0372314453125, 35.151454925537109 ], [ 139.11090087890625, 35.141365051269531 ], [ 139.08602905273438, 35.002174377441406 ], [ 139.1365966796875, 34.887809753417969 ], [ 138.90928649902344, 34.634243011474609 ], [ 138.831787109375, 34.606903076171875 ], [ 138.744140625, 34.693004608154297 ], [ 138.78561401367187, 35.020332336425781 ], [ 138.83071899414062, 35.103908538818359 ], [ 138.69671630859375, 35.137157440185547 ], [ 138.55996704101562, 35.098690032958984 ], [ 138.50498962402344, 34.973846435546875 ], [ 138.37240600585937, 34.919795989990234 ], [ 138.33134460449219, 34.817493438720703 ], [ 138.21865844726562, 34.711307525634766 ], [ 138.19309997558594, 34.598148345947266 ], [ 138.03007507324219, 34.653755187988281 ], [ 137.79586791992187, 34.644859313964844 ], [ 137.48532104492187, 34.672943115234375 ], [ 137.50228881835937, 34.830371856689453 ], [ 137.59161376953125, 34.854156494140625 ], [ 137.82540893554687, 35.153129577636719 ], [ 137.834716796875, 35.211776733398437 ] ] ] ] } },
{ "type": "Feature", "properties": { "ObjName": "Nagano", "JIS-CODE": 20, "jis": "20", "pref": "長野県", "jobs_ratio": "0.54", "fullness_r": "8.8" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 137.56350708007813, 35.287246704101563 ], [ 137.60493469238281, 35.334133148193359 ], [ 137.61299133300781, 35.531604766845703 ], [ 137.45379638671875, 35.759654998779297 ], [ 137.338134765625, 35.799777984619141 ], [ 137.38540649414062, 35.89263916015625 ], [ 137.48689270019531, 35.916767120361328 ], [ 137.59539794921875, 36.017490386962891 ], [ 137.55278015136719, 36.110652923583984 ], [ 137.64395141601562, 36.296443939208984 ], [ 137.58366394042969, 36.390205383300781 ], [ 137.69364929199219, 36.565387725830078 ], [ 137.74824523925781, 36.593090057373047 ], [ 137.75901794433594, 36.768215179443359 ], [ 137.87416076660156, 36.9051513671875 ], [ 137.9935302734375, 36.908809661865234 ], [ 138.00758361816406, 36.827735900878906 ], [ 138.24787902832031, 36.865692138671875 ], [ 138.39527893066406, 36.995517730712891 ], [ 138.55465698242187, 37.020160675048828 ], [ 138.57969665527344, 36.921371459960937 ], [ 138.691162109375, 36.850185394287109 ], [ 138.69598388671875, 36.73724365234375 ], [ 138.52371215820312, 36.692775726318359 ], [ 138.42939758300781, 36.594581604003906 ], [ 138.40159606933594, 36.437240600585937 ], [ 138.64962768554687, 36.399288177490234 ], [ 138.60983276367187, 36.280654907226563 ], [ 138.63299560546875, 36.027027130126953 ], [ 138.711669921875, 35.982799530029297 ], [ 138.73028564453125, 35.90655517578125 ], [ 138.67445373535156, 35.870929718017578 ], [ 138.36590576171875, 35.962818145751953 ], [ 138.19349670410156, 35.799297332763672 ], [ 138.21900939941406, 35.647117614746094 ], [ 138.15383911132812, 35.568042755126953 ], [ 138.13633728027344, 35.367851257324219 ], [ 137.834716796875, 35.211776733398437 ], [ 137.56350708007813, 35.287246704101563 ] ] ] ] } },
{ "type": "Feature", "properties": { "ObjName": "Ibaraki", "JIS-CODE": 8, "jis": "8", "pref": "茨城県", "jobs_ratio": "0.45", "fullness_r": "10.5" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.79551696777344, 36.857585906982422 ], [ 140.61248779296875, 36.481552124023438 ], [ 140.62596130371094, 36.370079040527344 ], [ 140.56118774414062, 36.293865203857422 ], [ 140.59056091308594, 36.129051208496094 ], [ 140.66409301757813, 35.984310150146484 ], [ 140.85011291503906, 35.743770599365234 ], [ 140.73855590820312, 35.788986206054687 ], [ 140.510986328125, 35.953594207763672 ], [ 140.31578063964844, 35.865097045898438 ], [ 140.15959167480469, 35.842563629150391 ], [ 139.990478515625, 35.911392211914063 ], [ 139.77108764648437, 36.086009979248047 ], [ 139.68620300292969, 36.200008392333984 ], [ 139.98060607910156, 36.370841979980469 ], [ 140.198974609375, 36.411430358886719 ], [ 140.25465393066406, 36.5159912109375 ], [ 140.22657775878906, 36.693870544433594 ], [ 140.26078796386719, 36.935333251953125 ], [ 140.46760559082031, 36.793529510498047 ], [ 140.58966064453125, 36.87554931640625 ], [ 140.79551696777344, 36.857585906982422 ] ] ] ] } },
{ "type": "Feature", "properties": { "ObjName": "Chiba", "JIS-CODE": 12, "jis": "12", "pref": "千葉県", "jobs_ratio": "0.37", "fullness_r": "8.1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 139.89506530761719, 35.785305023193359 ], [ 139.89457702636719, 35.874610900878906 ], [ 139.77108764648437, 36.086009979248047 ], [ 139.990478515625, 35.911392211914063 ], [ 140.15959167480469, 35.842563629150391 ], [ 140.31578063964844, 35.865097045898438 ], [ 140.510986328125, 35.953594207763672 ], [ 140.73855590820312, 35.788986206054687 ], [ 140.85011291503906, 35.743770599365234 ], [ 140.61203002929687, 35.663810729980469 ], [ 140.44625854492187, 35.518619537353516 ], [ 140.39486694335938, 35.402072906494141 ], [ 140.41390991210937, 35.299888610839844 ], [ 140.37669372558594, 35.182003021240234 ], [ 140.20588684082031, 35.110210418701172 ], [ 140.12763977050781, 35.116706848144531 ], [ 139.97979736328125, 35.009510040283203 ], [ 139.91896057128906, 34.907825469970703 ], [ 139.75848388671875, 34.975612640380859 ], [ 139.83854675292969, 35.093376159667969 ], [ 139.8701171875, 35.224197387695313 ], [ 139.81398010253906, 35.318756103515625 ], [ 139.90126037597656, 35.420768737792969 ], [ 140.09226989746094, 35.550498962402344 ], [ 139.96170043945313, 35.678794860839844 ], [ 139.88352966308594, 35.646411895751953 ], [ 139.89506530761719, 35.785305023193359 ] ] ] ] } },
{ "type": "Feature", "properties": { "ObjName": "Fukushima", "JIS-CODE": 7, "jis": "7", "pref": "福島県", "jobs_ratio": "0.38", "fullness_r": "12" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 139.39236450195312, 36.902828216552734 ], [ 139.23643493652344, 36.949245452880859 ], [ 139.25968933105469, 37.156490325927734 ], [ 139.17005920410156, 37.240200042724609 ], [ 139.24192810058594, 37.362567901611328 ], [ 139.23249816894531, 37.443691253662109 ], [ 139.42303466796875, 37.504928588867188 ], [ 139.58839416503906, 37.526981353759766 ], [ 139.55198669433594, 37.623825073242188 ], [ 139.74266052246094, 37.820892333984375 ], [ 139.93222045898437, 37.821063995361328 ], [ 140.11622619628906, 37.734058380126953 ], [ 140.27973937988281, 37.784259796142578 ], [ 140.27909851074219, 37.976463317871094 ], [ 140.67092895507812, 37.892642974853516 ], [ 140.69651794433594, 37.803638458251953 ], [ 140.84342956542969, 37.797985076904297 ], [ 140.92648315429687, 37.897438049316406 ], [ 141.00791931152344, 37.735198974609375 ], [ 141.0362548828125, 37.362937927246094 ], [ 140.98176574707031, 36.993812561035156 ], [ 140.79551696777344, 36.857585906982422 ], [ 140.58966064453125, 36.87554931640625 ], [ 140.46760559082031, 36.793529510498047 ], [ 140.26078796386719, 36.935333251953125 ], [ 140.24185180664062, 37.023040771484375 ], [ 140.03709411621094, 37.139720916748047 ], [ 139.88653564453125, 37.148674011230469 ], [ 139.8134765625, 37.087154388427734 ], [ 139.6795654296875, 37.057449340820312 ], [ 139.45988464355469, 36.961925506591797 ], [ 139.39236450195312, 36.902828216552734 ] ] ] ] } },
{ "type": "Feature", "properties": { "ObjName": "Yamagata", "JIS-CODE": 6, "jis": "6", "pref": "山形県", "jobs_ratio": "0.44", "fullness_r": "12" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 139.55354309082031, 38.544918060302734 ], [ 139.61186218261719, 38.667339324951172 ], [ 139.75332641601562, 38.780361175537109 ], [ 139.86911010742187, 39.048862457275391 ], [ 139.87474060058594, 39.119728088378906 ], [ 139.99710083007812, 39.111644744873047 ], [ 140.15608215332031, 39.049617767333984 ], [ 140.43667602539062, 38.983840942382813 ], [ 140.54586791992187, 38.890426635742187 ], [ 140.60340881347656, 38.784835815429688 ], [ 140.56785583496094, 38.504058837890625 ], [ 140.60549926757812, 38.475082397460938 ], [ 140.47103881835937, 38.259983062744141 ], [ 140.41950988769531, 38.084072113037109 ], [ 140.28079223632812, 38.051483154296875 ], [ 140.27909851074219, 37.976463317871094 ], [ 140.27973937988281, 37.784259796142578 ], [ 140.11622619628906, 37.734058380126953 ], [ 139.93222045898437, 37.821063995361328 ], [ 139.74266052246094, 37.820892333984375 ], [ 139.63081359863281, 37.895957946777344 ], [ 139.68441772460937, 38.052581787109375 ], [ 139.68727111816406, 38.1839599609375 ], [ 139.79331970214844, 38.202632904052734 ], [ 139.89053344726562, 38.278270721435547 ], [ 139.70481872558594, 38.397159576416016 ], [ 139.71165466308594, 38.496444702148438 ], [ 139.55354309082031, 38.544918060302734 ] ] ] ] } },
{ "type": "Feature", "properties": { "ObjName": "Akita", "JIS-CODE": 5, "jis": "5", "pref": "秋田県", "jobs_ratio": "0.35", "fullness_r": "14.5" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 139.87474060058594, 39.119728088378906 ], [ 139.90890502929687, 39.269069671630859 ], [ 140.0054931640625, 39.361625671386719 ], [ 140.06314086914062, 39.618064880371094 ], [ 140.03450012207031, 39.806560516357422 ], [ 139.96888732910156, 39.880516052246094 ], [ 139.75309753417969, 39.863407135009766 ], [ 139.95201110839844, 40.080795288085937 ], [ 140.02679443359375, 40.353725433349609 ], [ 139.94265747070312, 40.427677154541016 ], [ 140.33599853515625, 40.440093994140625 ], [ 140.43684387207031, 40.472862243652344 ], [ 140.52969360351562, 40.414325714111328 ], [ 140.65447998046875, 40.404308319091797 ], [ 140.8802490234375, 40.501243591308594 ], [ 140.88925170898437, 40.424335479736328 ], [ 140.98733520507812, 40.3626708984375 ], [ 140.94981384277344, 40.250076293945313 ], [ 140.86082458496094, 40.168769836425781 ], [ 140.84693908691406, 39.973953247070313 ], [ 140.87925720214844, 39.877006530761719 ], [ 140.80319213867187, 39.606815338134766 ], [ 140.73231506347656, 39.558948516845703 ], [ 140.66032409667969, 39.393169403076172 ], [ 140.79000854492187, 39.2374267578125 ], [ 140.75636291503906, 39.138427734375 ], [ 140.80525207519531, 39.073997497558594 ], [ 140.7791748046875, 38.957496643066406 ], [ 140.65036010742187, 38.887325286865234 ], [ 140.54586791992187, 38.890426635742187 ], [ 140.43667602539062, 38.983840942382813 ], [ 140.15608215332031, 39.049617767333984 ], [ 139.99710083007812, 39.111644744873047 ], [ 139.87474060058594, 39.119728088378906 ] ] ] ] } },
{ "type": "Feature", "properties": { "ObjName": "Iwate", "JIS-CODE": 3, "jis": "3", "pref": "岩手県", "jobs_ratio": "0.38", "fullness_r": "19.6" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.67906188964844, 40.448841094970703 ], [ 141.75123596191406, 40.366390228271484 ], [ 141.86883544921875, 40.142353057861328 ], [ 141.83609008789063, 40.069141387939453 ], [ 141.94680786132812, 39.992710113525391 ], [ 141.98638916015625, 39.687591552734375 ], [ 142.06744384765625, 39.565013885498047 ], [ 142.04261779785156, 39.425033569335938 ], [ 141.94281005859375, 39.387420654296875 ], [ 141.95773315429687, 39.224323272705078 ], [ 141.81755065917969, 39.108562469482422 ], [ 141.8258056640625, 39.056247711181641 ], [ 141.63179016113281, 38.969791412353516 ], [ 141.48820495605469, 38.993045806884766 ], [ 141.43405151367187, 38.787708282470703 ], [ 141.31275939941406, 38.821819305419922 ], [ 141.24665832519531, 38.758831024169922 ], [ 141.14437866210937, 38.794322967529297 ], [ 141.10527038574219, 38.882156372070313 ], [ 140.98603820800781, 38.878940582275391 ], [ 140.7791748046875, 38.957496643066406 ], [ 140.80525207519531, 39.073997497558594 ], [ 140.75636291503906, 39.138427734375 ], [ 140.79000854492187, 39.2374267578125 ], [ 140.66032409667969, 39.393169403076172 ], [ 140.73231506347656, 39.558948516845703 ], [ 140.80319213867187, 39.606815338134766 ], [ 140.87925720214844, 39.877006530761719 ], [ 140.84693908691406, 39.973953247070313 ], [ 140.86082458496094, 40.168769836425781 ], [ 140.94981384277344, 40.250076293945313 ], [ 141.02101135253906, 40.219387054443359 ], [ 141.25492858886719, 40.340362548828125 ], [ 141.46577453613281, 40.374931335449219 ], [ 141.5380859375, 40.350166320800781 ], [ 141.67906188964844, 40.448841094970703 ] ] ] ] } },
{ "type": "Feature", "properties": { "ObjName": "Aomori", "JIS-CODE": 2, "jis": "2", "pref": "青森県", "jobs_ratio": "0.29", "fullness_r": "19.3" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 139.94265747070312, 40.427677154541016 ], [ 139.9276123046875, 40.648586273193359 ], [ 139.99777221679687, 40.738143920898438 ], [ 140.23504638671875, 40.785102844238281 ], [ 140.30816650390625, 40.927516937255859 ], [ 140.35130310058594, 41.257442474365234 ], [ 140.45877075195312, 41.186222076416016 ], [ 140.54840087890625, 41.223232269287109 ], [ 140.64472961425781, 41.175457000732422 ], [ 140.6343994140625, 41.097141265869141 ], [ 140.6903076171875, 40.862751007080078 ], [ 140.84841918945313, 40.874378204345703 ], [ 140.97724914550781, 40.935894012451172 ], [ 141.15847778320312, 40.885757446289063 ], [ 141.23054504394531, 41.000331878662109 ], [ 141.27275085449219, 41.1729736328125 ], [ 141.1571044921875, 41.275650024414062 ], [ 141.05827331542969, 41.184333801269531 ], [ 140.97358703613281, 41.19366455078125 ], [ 140.80867004394531, 41.127639770507812 ], [ 140.76556396484375, 41.188129425048828 ], [ 140.82797241210937, 41.386688232421875 ], [ 140.90576171875, 41.493587493896484 ], [ 141.11473083496094, 41.457710266113281 ], [ 141.27482604980469, 41.353176116943359 ], [ 141.431640625, 41.335109710693359 ], [ 141.38819885253906, 41.178878784179688 ], [ 141.3914794921875, 40.889957427978516 ], [ 141.43119812011719, 40.685447692871094 ], [ 141.50242614746094, 40.549510955810547 ], [ 141.67906188964844, 40.448841094970703 ], [ 141.5380859375, 40.350166320800781 ], [ 141.46577453613281, 40.374931335449219 ], [ 141.25492858886719, 40.340362548828125 ], [ 141.02101135253906, 40.219387054443359 ], [ 140.94981384277344, 40.250076293945313 ], [ 140.98733520507812, 40.3626708984375 ], [ 140.88925170898437, 40.424335479736328 ], [ 140.8802490234375, 40.501243591308594 ], [ 140.65447998046875, 40.404308319091797 ], [ 140.52969360351562, 40.414325714111328 ], [ 140.43684387207031, 40.472862243652344 ], [ 140.33599853515625, 40.440093994140625 ], [ 139.94265747070312, 40.427677154541016 ] ] ] ] } },
{ "type": "Feature", "properties": { "ObjName": "Yamaguchi", "JIS-CODE": 35, "jis": "35", "pref": "山口県", "jobs_ratio": "0.52", "fullness_r": "11.7" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.23036193847656, 34.208774566650391 ], [ 132.22010803222656, 34.026355743408203 ], [ 132.13291931152344, 33.891292572021484 ], [ 132.02369689941406, 33.904621124267578 ], [ 131.75238037109375, 34.064979553222656 ], [ 131.49539184570312, 34.029941558837891 ], [ 131.26715087890625, 33.923397064208984 ], [ 131.04827880859375, 34.045120239257813 ], [ 130.92025756835937, 33.938507080078125 ], [ 130.86146545410156, 34.109386444091797 ], [ 130.92861938476562, 34.185329437255859 ], [ 130.89152526855469, 34.344562530517578 ], [ 131.12924194335937, 34.413928985595703 ], [ 131.30140686035156, 34.383884429931641 ], [ 131.54312133789063, 34.570091247558594 ], [ 131.60804748535156, 34.662433624267578 ], [ 131.68817138671875, 34.679000854492188 ], [ 131.72232055664062, 34.580913543701172 ], [ 131.69509887695312, 34.441120147705078 ], [ 131.81623840332031, 34.30804443359375 ], [ 132.0081787109375, 34.381172180175781 ], [ 132.05914306640625, 34.466770172119141 ], [ 132.07337951660156, 34.358856201171875 ], [ 132.15162658691406, 34.230060577392578 ], [ 132.23036193847656, 34.208774566650391 ] ] ] ] } },
{ "type": "Feature", "properties": { "ObjName": "Ehime", "JIS-CODE": 38, "jis": "38", "pref": "愛媛県", "jobs_ratio": "0.56", "fullness_r": "11.2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 133.68179321289062, 34.011768341064453 ], [ 133.65766906738281, 33.881954193115234 ], [ 133.50059509277344, 33.834716796875 ], [ 133.27354431152344, 33.825580596923828 ], [ 133.196533203125, 33.791130065917969 ], [ 133.04902648925781, 33.578624725341797 ], [ 133.0150146484375, 33.482139587402344 ], [ 132.81352233886719, 33.456901550292969 ], [ 132.90133666992187, 33.3192138671875 ], [ 132.79643249511719, 33.271938323974609 ], [ 132.6842041015625, 33.140151977539062 ], [ 132.69352722167969, 32.972934722900391 ], [ 132.65435791015625, 32.924766540527344 ], [ 132.50746154785156, 32.982875823974609 ], [ 132.47402954101562, 33.098850250244141 ], [ 132.5465087890625, 33.234245300292969 ], [ 132.48870849609375, 33.318584442138672 ], [ 132.37472534179687, 33.320690155029297 ], [ 132.35896301269531, 33.478507995605469 ], [ 132.47871398925781, 33.61114501953125 ], [ 132.64680480957031, 33.691726684570313 ], [ 132.70095825195312, 33.7603759765625 ], [ 132.71170043945313, 33.896324157714844 ], [ 132.77838134765625, 34.004135131835938 ], [ 132.92245483398437, 34.0714111328125 ], [ 132.94277954101562, 34.137210845947266 ], [ 133.13330078125, 33.922531127929687 ], [ 133.25540161132812, 33.976428985595703 ], [ 133.5079345703125, 33.969970703125 ], [ 133.59841918945313, 34.043666839599609 ], [ 133.68179321289062, 34.011768341064453 ] ] ] ] } },
{ "type": "Feature", "properties": { "ObjName": "Shimane", "JIS-CODE": 32, "jis": "32", "pref": "島根県", "jobs_ratio": "0.63", "fullness_r": "11.4" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 131.68817138671875, 34.679000854492188 ], [ 131.82539367675781, 34.694530487060547 ], [ 132.08979797363281, 34.926536560058594 ], [ 132.3070068359375, 35.053066253662109 ], [ 132.41401672363281, 35.175155639648438 ], [ 132.6212158203125, 35.282238006591797 ], [ 132.66242980957031, 35.442901611328125 ], [ 132.96946716308594, 35.522022247314453 ], [ 133.09037780761719, 35.594352722167969 ], [ 133.13121032714844, 35.454387664794922 ], [ 133.32040405273438, 35.413665771484375 ], [ 133.30670166015625, 35.271488189697266 ], [ 133.19047546386719, 35.171470642089844 ], [ 133.1331787109375, 35.073844909667969 ], [ 132.89189147949219, 35.101696014404297 ], [ 132.53352355957031, 34.795642852783203 ], [ 132.44088745117187, 34.81610107421875 ], [ 132.1649169921875, 34.7259521484375 ], [ 132.05914306640625, 34.466770172119141 ], [ 132.0081787109375, 34.381172180175781 ], [ 131.81623840332031, 34.30804443359375 ], [ 131.69509887695312, 34.441120147705078 ], [ 131.72232055664062, 34.580913543701172 ], [ 131.68817138671875, 34.679000854492188 ] ] ] ] } },
{ "type": "Feature", "properties": { "ObjName": "Hiroshima", "JIS-CODE": 34, "jis": "34", "pref": "広島県", "jobs_ratio": "0.61", "fullness_r": "10.6" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.05914306640625, 34.466770172119141 ], [ 132.1649169921875, 34.7259521484375 ], [ 132.44088745117187, 34.81610107421875 ], [ 132.53352355957031, 34.795642852783203 ], [ 132.89189147949219, 35.101696014404297 ], [ 133.1331787109375, 35.073844909667969 ], [ 133.26530456542969, 35.057861328125 ], [ 133.31289672851562, 35.008914947509766 ], [ 133.29415893554687, 34.895263671875 ], [ 133.37602233886719, 34.803333282470703 ], [ 133.38612365722656, 34.625415802001953 ], [ 133.44789123535156, 34.476902008056641 ], [ 133.35073852539062, 34.370029449462891 ], [ 133.22430419921875, 34.409656524658203 ], [ 133.01858520507812, 34.328464508056641 ], [ 132.80740356445312, 34.309280395507813 ], [ 132.64262390136719, 34.203189849853516 ], [ 132.51443481445312, 34.260932922363281 ], [ 132.49705505371094, 34.361049652099609 ], [ 132.34947204589844, 34.355216979980469 ], [ 132.23036193847656, 34.208774566650391 ], [ 132.15162658691406, 34.230060577392578 ], [ 132.07337951660156, 34.358856201171875 ], [ 132.05914306640625, 34.466770172119141 ] ] ] ] } },
{ "type": "Feature", "properties": { "ObjName": "Okayama", "JIS-CODE": 33, "jis": "33", "pref": "岡山県", "jobs_ratio": "0.63", "fullness_r": "9.2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.3187255859375, 34.728260040283203 ], [ 134.06027221679687, 34.585826873779297 ], [ 133.91218566894531, 34.449542999267578 ], [ 133.78411865234375, 34.439014434814453 ], [ 133.66426086425781, 34.523307800292969 ], [ 133.48429870605469, 34.445297241210937 ], [ 133.44789123535156, 34.476902008056641 ], [ 133.38612365722656, 34.625415802001953 ], [ 133.37602233886719, 34.803333282470703 ], [ 133.29415893554687, 34.895263671875 ], [ 133.31289672851562, 35.008914947509766 ], [ 133.26530456542969, 35.057861328125 ], [ 133.29464721679687, 35.098278045654297 ], [ 133.5220947265625, 35.187335968017578 ], [ 133.59532165527344, 35.337936401367188 ], [ 133.86964416503906, 35.291091918945313 ], [ 134.0184326171875, 35.306652069091797 ], [ 134.14448547363281, 35.264957427978516 ], [ 134.17704772949219, 35.175277709960937 ], [ 134.39930725097656, 35.241485595703125 ], [ 134.27813720703125, 35.031452178955078 ], [ 134.25645446777344, 34.850460052490234 ], [ 134.3187255859375, 34.728260040283203 ] ] ] ] } },
{ "type": "Feature", "properties": { "ObjName": "Hyogo", "JIS-CODE": 28, "jis": "28", "pref": "兵庫県", "jobs_ratio": "0.41", "fullness_r": "12.4" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.37516784667969, 35.605754852294922 ], [ 134.54475402832031, 35.666366577148438 ], [ 134.8656005859375, 35.657890319824219 ], [ 134.93074035644531, 35.513042449951172 ], [ 135.03096008300781, 35.53704833984375 ], [ 135.04972839355469, 35.420352935791016 ], [ 134.93695068359375, 35.407238006591797 ], [ 134.9354248046875, 35.308200836181641 ], [ 135.06881713867187, 35.243362426757813 ], [ 135.15005493164062, 35.262283325195313 ], [ 135.22383117675781, 35.165058135986328 ], [ 135.38874816894531, 35.125225067138672 ], [ 135.37069702148437, 35.045646667480469 ], [ 135.44371032714844, 34.937725067138672 ], [ 135.45976257324219, 34.743247985839844 ], [ 135.40545654296875, 34.698490142822266 ], [ 135.33671569824219, 34.720539093017578 ], [ 135.0621337890625, 34.624973297119141 ], [ 134.96598815917969, 34.645427703857422 ], [ 134.74014282226562, 34.767322540283203 ], [ 134.53146362304687, 34.777366638183594 ], [ 134.3187255859375, 34.728260040283203 ], [ 134.25645446777344, 34.850460052490234 ], [ 134.27813720703125, 35.031452178955078 ], [ 134.39930725097656, 35.241485595703125 ], [ 134.51524353027344, 35.275917053222656 ], [ 134.5146484375, 35.353061676025391 ], [ 134.37516784667969, 35.605754852294922 ] ] ] ] } },
{ "type": "Feature", "properties": { "ObjName": "Kagawa", "JIS-CODE": 37, "jis": "37", "pref": "香川県", "jobs_ratio": "0.66", "fullness_r": "10.6" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 133.59841918945313, 34.043666839599609 ], [ 133.71078491210937, 34.245204925537109 ], [ 133.92327880859375, 34.383762359619141 ], [ 133.99813842773437, 34.353748321533203 ], [ 134.25129699707031, 34.349727630615234 ], [ 134.27336120605469, 34.284099578857422 ], [ 134.43955993652344, 34.207866668701172 ], [ 134.17619323730469, 34.171390533447266 ], [ 133.98043823242187, 34.074619293212891 ], [ 133.82577514648437, 34.092632293701172 ], [ 133.68179321289062, 34.011768341064453 ], [ 133.59841918945313, 34.043666839599609 ] ] ] ] } },
{ "type": "Feature", "properties": { "ObjName": "Kochi", "JIS-CODE": 39, "jis": "39", "pref": "高知県", "jobs_ratio": "0.39", "fullness_r": "11" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.30804443359375, 33.551742553710937 ], [ 134.21492004394531, 33.396507263183594 ], [ 134.11683654785156, 33.298816680908203 ], [ 133.92755126953125, 33.488555908203125 ], [ 133.69047546386719, 33.534927368164062 ], [ 133.48432922363281, 33.462009429931641 ], [ 133.45480346679687, 33.420219421386719 ], [ 133.27760314941406, 33.374237060546875 ], [ 133.23989868164062, 33.201171875 ], [ 133.09049987792969, 33.025108337402344 ], [ 133.03851318359375, 33.033321380615234 ], [ 132.93955993652344, 32.780120849609375 ], [ 132.75296020507812, 32.759784698486328 ], [ 132.66032409667969, 32.856853485107422 ], [ 132.65435791015625, 32.924766540527344 ], [ 132.69352722167969, 32.972934722900391 ], [ 132.6842041015625, 33.140151977539062 ], [ 132.79643249511719, 33.271938323974609 ], [ 132.90133666992187, 33.3192138671875 ], [ 132.81352233886719, 33.456901550292969 ], [ 133.0150146484375, 33.482139587402344 ], [ 133.04902648925781, 33.578624725341797 ], [ 133.196533203125, 33.791130065917969 ], [ 133.27354431152344, 33.825580596923828 ], [ 133.50059509277344, 33.834716796875 ], [ 133.65766906738281, 33.881954193115234 ], [ 133.90708923339844, 33.792331695556641 ], [ 134.02583312988281, 33.823177337646484 ], [ 134.06501770019531, 33.695655822753906 ], [ 134.17030334472656, 33.681312561035156 ], [ 134.192138671875, 33.570087432861328 ], [ 134.30804443359375, 33.551742553710937 ] ] ] ] } },
{ "type": "Feature", "properties": { "ObjName": "Tokushima", "JIS-CODE": 36, "jis": "36", "pref": "徳島県", "jobs_ratio": "0.59", "fullness_r": "10.2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 133.68179321289062, 34.011768341064453 ], [ 133.82577514648437, 34.092632293701172 ], [ 133.98043823242187, 34.074619293212891 ], [ 134.17619323730469, 34.171390533447266 ], [ 134.43955993652344, 34.207866668701172 ], [ 134.55905151367187, 34.224422454833984 ], [ 134.63772583007812, 34.179649353027344 ], [ 134.58328247070312, 34.038692474365234 ], [ 134.69012451171875, 33.948635101318359 ], [ 134.574462890625, 33.756076812744141 ], [ 134.40055847167969, 33.652961730957031 ], [ 134.30804443359375, 33.551742553710937 ], [ 134.192138671875, 33.570087432861328 ], [ 134.17030334472656, 33.681312561035156 ], [ 134.06501770019531, 33.695655822753906 ], [ 134.02583312988281, 33.823177337646484 ], [ 133.90708923339844, 33.792331695556641 ], [ 133.65766906738281, 33.881954193115234 ], [ 133.68179321289062, 34.011768341064453 ] ] ] ] } },
{ "type": "Feature", "properties": { "ObjName": "Osaka", "JIS-CODE": 27, "jis": "27", "pref": "大阪府", "jobs_ratio": "0.47", "fullness_r": "10.7" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.37069702148437, 35.045646667480469 ], [ 135.54133605957031, 34.919681549072266 ], [ 135.61570739746094, 34.958541870117188 ], [ 135.73098754882812, 34.780780792236328 ], [ 135.67393493652344, 34.705909729003906 ], [ 135.65182495117187, 34.383857727050781 ], [ 135.25691223144531, 34.314407348632812 ], [ 135.093017578125, 34.311824798583984 ], [ 135.22161865234375, 34.346645355224609 ], [ 135.43582153320312, 34.537464141845703 ], [ 135.45506286621094, 34.646514892578125 ], [ 135.40545654296875, 34.698490142822266 ], [ 135.45976257324219, 34.743247985839844 ], [ 135.44371032714844, 34.937725067138672 ], [ 135.37069702148437, 35.045646667480469 ] ] ] ] } },
{ "type": "Feature", "properties": { "ObjName": "Wakayama", "JIS-CODE": 30, "jis": "30", "pref": "和歌山県", "jobs_ratio": "0.51", "fullness_r": "15.5" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 136.00508117675781, 33.729824066162109 ], [ 135.9500732421875, 33.577945709228516 ], [ 135.78764343261719, 33.476078033447266 ], [ 135.523681640625, 33.521194458007812 ], [ 135.38749694824219, 33.598457336425781 ], [ 135.39016723632812, 33.713748931884766 ], [ 135.18716430664062, 33.819652557373047 ], [ 135.13417053222656, 33.886943817138672 ], [ 135.19377136230469, 34.150913238525391 ], [ 135.07313537597656, 34.263374328613281 ], [ 135.093017578125, 34.311824798583984 ], [ 135.25691223144531, 34.314407348632812 ], [ 135.65182495117187, 34.383857727050781 ], [ 135.70625305175781, 34.212696075439453 ], [ 135.63717651367188, 34.207298278808594 ], [ 135.54751586914062, 34.080387115478516 ], [ 135.63699340820312, 33.974632263183594 ], [ 135.60209655761719, 33.908348083496094 ], [ 135.8602294921875, 33.871780395507813 ], [ 135.86082458496094, 33.819145202636719 ], [ 136.00508117675781, 33.729824066162109 ] ] ] ] } },
{ "type": "Feature", "properties": { "ObjName": "Aichi", "JIS-CODE": 23, "jis": "23", "pref": "愛知県", "jobs_ratio": "0.63", "fullness_r": "5.8" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 137.56350708007813, 35.287246704101563 ], [ 137.834716796875, 35.211776733398437 ], [ 137.82540893554687, 35.153129577636719 ], [ 137.59161376953125, 34.854156494140625 ], [ 137.50228881835937, 34.830371856689453 ], [ 137.48532104492187, 34.672943115234375 ], [ 137.14088439941406, 34.589134216308594 ], [ 137.10530090332031, 34.635780334472656 ], [ 137.29301452636719, 34.728057861328125 ], [ 137.30743408203125, 34.805702209472656 ], [ 137.02870178222656, 34.777469635009766 ], [ 136.95811462402344, 34.845077514648437 ], [ 136.86460876464844, 34.838405609130859 ], [ 136.82557678222656, 34.958045959472656 ], [ 136.749755859375, 35.037128448486328 ], [ 136.6700439453125, 35.136226654052734 ], [ 136.67765808105469, 35.235374450683594 ], [ 136.77207946777344, 35.367557525634766 ], [ 136.98527526855469, 35.400131225585938 ], [ 137.07267761230469, 35.308460235595703 ], [ 137.19422912597656, 35.253482818603516 ], [ 137.3170166015625, 35.286014556884766 ], [ 137.43740844726562, 35.227031707763672 ], [ 137.56350708007813, 35.287246704101563 ] ] ] ] } },
{ "type": "Feature", "properties": { "ObjName": "Mie", "JIS-CODE": 24, "jis": "24", "pref": "三重県", "jobs_ratio": "0.52", "fullness_r": "9.7" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 136.05369567871094, 34.737281799316406 ], [ 136.02296447753906, 34.790767669677734 ], [ 136.12666320800781, 34.886432647705078 ], [ 136.24234008789063, 34.860469818115234 ], [ 136.35731506347656, 34.8995361328125 ], [ 136.41387939453125, 34.979267120361328 ], [ 136.44935607910156, 35.160839080810547 ], [ 136.41233825683594, 35.219444274902344 ], [ 136.520751953125, 35.250877380371094 ], [ 136.6700439453125, 35.136226654052734 ], [ 136.749755859375, 35.037128448486328 ], [ 136.64982604980469, 34.988616943359375 ], [ 136.64326477050781, 34.905597686767578 ], [ 136.54547119140625, 34.773666381835938 ], [ 136.54655456542969, 34.626533508300781 ], [ 136.9246826171875, 34.440620422363281 ], [ 136.89540100097656, 34.280948638916016 ], [ 136.66244506835937, 34.2972412109375 ], [ 136.60017395019531, 34.257835388183594 ], [ 136.33804321289062, 34.200511932373047 ], [ 136.25215148925781, 34.103443145751953 ], [ 136.27308654785156, 33.976661682128906 ], [ 136.08895874023437, 33.874061584472656 ], [ 136.00508117675781, 33.729824066162109 ], [ 135.86082458496094, 33.819145202636719 ], [ 135.8602294921875, 33.871780395507813 ], [ 135.874267578125, 33.862281799316406 ], [ 135.88389587402344, 33.906787872314453 ], [ 135.90690612792969, 33.916290283203125 ], [ 136.00019836425781, 34.009506225585937 ], [ 136.092041015625, 34.030254364013672 ], [ 136.11936950683594, 34.318881988525391 ], [ 136.07330322265625, 34.391071319580078 ], [ 136.2244873046875, 34.494586944580078 ], [ 136.05523681640625, 34.577236175537109 ], [ 136.05369567871094, 34.737281799316406 ] ] ] ] } },
{ "type": "Feature", "properties": { "ObjName": "Ishikawa", "JIS-CODE": 17, "jis": "17", "pref": "石川県", "jobs_ratio": "0.56", "fullness_r": "14.6" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 136.755859375, 36.085357666015625 ], [ 136.66777038574219, 36.068756103515625 ], [ 136.55058288574219, 36.151435852050781 ], [ 136.35458374023437, 36.168121337890625 ], [ 136.24552917480469, 36.293647766113281 ], [ 136.417724609375, 36.420486450195313 ], [ 136.61100769042969, 36.619457244873047 ], [ 136.75033569335937, 36.841220855712891 ], [ 136.76956176757812, 36.985935211181641 ], [ 136.67318725585937, 37.151523590087891 ], [ 136.72592163085937, 37.323795318603516 ], [ 136.85414123535156, 37.402740478515625 ], [ 136.93177795410156, 37.399044036865234 ], [ 137.266357421875, 37.531532287597656 ], [ 137.25343322753906, 37.320735931396484 ], [ 137.09761047363281, 37.273345947265625 ], [ 137.00749206542969, 37.185989379882813 ], [ 136.88375854492187, 37.155536651611328 ], [ 137.05087280273437, 36.958240509033203 ], [ 136.8812255859375, 36.905181884765625 ], [ 136.78463745117187, 36.616348266601563 ], [ 136.81434631347656, 36.544155120849609 ], [ 136.7960205078125, 36.300392150878906 ], [ 136.84799194335937, 36.251178741455078 ], [ 136.755859375, 36.085357666015625 ] ] ] ] } },
{ "type": "Feature", "properties": { "ObjName": "Tokyo", "JIS-CODE": 13, "jis": "13", "pref": "東京都", "jobs_ratio": "0.59", "fullness_r": "5.5" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 139.88352966308594, 35.646411895751953 ], [ 139.76095581054687, 35.641948699951172 ], [ 139.77064514160156, 35.538143157958984 ], [ 139.53677368164062, 35.639873504638672 ], [ 139.45571899414062, 35.529598236083984 ], [ 139.35862731933594, 35.596138000488281 ], [ 139.23785400390625, 35.608894348144531 ], [ 139.13035583496094, 35.671653747558594 ], [ 139.02995300292969, 35.715656280517578 ], [ 138.94151306152344, 35.853420257568359 ], [ 139.02658081054687, 35.895130157470703 ], [ 139.287109375, 35.840263366699219 ], [ 139.3812255859375, 35.767112731933594 ], [ 139.76274108886719, 35.813907623291016 ], [ 139.89506530761719, 35.785305023193359 ], [ 139.88352966308594, 35.646411895751953 ] ] ] ] } },
{ "type": "Feature", "properties": { "ObjName": "Kanagawa", "JIS-CODE": 14, "jis": "14", "pref": "神奈川県", "jobs_ratio": "0.35", "fullness_r": "7.7" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 139.77064514160156, 35.538143157958984 ], [ 139.67739868164062, 35.436935424804688 ], [ 139.606689453125, 35.225440979003906 ], [ 139.548828125, 35.302516937255859 ], [ 139.25584411621094, 35.293601989746094 ], [ 139.14884948730469, 35.236106872558594 ], [ 139.11090087890625, 35.141365051269531 ], [ 139.0372314453125, 35.151454925537109 ], [ 138.97486877441406, 35.263126373291016 ], [ 138.99952697753906, 35.395645141601563 ], [ 138.91746520996094, 35.399551391601563 ], [ 139.08805847167969, 35.516407012939453 ], [ 139.13035583496094, 35.671653747558594 ], [ 139.23785400390625, 35.608894348144531 ], [ 139.35862731933594, 35.596138000488281 ], [ 139.45571899414062, 35.529598236083984 ], [ 139.53677368164062, 35.639873504638672 ], [ 139.77064514160156, 35.538143157958984 ] ] ] ] } },
{ "type": "Feature", "properties": { "ObjName": "Niigata", "JIS-CODE": 15, "jis": "15", "pref": "新潟県", "jobs_ratio": "0.5", "fullness_r": "15.4" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 137.63401794433594, 36.980316162109375 ], [ 137.91841125488281, 37.066192626953125 ], [ 138.10205078125, 37.172557830810547 ], [ 138.21780395507812, 37.168960571289063 ], [ 138.54058837890625, 37.366916656494141 ], [ 138.77470397949219, 37.650032043457031 ], [ 138.82208251953125, 37.7860107421875 ], [ 139.07437133789062, 37.94879150390625 ], [ 139.30296325683594, 38.039413452148438 ], [ 139.4205322265625, 38.169235229492188 ], [ 139.46003723144531, 38.402957916259766 ], [ 139.55354309082031, 38.544918060302734 ], [ 139.71165466308594, 38.496444702148438 ], [ 139.70481872558594, 38.397159576416016 ], [ 139.89053344726562, 38.278270721435547 ], [ 139.79331970214844, 38.202632904052734 ], [ 139.68727111816406, 38.1839599609375 ], [ 139.68441772460937, 38.052581787109375 ], [ 139.63081359863281, 37.895957946777344 ], [ 139.74266052246094, 37.820892333984375 ], [ 139.55198669433594, 37.623825073242188 ], [ 139.58839416503906, 37.526981353759766 ], [ 139.42303466796875, 37.504928588867188 ], [ 139.23249816894531, 37.443691253662109 ], [ 139.24192810058594, 37.362567901611328 ], [ 139.17005920410156, 37.240200042724609 ], [ 139.25968933105469, 37.156490325927734 ], [ 139.23643493652344, 36.949245452880859 ], [ 139.10101318359375, 37.050056457519531 ], [ 138.9285888671875, 36.834606170654297 ], [ 138.69598388671875, 36.73724365234375 ], [ 138.691162109375, 36.850185394287109 ], [ 138.57969665527344, 36.921371459960937 ], [ 138.55465698242187, 37.020160675048828 ], [ 138.39527893066406, 36.995517730712891 ], [ 138.24787902832031, 36.865692138671875 ], [ 138.00758361816406, 36.827735900878906 ], [ 137.9935302734375, 36.908809661865234 ], [ 137.87416076660156, 36.9051513671875 ], [ 137.75901794433594, 36.768215179443359 ], [ 137.70576477050781, 36.940242767333984 ], [ 137.63401794433594, 36.980316162109375 ] ] ] ] } },
{ "type": "Feature", "properties": { "ObjName": "Miyagi", "JIS-CODE": 4, "jis": "4", "pref": "宮城県", "jobs_ratio": "0.4", "fullness_r": "10.5" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.63179016113281, 38.969791412353516 ], [ 141.65383911132812, 38.902679443359375 ], [ 141.5225830078125, 38.786468505859375 ], [ 141.55865478515625, 38.703609466552734 ], [ 141.46322631835937, 38.441085815429688 ], [ 141.074951171875, 38.371170043945313 ], [ 140.92802429199219, 38.084320068359375 ], [ 140.92648315429687, 37.897438049316406 ], [ 140.84342956542969, 37.797985076904297 ], [ 140.69651794433594, 37.803638458251953 ], [ 140.67092895507812, 37.892642974853516 ], [ 140.27909851074219, 37.976463317871094 ], [ 140.28079223632812, 38.051483154296875 ], [ 140.41950988769531, 38.084072113037109 ], [ 140.47103881835937, 38.259983062744141 ], [ 140.60549926757812, 38.475082397460938 ], [ 140.56785583496094, 38.504058837890625 ], [ 140.60340881347656, 38.784835815429688 ], [ 140.54586791992187, 38.890426635742187 ], [ 140.65036010742187, 38.887325286865234 ], [ 140.7791748046875, 38.957496643066406 ], [ 140.98603820800781, 38.878940582275391 ], [ 141.10527038574219, 38.882156372070313 ], [ 141.14437866210937, 38.794322967529297 ], [ 141.24665832519531, 38.758831024169922 ], [ 141.31275939941406, 38.821819305419922 ], [ 141.43405151367187, 38.787708282470703 ], [ 141.48820495605469, 38.993045806884766 ], [ 141.63179016113281, 38.969791412353516 ] ] ] ] } },
{ "type": "Feature", "properties": { "ObjName": "Fukuoka", "JIS-CODE": 40, "jis": "40", "pref": "福岡県", "jobs_ratio": "0.42", "fullness_r": "11.1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 130.41506958007812, 33.001274108886719 ], [ 130.36030578613281, 33.141548156738281 ], [ 130.34120178222656, 33.201725006103516 ], [ 130.54403686523438, 33.369651794433594 ], [ 130.27284240722656, 33.476696014404297 ], [ 130.04202270507812, 33.474098205566406 ], [ 130.13230895996094, 33.5177001953125 ], [ 130.15908813476562, 33.623859405517578 ], [ 130.29310607910156, 33.581783294677734 ], [ 130.4072265625, 33.615810394287109 ], [ 130.45741271972656, 33.811969757080078 ], [ 130.54942321777344, 33.888057708740234 ], [ 130.687744140625, 33.933692932128906 ], [ 130.92201232910156, 33.900394439697266 ], [ 131.08657836914063, 33.635318756103516 ], [ 131.18356323242187, 33.620723724365234 ], [ 131.17100524902344, 33.51141357421875 ], [ 130.98721313476562, 33.506477355957031 ], [ 130.89781188964844, 33.443641662597656 ], [ 130.8431396484375, 33.342254638671875 ], [ 130.88412475585937, 33.181064605712891 ], [ 130.83987426757812, 33.105190277099609 ], [ 130.677978515625, 33.163169860839844 ], [ 130.41506958007812, 33.001274108886719 ] ] ] ] } },
{ "type": "Feature", "properties": { "ObjName": "Oita", "JIS-CODE": 44, "jis": "44", "pref": "大分県", "jobs_ratio": "0.49", "fullness_r": "13.1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 131.18356323242187, 33.620723724365234 ], [ 131.425048828125, 33.572891235351563 ], [ 131.50711059570312, 33.671802520751953 ], [ 131.66429138183594, 33.661277770996094 ], [ 131.72752380371094, 33.585582733154297 ], [ 131.69395446777344, 33.405426025390625 ], [ 131.50584411621094, 33.290031433105469 ], [ 131.80221557617187, 33.242259979248047 ], [ 131.86058044433594, 33.198040008544922 ], [ 131.90226745605469, 32.979881286621094 ], [ 132.00303649902344, 32.940147399902344 ], [ 131.97196960449219, 32.799507141113281 ], [ 131.88517761230469, 32.746746063232422 ], [ 131.85585021972656, 32.818103790283203 ], [ 131.71083068847656, 32.777523040771484 ], [ 131.50914001464844, 32.774021148681641 ], [ 131.47457885742187, 32.834613800048828 ], [ 131.32792663574219, 32.833896636962891 ], [ 131.15301513671875, 33.147518157958984 ], [ 130.99650573730469, 33.179889678955078 ], [ 131.00300598144531, 33.032291412353516 ], [ 130.83987426757812, 33.105190277099609 ], [ 130.88412475585937, 33.181064605712891 ], [ 130.8431396484375, 33.342254638671875 ], [ 130.89781188964844, 33.443641662597656 ], [ 130.98721313476562, 33.506477355957031 ], [ 131.17100524902344, 33.51141357421875 ], [ 131.18356323242187, 33.620723724365234 ] ] ] ] } },
{ "type": "Feature", "properties": { "ObjName": "Saga", "JIS-CODE": 41, "jis": "41", "pref": "佐賀県", "jobs_ratio": "0.42", "fullness_r": "15.4" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 130.36030578613281, 33.141548156738281 ], [ 130.258544921875, 33.185226440429688 ], [ 130.12261962890625, 33.106334686279297 ], [ 130.21083068847656, 32.958106994628906 ], [ 130.05911254882812, 32.988937377929687 ], [ 129.81707763671875, 33.187313079833984 ], [ 129.79513549804687, 33.336921691894531 ], [ 129.93815612792969, 33.478191375732422 ], [ 130.04202270507812, 33.474098205566406 ], [ 130.27284240722656, 33.476696014404297 ], [ 130.54403686523438, 33.369651794433594 ], [ 130.34120178222656, 33.201725006103516 ], [ 130.36030578613281, 33.141548156738281 ] ] ] ] } },
{ "type": "Feature", "properties": { "ObjName": "Kumamoto", "JIS-CODE": 43, "jis": "43", "pref": "熊本県", "jobs_ratio": "0.43", "fullness_r": "11.7" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 130.41795349121094, 32.426361083984375 ], [ 130.24349975585937, 32.404445648193359 ], [ 130.06021118164062, 32.210578918457031 ], [ 129.97093200683594, 32.250377655029297 ], [ 130.04362487792969, 32.516227722167969 ], [ 130.17707824707031, 32.550220489501953 ], [ 130.22398376464844, 32.458847045898437 ], [ 130.31842041015625, 32.517261505126953 ], [ 130.45408630371094, 32.511314392089844 ], [ 130.41795349121094, 32.426361083984375 ] ] ], [ [ [ 130.35926818847656, 32.166683197021484 ], [ 130.56427001953125, 32.430366516113281 ], [ 130.53926086425781, 32.528724670410156 ], [ 130.63633728027344, 32.600166320800781 ], [ 130.53532409667969, 32.666713714599609 ], [ 130.61579895019531, 32.78118896484375 ], [ 130.41506958007812, 33.001274108886719 ], [ 130.677978515625, 33.163169860839844 ], [ 130.83987426757812, 33.105190277099609 ], [ 131.00300598144531, 33.032291412353516 ], [ 130.99650573730469, 33.179889678955078 ], [ 131.15301513671875, 33.147518157958984 ], [ 131.32792663574219, 32.833896636962891 ], [ 131.04843139648438, 32.581005096435547 ], [ 131.02101135253906, 32.441841125488281 ], [ 131.10877990722656, 32.331600189208984 ], [ 130.96310424804687, 32.116912841796875 ], [ 130.72074890136719, 32.099800109863281 ], [ 130.62599182128906, 32.156131744384766 ], [ 130.39955139160156, 32.122097015380859 ], [ 130.35926818847656, 32.166683197021484 ] ] ] ] } },
{ "type": "Feature", "properties": { "ObjName": "Kagoshima", "JIS-CODE": 46, "jis": "46", "pref": "鹿児島県", "jobs_ratio": "0.39", "fullness_r": "14.4" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 131.15988159179687, 31.459583282470703 ], [ 131.06155395507812, 31.444002151489258 ], [ 131.01718139648437, 31.363367080688477 ], [ 131.11474609375, 31.264684677124023 ], [ 131.02107238769531, 31.227264404296875 ], [ 130.96354675292969, 31.139364242553711 ], [ 130.79336547851563, 31.077014923095703 ], [ 130.7574462890625, 31.152565002441406 ], [ 130.8043212890625, 31.330638885498047 ], [ 130.70063781738281, 31.467290878295898 ], [ 130.69656372070312, 31.552658081054687 ], [ 130.78541564941406, 31.585721969604492 ], [ 130.79629516601562, 31.696235656738281 ], [ 130.62937927246094, 31.711471557617188 ], [ 130.52131652832031, 31.466794967651367 ], [ 130.57255554199219, 31.317926406860352 ], [ 130.663330078125, 31.269556045532227 ], [ 130.6324462890625, 31.183494567871094 ], [ 130.5130615234375, 31.172645568847656 ], [ 130.46723937988281, 31.248212814331055 ], [ 130.21858215332031, 31.255992889404297 ], [ 130.22673034667969, 31.40156364440918 ], [ 130.31216430664062, 31.486352920532227 ], [ 130.31636047363281, 31.657217025756836 ], [ 130.17120361328125, 31.798791885375977 ], [ 130.22285461425781, 31.897394180297852 ], [ 130.18205261230469, 31.99781608581543 ], [ 130.19129943847656, 32.113922119140625 ], [ 130.35926818847656, 32.166683197021484 ], [ 130.39955139160156, 32.122097015380859 ], [ 130.62599182128906, 32.156131744384766 ], [ 130.72074890136719, 32.099800109863281 ], [ 130.81111145019531, 31.946237564086914 ], [ 130.90608215332031, 31.884401321411133 ], [ 130.87789916992187, 31.817873001098633 ], [ 131.01200866699219, 31.746164321899414 ], [ 131.05204772949219, 31.64164924621582 ], [ 131.16075134277344, 31.63569450378418 ], [ 131.19950866699219, 31.52061653137207 ], [ 131.15988159179687, 31.459583282470703 ] ] ] ] } },
{ "type": "Feature", "properties": { "ObjName": "Miyazaki", "JIS-CODE": 45, "jis": "45", "pref": "宮崎県", "jobs_ratio": "0.43", "fullness_r": "14.6" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 131.88517761230469, 32.746746063232422 ], [ 131.76861572265625, 32.655017852783203 ], [ 131.68545532226562, 32.543895721435547 ], [ 131.58740234375, 32.290267944335938 ], [ 131.46882629394531, 31.924520492553711 ], [ 131.48867797851562, 31.781740188598633 ], [ 131.46139526367187, 31.627878189086914 ], [ 131.38792419433594, 31.552453994750977 ], [ 131.37162780761719, 31.429004669189453 ], [ 131.25575256347656, 31.380382537841797 ], [ 131.15988159179687, 31.459583282470703 ], [ 131.19950866699219, 31.52061653137207 ], [ 131.16075134277344, 31.63569450378418 ], [ 131.05204772949219, 31.64164924621582 ], [ 131.01200866699219, 31.746164321899414 ], [ 130.87789916992187, 31.817873001098633 ], [ 130.90608215332031, 31.884401321411133 ], [ 130.81111145019531, 31.946237564086914 ], [ 130.72074890136719, 32.099800109863281 ], [ 130.96310424804687, 32.116912841796875 ], [ 131.10877990722656, 32.331600189208984 ], [ 131.02101135253906, 32.441841125488281 ], [ 131.04843139648438, 32.581005096435547 ], [ 131.32792663574219, 32.833896636962891 ], [ 131.47457885742187, 32.834613800048828 ], [ 131.50914001464844, 32.774021148681641 ], [ 131.71083068847656, 32.777523040771484 ], [ 131.85585021972656, 32.818103790283203 ], [ 131.88517761230469, 32.746746063232422 ] ] ] ] } },
{ "type": "Feature", "properties": { "ObjName": "Nagasaki", "JIS-CODE": 42, "jis": "42", "pref": "長崎県", "jobs_ratio": "0.4", "fullness_r": "17.8" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 130.21083068847656, 32.958106994628906 ], [ 130.1607666015625, 32.837795257568359 ], [ 130.318603515625, 32.870357513427734 ], [ 130.380615234375, 32.787429809570312 ], [ 130.34419250488281, 32.673664093017578 ], [ 130.17196655273438, 32.603706359863281 ], [ 130.2109375, 32.739589691162109 ], [ 130.087158203125, 32.795230865478516 ], [ 129.95387268066406, 32.740657806396484 ], [ 129.87876892089844, 32.650718688964844 ], [ 129.76487731933594, 32.817272186279297 ], [ 129.62748718261719, 32.95367431640625 ], [ 129.67843627929687, 33.091747283935547 ], [ 129.82066345214844, 32.971614837646484 ], [ 129.79219055175781, 32.869483947753906 ], [ 129.94435119628906, 32.861946105957031 ], [ 129.94343566894531, 33.013736724853516 ], [ 129.77777099609375, 33.079978942871094 ], [ 129.7088623046875, 33.161861419677734 ], [ 129.56427001953125, 33.24688720703125 ], [ 129.57655334472656, 33.377540588378906 ], [ 129.79513549804687, 33.336921691894531 ], [ 129.81707763671875, 33.187313079833984 ], [ 130.05911254882812, 32.988937377929687 ], [ 130.21083068847656, 32.958106994628906 ] ] ] ] } },
{ "type": "Feature", "properties": { "ObjName": "Okinawa", "JIS-CODE": 47, "jis": "47", "pref": "沖縄県", "jobs_ratio": "0.26", "fullness_r": "27.4" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 127.88098907470703, 26.650728225708008 ], [ 127.87496185302734, 26.695037841796875 ], [ 128.10678100585937, 26.691884994506836 ], [ 128.21543884277344, 26.789417266845703 ], [ 128.31948852539062, 26.747709274291992 ], [ 128.23493957519531, 26.634544372558594 ], [ 128.00331115722656, 26.508626937866211 ], [ 127.8663330078125, 26.338851928710938 ], [ 127.77681732177734, 26.181930541992188 ], [ 127.68536376953125, 26.076271057128906 ], [ 127.64129638671875, 26.192874908447266 ], [ 127.76056671142578, 26.311614990234375 ], [ 127.71864318847656, 26.404808044433594 ], [ 127.98093414306641, 26.585004806518555 ], [ 127.88098907470703, 26.650728225708008 ] ] ] ] } },
{ "type": "Feature", "properties": { "ObjName": "Hokkaido", "JIS-CODE": 1, "jis": "1", "pref": "北海道", "jobs_ratio": "0.37", "fullness_r": "24.4" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.46435546875, 43.094745635986328 ], [ 140.33302307128906, 43.219921112060547 ], [ 140.3681640625, 43.330944061279297 ], [ 140.49127197265625, 43.374038696289063 ], [ 140.65077209472656, 43.264152526855469 ], [ 140.82490539550781, 43.195926666259766 ], [ 141.003662109375, 43.195915222167969 ], [ 141.13748168945313, 43.151611328125 ], [ 141.26692199707031, 43.195365905761719 ], [ 141.42189025878906, 43.328266143798828 ], [ 141.42497253417969, 43.428997039794922 ], [ 141.36271667480469, 43.524478912353516 ], [ 141.38954162597656, 43.594509124755859 ], [ 141.33944702148437, 43.72247314453125 ], [ 141.38154602050781, 43.793773651123047 ], [ 141.626220703125, 43.918914794921875 ], [ 141.66009521484375, 44.029743194580078 ], [ 141.64772033691406, 44.309398651123047 ], [ 141.75784301757812, 44.459884643554687 ], [ 141.7901611328125, 44.680843353271484 ], [ 141.70657348632812, 44.955341339111328 ], [ 141.59379577636719, 45.150218963623047 ], [ 141.57902526855469, 45.241260528564453 ], [ 141.69573974609375, 45.402988433837891 ], [ 141.81497192382812, 45.413726806640625 ], [ 141.9412841796875, 45.518787384033203 ], [ 142.04534912109375, 45.404106140136719 ], [ 142.163330078125, 45.339443206787109 ], [ 142.49098205566406, 45.055908203125 ], [ 142.73867797851562, 44.755443572998047 ], [ 142.97105407714844, 44.572307586669922 ], [ 143.34898376464844, 44.369586944580078 ], [ 143.38908386230469, 44.324481964111328 ], [ 143.68515014648437, 44.194347381591797 ], [ 143.73576354980469, 44.1160888671875 ], [ 143.95545959472656, 44.09747314453125 ], [ 143.97686767578125, 44.137611389160156 ], [ 144.2593994140625, 44.105007171630859 ], [ 144.32904052734375, 43.971408843994141 ], [ 144.54083251953125, 43.922367095947266 ], [ 144.796630859375, 43.930461883544922 ], [ 145.01078796386719, 44.092010498046875 ], [ 145.19575500488281, 44.200489044189453 ], [ 145.35890197753906, 44.256114959716797 ], [ 145.23878479003906, 44.062614440917969 ], [ 145.10060119628906, 43.895915985107422 ], [ 145.06596374511719, 43.760833740234375 ], [ 145.24034118652344, 43.532569885253906 ], [ 145.30409240722656, 43.289676666259766 ], [ 145.45271301269531, 43.263935089111328 ], [ 145.46299743652344, 43.188697814941406 ], [ 145.1575927734375, 43.146553039550781 ], [ 145.00126647949219, 42.992958068847656 ], [ 144.91755676269531, 43.062862396240234 ], [ 144.78396606445312, 43.051601409912109 ], [ 144.72508239746094, 42.976020812988281 ], [ 144.48600769042969, 42.940380096435547 ], [ 144.30320739746094, 43.003871917724609 ], [ 144.04806518554688, 42.935371398925781 ], [ 143.86860656738281, 42.832633972167969 ], [ 143.60989379882813, 42.645610809326172 ], [ 143.42892456054687, 42.466720581054688 ], [ 143.32888793945312, 42.300514221191406 ], [ 143.32383728027344, 42.059715270996094 ], [ 143.25753784179687, 41.965419769287109 ], [ 142.95498657226562, 42.125286102294922 ], [ 142.82740783691406, 42.141746520996094 ], [ 142.49801635742187, 42.265602111816406 ], [ 142.27926635742187, 42.373085021972656 ], [ 142.19145202636719, 42.444606781005859 ], [ 142.02073669433594, 42.487293243408203 ], [ 141.88883972167969, 42.577194213867188 ], [ 141.630126953125, 42.632354736328125 ], [ 141.38320922851562, 42.563636779785156 ], [ 141.13909912109375, 42.431926727294922 ], [ 141.02513122558594, 42.332897186279297 ], [ 140.91754150390625, 42.371200561523438 ], [ 140.87654113769531, 42.453353881835938 ], [ 140.69970703125, 42.584396362304688 ], [ 140.4759521484375, 42.586921691894531 ], [ 140.3402099609375, 42.453506469726563 ], [ 140.27951049804687, 42.309581756591797 ], [ 140.58818054199219, 42.109279632568359 ], [ 140.72041320800781, 42.134262084960938 ], [ 140.96672058105469, 41.914237976074219 ], [ 141.14334106445312, 41.858505249023438 ], [ 141.04498291015625, 41.723037719726563 ], [ 140.79301452636719, 41.771244049072266 ], [ 140.68934631347656, 41.818424224853516 ], [ 140.45149230957031, 41.688137054443359 ], [ 140.43621826171875, 41.545566558837891 ], [ 140.2598876953125, 41.479404449462891 ], [ 140.19036865234375, 41.398880004882813 ], [ 140.06759643554687, 41.425796508789063 ], [ 139.98091125488281, 41.562492370605469 ], [ 140.00697326660156, 41.690414428710937 ], [ 140.12117004394531, 41.827781677246094 ], [ 140.12196350097656, 41.993648529052734 ], [ 140.02059936523438, 42.11602783203125 ], [ 139.92996215820313, 42.132987976074219 ], [ 139.80279541015625, 42.231460571289063 ], [ 139.77406311035156, 42.306980133056641 ], [ 139.85377502441406, 42.456874847412109 ], [ 139.83091735839844, 42.611343383789063 ], [ 139.88316345214844, 42.668643951416016 ], [ 140.03195190429687, 42.690319061279297 ], [ 140.25318908691406, 42.770229339599609 ], [ 140.43070983886719, 42.945274353027344 ], [ 140.53134155273438, 43.009258270263672 ], [ 140.46435546875, 43.094745635986328 ] ] ] ] } }
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment