Skip to content

Instantly share code, notes, and snippets.

@Hirosaji
Last active February 19, 2020 02:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Hirosaji/1598745b92e0ce21cd8223700e639089 to your computer and use it in GitHub Desktop.
Save Hirosaji/1598745b92e0ce21cd8223700e639089 to your computer and use it in GitHub Desktop.
turf × leaflet × d3v4 - Hex Grid on Map
# Turf.js × Leaflet.js × D3.js - Hex Grid on Map
license: mit
<!DOCTYPE html>
<html lang="ja">
<head>
<meta http-equiv="content-language" content="ja">
<title>Kyoto Wifi Map</title>
<link rel="stylesheet" href="./style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.3.3/leaflet.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.3.3/leaflet.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Turf.js/2.0.0/turf.js"></script>
<script src="https://d3js.org/d3.v4.min.js"></script>
</head>
<body>
<div id="map"></div>
<script>
//jsonデータの読み込み
d3.queue()
.defer(d3.json, 'kyotoWifiMap.geojson')
.await(function(error, points) {
//取得する統計情報(今回は合計値のみ)
var aggregations = [
{
aggregation: 'count',
inField: '',
outField: 'pt_count'
}
]
map = L.map('map').setView([35.0, 135.75], 12);
//地理院地図レイヤー追加
L.tileLayer(
'http://cyberjapandata.gsi.go.jp/xyz/pale/{z}/{x}/{y}.png',
{
attribution: "<a href='http://www.gsi.go.jp/kikakuchousei/kikakuchousei40182.html' target='_blank'>国土地理院</a>",
accessToken: 'pk.eyJ1IjoiaGlyb3NhamkiLCJhIjoiY2phYW1qM2lyMHRzcTMybzd1dzhlaG83NCJ9.2QcsoUxneas4TQFI3F-DyQ',
maxZoom: 18,
}
).addTo(map);
//hexグリッド用のレイヤーを準備
var hexLayer = L.geoJson().addTo(map);
//表示されている四隅の緯度経度を取得
var b = map.getBounds();
extend = [b.getSouthWest().lng , b.getSouthWest().lat , b.getNorthEast().lng, b.getNorthEast().lat];
//表示されている範囲をhexで埋める
var grid = turf.hexGrid(extend, 1, 'kilometers');
//squareデータに統計情報を付加(今回はマーカーの数のみ)
var grid = turf.aggregate(grid, points, aggregations);
//各セルのスタイルを設定
grid.features.forEach(setStyle);
//hexグリッドを地図に追加
hexLayer.addData(grid);
//統計情報に合わせてhexグリッドのスタイルを調整
hexLayer.eachLayer(function(l) {
l.setStyle(l.feature.properties.withSum);
});
//凡例の追加
var legend = L.control({position: 'bottomright'});
legend.onAdd = function (map) {
var div = L.DomUtil.create('div', 'info legend'),
grades = [0, 2, 4, 6, 8, 10],
labels = [];
for (var i = 0; i < grades.length; i++) {
div.innerHTML +=
'<i style="background:#FF0000; opacity:' + getOpacity(grades[i] + 1) + ';"></i> ' +
grades[i] + (grades[i + 1] ? '&ndash;' + grades[i + 1] + '<br>' : '+');
}
return div;
};
legend.addTo(map);
});
//各セルのスタイルを指定
function setStyle(cell){
cell.properties.withSum= {};
var pt_count = cell.properties.pt_count;
var _withSum = {};
_withSum.color = '#FF0000';
_withSum.weight = 0;
_withSum.fill = '#FF0000';
_withSum.fillOpacity = 0;
_withSum.fillOpacity = getOpacity(pt_count);
_withSum.weight = getStrokeWeight(pt_count);
cell.properties.withSum = _withSum;
}
//各セルのopacityを指定
function getOpacity(value) {
return value > 10 ? 0.9 :
value > 8 ? 0.7 :
value > 6 ? 0.5 :
value > 4 ? 0.3 :
value > 2 ? 0.1 :
0;
}
//各セルのstrokeの太さを指定
function getStrokeWeight(value) {
return value > 10 ? 4 :
value > 8 ? 3 :
value > 6 ? 2 :
value > 4 ? 1 :
value > 2 ? 0 :
0;
}
</script>
</html>
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":{},"geometry":{"type":"Point","coordinates":["135.7709012","35.0090808"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1964609","35.5382209"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1964609","35.5382209"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7772227","35.0007139"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7788625","35.0024256"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7553751","34.9920048"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.810242","34.8871799"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7943881","35.0119337"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7785258","35.0036343"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.674184","35.0151626"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["139.7643506","35.6749498"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.783842","35.0062868"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.759281","35.004081"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.760561","34.9835"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["139.7643506","35.6749498"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.759609","35.003354"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7273526","34.9974534"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.759996","34.987438"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7428921","34.8938732"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7343187","34.9764972"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.754648","35.020625"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7631995","34.99020712"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.763615","34.93515694"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7614218","34.99591218"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7737619","35.00353661"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1746395","35.57499919"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7894742","35.0114166"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7781722","35.02619566"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7695039","35.00758904"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7713455","35.00139235"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.76176","35.01396628"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.5462369","35.05067197"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7707037","35.01051102"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7603604","35.006303"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0534488","35.70110576"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7769418","35.0179437"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1410028","35.74972492"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.763615","34.93515694"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7631995","34.99020712"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7614218","34.99591218"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7631995","34.99020712"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7631995","34.99020712"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7631995","34.99020712"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7631995","34.99020712"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.763615","34.93515694"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.763615","34.93515694"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7631995","34.99020712"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6982904","35.02082315"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7422755","35.04903472"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.799834","34.92558664"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7945517","34.88557107"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.5772417","35.01011397"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7755004","35.01389684"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7573301","35.00706402"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7573301","35.00706402"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7557506","34.98074112"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7743896","35.00623361"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0540265","35.70124186"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.774548","35.00323386"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6802175","34.89168499"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7045683","34.98802911"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0845406","35.60887905"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7587413","34.74072939"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.2006745","35.53280993"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7712553","34.81960269"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6036421","35.00647548"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.109842","35.30511495"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.795701","34.92153133"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8220062","35.08961402"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7573855","35.01308299"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7831102","34.91135422"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7303133","34.99681732"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7659402","35.01233308"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1975774","35.53568178"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6794835","35.01405446"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7545507","34.9759721"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7712093","35.00505037"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6935998","34.98049919"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7501006","34.99588429"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7683907","34.98864624"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7761205","34.98538835"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7598131","35.04391032"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7484749","35.05445916"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0816771","35.60727616"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7654709","35.00801121"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7888181","35.06439696"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.3271667","35.44843776"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6829496","35.02057865"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7105518","34.845324"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7158284","34.9750774"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7099203","34.87871007"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7499943","35.02990914"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7448197","35.04208"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.732085","35.01936539"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7586577","35.01007213"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7588334","34.87493892"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7476974","35.02278758"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8164687","34.77473788"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7591861","34.98907937"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7037654","35.00844116"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7763311","35.00551145"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7595875","34.92803271"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7685519","34.96282946"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.79994","34.88755149"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7498026","35.04967359"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.705812","34.95251547"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7315851","35.01938205"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7934187","34.73707765"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6950577","34.96400617"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.3288666","35.44622137"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7610101","35.05095117"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7609197","34.97933854"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7693261","35.00848618"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7423505","35.04151336"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7595774","34.94767792"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1141697","35.29644672"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7141976","35.02507839"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7814363","34.88124086"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0703427","35.62571868"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.5839686","35.01386366"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6765387","35.0232143"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7628907","35.00726127"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["134.9269086","35.62978373"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0208825","35.68760664"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0791503","35.60947749"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6717526","35.03132701"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7716512","34.99604005"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0992503","35.7347868"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7919404","35.02632639"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7671151","35.01108874"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7482843","34.98887649"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.3888167","35.46254848"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7503859","35.02946196"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.629934","35.16638394"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7159726","34.96451159"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7584218","35.00328933"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7670597","35.0062808"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0176188","35.69069511"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7621895","34.82066357"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1779336","35.58035976"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7891604","35.01041111"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7965069","35.0156997"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7625712","35.01026936"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0806103","35.60089395"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1387312","35.31066193"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8179796","34.98655325"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7669294","34.9489891"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.76015","34.95615218"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8406709","34.71382851"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7524219","35.03336434"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7775593","34.8724669"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.720686","35.02810598"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8000235","34.8819271"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7857135","34.88487103"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0676643","35.71542931"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1310931","35.2976247"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8169743","34.99031943"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7028127","35.00565255"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.02551","35.68150186"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6316971","35.15645439"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7751869","35.04327139"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7398098","34.99644523"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7091814","35.02033994"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["134.9049731","35.59181454"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7880642","34.85884618"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7608277","34.98685458"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7647937","34.99393183"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8085722","34.94434919"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7489671","34.95072156"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0617332","35.62075946"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7956679","34.75903643"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1195721","35.29141422"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7446039","34.99485097"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.5849299","35.00460335"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8242124","34.98764217"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7316325","35.00940239"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0610694","35.62315909"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1869194","35.55491545"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7717402","35.04380184"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["134.9288212","35.33841953"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8240567","34.97999027"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7266914","34.99933097"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7752563","35.00039245"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7772088","35.00489483"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7312905","35.03790241"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7827108","34.89090917"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8154798","34.96012013"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8038226","34.91132685"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7443338","35.0263483"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7490251","35.01680758"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7649216","34.95733828"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0973149","35.32504289"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.3293642","35.42483792"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1226493","35.30091296"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7506444","34.94486382"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7118001","34.94443564"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7480526","35.05938362"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7051788","34.95410977"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8196293","34.96492804"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7629656","35.00899446"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.759941","35.00550584"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0879624","35.72898146"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1150137","35.30783692"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7722941","34.81969714"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.472028","35.10661261"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["134.9679626","35.66779684"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7263079","35.01519624"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.778517","35.00500871"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7019157","34.9792604"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6753888","35.02154506"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.5840049","35.00588101"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7687514","35.00085627"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8229908","34.88041921"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.5828604","35.01490245"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.5828604","35.01490245"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.5439899","35.04894423"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.5828604","35.01490245"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8043665","34.80037713"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0307733","35.68726522"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7766949","35.00601974"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7949873","34.9370605"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8090779","35.03779201"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7713343","35.03574452"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7816613","34.99479855"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7664328","34.96899817"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6775752","35.01396279"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7267874","34.83294292"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7293288","34.9366916"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1895361","35.53963949"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7708017","34.96770123"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7535524","35.0185936"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7575698","34.98343814"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.738787","35.04535453"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7670651","35.01454122"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7000402","34.95040459"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7540055","35.00350316"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7588853","35.04587954"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7333682","35.0267175"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7703706","35.00331996"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7681205","35.02763992"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8705004","34.91130928"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7776112","34.89077577"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7466137","35.06797714"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7146972","34.9474353"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0442163","35.69353982"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7695768","34.96316835"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7393711","34.98894306"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7141145","35.01135481"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7713025","34.82156363"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.772058","34.82158863"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7569192","35.00262271"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7708216","34.85264396"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7402093","35.01856283"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7647932","35.00895836"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7626156","35.00880003"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.2321862","35.30134852"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8157186","34.97992905"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7639314","35.07655391"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7453252","35.03907204"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7687076","35.00776096"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7626881","35.00232555"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.80099","34.8836547"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6988855","34.98337951"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7690676","35.01577166"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.258562","35.29651307"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7573799","35.0131441"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7494499","35.03405595"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.205015","35.58353481"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.778956","34.99566512"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7301241","35.01752942"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["134.9471138","35.34061644"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8038698","34.97869281"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8166494","34.99141929"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7422951","35.02673434"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0286653","35.68050482"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.2086686","35.30148449"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7942656","34.9793757"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["134.9285972","35.63826337"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7673372","35.02507909"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7189861","35.02639223"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.2775981","35.51946013"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7564606","35.01239137"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7282636","34.98424336"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7732841","35.00573643"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7593132","35.00976105"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0982002","35.58490902"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["134.9082466","35.64236534"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7805693","35.03313101"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7862245","35.00933616"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7030285","34.93732535"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0653602","35.62628169"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8098355","34.79680806"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8257849","35.01913608"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7673104","34.96209895"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7172472","35.0412656"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7466067","34.98343802"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7085082","34.9193164"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7759705","34.98301083"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8150632","34.98505614"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7863823","34.92746663"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.784839","34.87715803"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7108066","34.99700888"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7748924","35.00352828"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7681765","35.00064517"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7640254","34.82130521"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7686426","34.9420425"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7292408","35.02347328"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7546162","35.03453088"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7548801","35.04257161"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7292187","35.0128104"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8057391","34.91307395"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.784746","34.79984907"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7765338","35.005517"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7386262","35.01369657"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.76376","35.00745292"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7788976","34.99977862"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7464113","35.03172561"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7604798","35.00840006"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7683874","35.00639747"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7854995","35.04392979"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7669932","35.00301163"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7426142","34.88709856"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7706288","35.00673911"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.5815799","35.01661897"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7613019","35.04392418"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7647069","35.01481898"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7318882","34.96894738"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.705182","35.00346386"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.3907494","35.47409971"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1941331","35.53706766"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7578835","34.98766558"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7768727","35.00500593"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6961274","34.98504326"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7812824","34.80245988"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8131855","34.96562787"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7838672","34.72501767"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.4756508","35.05801377"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.738474","34.86754524"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7043704","34.95190442"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7106983","35.00035858"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.2920666","35.32609857"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7726147","35.00620305"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7736147","35.00473651"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7110233","34.99664225"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.2727596","35.5229707"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1737119","35.28454967"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["134.9662656","35.66126704"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7695455","35.00808622"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7785224","35.00929447"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8009302","34.82787996"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7739427","34.99514292"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7523946","34.95035233"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7582158","35.029287"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8077418","34.98690842"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7607683","35.05615338"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0904965","35.59523329"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7633934","35.00848339"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0758025","35.71816531"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7703823","34.98149141"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7729203","35.00400602"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7776254","35.00432266"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7634796","35.0052531"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7756312","35.00367271"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7592798","35.01036656"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1393451","35.29539743"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7638572","35.00711128"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7428042","34.97206672"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7835864","34.87535823"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.394544","35.46672861"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7556301","35.01172197"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0602251","35.6226923"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1140609","35.30983943"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0257154","35.68866218"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1145304","35.30780636"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7608042","34.93255998"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7391378","34.98182975"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7706649","35.00822232"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8029036","34.89024846"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7622741","35.00483646"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6856446","34.89525979"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7751951","35.00291722"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7429209","34.97924388"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7594162","35.00239775"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7726231","35.00576142"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7497619","34.98823211"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1455383","35.45868874"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7677552","34.85552421"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.730269","34.99088171"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7579436","35.01857145"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7713567","35.04124661"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.760161","34.9890655"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7838049","35.02458197"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0801445","35.60945829"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6803834","34.92393467"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["134.9085354","35.64295972"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7563803","35.00343652"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7474251","35.02965082"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.696968","34.93484782"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8095555","34.91902073"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7616909","35.00405874"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8217597","34.97531024"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7447091","35.0059723"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7726534","35.01708542"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7671068","35.01180812"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7752312","35.00410045"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7625826","35.00091178"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.2376552","35.30251506"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8026922","34.93541366"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.764354","34.93862882"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6932447","34.85430129"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7778338","35.00252004"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7123148","34.99824488"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6915684","34.9264569"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1855676","35.6549189"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7654766","35.00527255"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7293538","34.83147913"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7778333","35.02941753"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7932726","34.82800772"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6873328","34.91201653"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7606574","35.04006353"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.570873","35.0249793"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.4015483","35.49461926"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7912321","35.0270513"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7438198","35.03560295"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0999892","35.58363129"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1144388","35.30664261"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8029486","34.73622232"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1845501","35.55752901"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1772338","35.57541864"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7343339","34.90984924"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1772338","35.57541864"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.233386","35.30236229"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.762197","34.9870907"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6856975","35.00318071"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7059209","34.98056584"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6223521","34.99034401"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7550553","35.00654182"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7674875","35.0059975"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.2570009","35.30043481"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7974099","34.7426632"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.709129","35.00009193"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7917537","35.08750286"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1159471","35.30410129"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7164394","35.0013724"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1950741","35.58181266"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7591991","35.01616332"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["134.9154883","35.61695715"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7641684","35.00560307"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.758733","35.0010534"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7517115","34.95254378"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8535054","34.84653408"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7796669","35.00442265"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8173798","34.92817846"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7604355","35.00155893"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1498109","35.29612538"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7246908","34.94821566"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7654987","34.944395"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7674875","35.00488926"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7020321","34.96406447"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7600413","34.99800644"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7022873","34.95220996"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7477698","35.01108027"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7743929","34.98378294"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1253018","35.30369874"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7622434","35.03757493"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7442919","35.06138893"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6771474","35.01630691"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7353157","34.99372039"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7025339","34.92464898"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7782818","34.86342901"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7743425","35.0018201"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6976766","34.95147118"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8130022","34.96997741"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7954566","34.92557263"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0657147","35.61174874"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7042177","34.95306265"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7636797","35.00118399"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7816881","35.06538847"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1949879","35.58305141"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7642738","35.00880281"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.786477","34.94148479"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.74472","34.94861043"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8167074","34.96695833"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.734813","34.97213604"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7057878","34.86973065"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7894995","34.87962168"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.775645","35.00638637"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.760353","34.98153557"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0745796","35.59217005"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7540248","35.0087083"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7553136","35.00781394"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6451085","34.94022382"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7371122","35.03077828"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7741813","35.0040449"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7993123","34.88701543"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7924575","34.97751201"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7578103","35.01808537"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7491838","35.00412529"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7557749","35.00025899"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.4012412","35.45714112"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6793861","35.01617918"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7451197","35.05275933"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7699459","34.99570117"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.770929","34.99910644"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.788035","35.02878161"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7923545","34.88757082"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6932516","34.9321036"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7672986","35.00545587"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7725653","34.98594657"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7550948","34.98946541"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1660621","35.29850607"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7738313","35.00727796"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7331154","35.02379833"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7860219","34.74238252"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.770751","35.00688355"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7382093","35.02975341"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7690486","35.04694875"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7586159","35.01343298"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.74562","34.95046587"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7496788","34.9791273"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6996437","34.98844297"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.3942742","35.47572458"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.765632","35.00874449"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7215223","35.00260009"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0755218","35.61915991"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8042754","34.97143822"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.5743448","35.01188048"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7552526","35.00610575"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7695091","34.89108393"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7423175","35.01423825"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7507865","34.99931458"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7773533","35.001734"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7585189","35.00752789"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6938793","34.92640973"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7500085","35.01076643"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7311739","35.03303625"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7030453","34.94184432"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7191953","34.90440451"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7384204","35.03289477"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7612631","35.00483645"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8320978","34.98637854"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7321046","35.01291876"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7301656","35.0342361"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6179718","34.99438798"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8071283","34.99947634"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7464645","35.00522239"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7607909","35.00627245"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7523286","34.97914399"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7396092","35.02776197"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6700557","35.02253923"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7627512","34.93350156"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7976429","34.97839542"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7675786","34.93787061"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7698444","34.8210942"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7834497","35.04835425"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7792863","35.006878"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6917555","34.98126856"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6983576","34.97617456"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.761514","34.97941078"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8126972","34.74962384"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7473084","35.0527538"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["134.9461546","35.58783273"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1919999","35.5376481"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6910333","34.97463857"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7830796","34.91149587"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.787888","35.01837431"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8148353","34.97292432"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7778084","35.01813257"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.762024","35.03841927"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7798558","35.00175344"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.771104","35.04264644"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7607212","35.01620777"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7194501","35.01935685"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7703845","35.05033449"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7746648","35.04436291"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["134.9229538","35.61611288"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7638017","35.00800565"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7419917","34.89357837"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7672819","34.94630322"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6020171","35.00951408"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.3282446","35.44268014"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.5475952","35.04746381"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7623239","35.01111929"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7044321","35.00345831"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.2298057","35.30311219"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7630373","34.93513193"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6777858","35.02521961"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6231551","35.12219194"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7775898","34.87364453"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7509621","34.97909121"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.742684","35.02345409"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6959499","34.85936821"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7662374","35.01112207"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7851578","35.0465267"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.776906","35.00476707"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.3353077","35.45096523"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7591741","35.03482804"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7742395","34.88707617"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7622407","35.00838062"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7674039","35.0172882"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7805276","35.03286715"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7655625","35.01275249"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.750914","35.00988595"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7694511","35.00952776"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7731342","35.00427544"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7745368","35.00465874"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.903844","34.7944985"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7699733","35.0072724"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7710706","35.03932741"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.3846025","35.46940016"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.3873468","35.47237485"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7803262","34.85428829"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7101178","34.97985755"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7660292","35.00976663"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.806445","34.89126506"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7000206","34.94056112"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7052954","34.95342927"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["134.9672266","35.66573319"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7857602","35.02898988"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7591466","35.00635854"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7980342","34.93299429"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7742785","35.00424211"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6948241","35.01703746"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.768254","35.0075807"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6933967","34.96381731"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.792607","35.02252957"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8149158","34.97305763"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.4265438","35.48097403"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.726879","34.93489208"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.693496","34.92721798"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.3682429","35.47679061"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7675377","34.99790096"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6998036","34.92260469"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6926905","34.92608196"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6934908","34.95134064"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7622518","35.00875281"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8132189","34.96050061"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7711204","35.00818344"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7584218","35.00328933"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8121306","34.88588793"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7066289","34.96540877"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.769551","35.01173035"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.745895","34.88102704"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7273762","34.83425674"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7349792","34.87812189"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7713678","35.00085074"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0002123","35.3206147"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7850079","35.01042217"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7589464","35.01565225"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7605605","35.00158949"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6992683","34.95852053"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1242665","35.53622709"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7686622","35.01306635"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7442648","34.95627644"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.711476","34.99887816"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.027871","35.67502208"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.758733","35.0010534"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.775484","35.00307554"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7803336","34.99521517"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7514558","35.00345036"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7561","34.9965704"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7598996","34.99946743"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7067902","34.87895701"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7699507","34.89177829"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7730158","34.85643805"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7381093","35.03000894"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7637459","35.01711879"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7185005","34.98630427"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7706707","34.99867592"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.868762","34.75252761"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7755257","35.00271169"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6118361","34.99886517"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7775176","34.875286"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7609082","34.98911551"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7457058","35.04515743"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7541135","35.04624896"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7657731","34.93287667"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7393786","35.04116057"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7526438","34.93169882"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7667739","34.99823981"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7670014","35.0073085"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.715659","34.99591454"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7575024","35.00343653"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1896972","35.5445167"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7844016","34.79793533"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7491787","34.96612016"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7690481","35.02185442"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1049221","35.74052239"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7053904","34.99084553"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7253514","34.93140115"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7198225","35.00266119"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7923069","34.89926953"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7021824","34.98007422"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.4026184","35.47100597"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7700537","35.01155259"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7681847","35.00464206"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7826334","34.99538183"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7819279","34.99528739"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7305351","35.02826451"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7310911","34.97684675"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7548801","35.04257161"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1935192","35.53920907"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7315155","35.03386673"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.2520208","35.29956821"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6775809","35.01126871"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6893806","34.97245821"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7708231","35.0127897"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6988799","34.99277039"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7579774","35.00256994"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7733258","35.00485872"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7826496","35.03323102"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.3280304","35.45352047"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7766363","34.89093407"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.2564788","35.29939604"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7387181","34.9998866"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6916239","34.91507746"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.3435901","35.46479956"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7598772","35.00260607"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.575614","35.01858822"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7554116","34.96428444"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7603714","35.00848338"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7643102","35.00151452"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7464449","34.88099093"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6801333","35.01661246"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0853283","35.60259528"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7876577","35.00968893"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7408315","35.01813233"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.775681","35.00966943"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6894436","34.91332757"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7703957","34.99954806"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7629941","34.98901555"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7639026","34.97003131"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7910155","35.03476707"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7711053","34.82228578"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7766833","34.89524189"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7814248","35.01461902"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6989592","34.91767463"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7752668","34.89446973"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1285516","35.29787461"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7337434","35.01131337"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7810196","34.99865651"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7975684","34.73743321"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7913543","34.76268041"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6971511","34.92607928"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6915157","34.93696698"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7323409","34.99743117"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7490955","34.97843846"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7720093","35.00293389"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7613325","35.00580027"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6928682","34.92376275"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7697713","34.96817337"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0381558","35.69319527"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7260792","34.93137337"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7514502","35.00433085"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7493316","34.97871066"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7871596","35.08461148"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1362399","35.28942598"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1177304","35.29929086"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6944664","34.99083723"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7335708","34.91978194"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6963051","34.97866324"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0920383","35.65263507"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7512887","35.04823208"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.746528","35.02250703"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.5724033","35.01301926"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7745118","35.05137606"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7601271","35.0064391"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.5611435","35.00925567"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7588862","34.9877267"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7708203","35.01193867"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0723504","35.62210038"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7699106","34.85284948"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6844582","34.90759464"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.749372","35.05718941"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1151362","35.29774657"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7974983","34.8980281"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.2403939","35.30230675"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0338952","35.68858459"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.5819327","35.01583293"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1458484","35.37222467"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7636685","35.00263942"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.778206","35.00092574"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.5808164","35.00629486"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7804567","34.85693524"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7394203","35.03461128"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7995206","34.88745983"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.3353719","35.43025959"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.4643917","34.78191788"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7995063","34.93344151"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7699568","35.0026589"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7916345","35.06346097"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7696984","35.00641414"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7469556","35.03446147"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7712177","35.00587252"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7461278","35.06110287"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7923861","34.85224965"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7591991","35.01616332"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.3942659","35.47357765"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7777791","34.8613459"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7993944","34.82326931"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7659763","35.01527449"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8183141","34.73060106"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7319549","34.9924427"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.5540223","35.03228971"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.3919188","35.47339428"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.080006","35.59384912"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7764783","35.00506704"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7314127","35.0349805"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7711067","35.03963571"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8203918","34.72665155"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7427841","35.01709078"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1031175","35.30803389"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7829276","35.04521293"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0889816","35.7379139"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7467367","34.75102814"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["134.9026054","35.64429279"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.3287445","35.44284124"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.744148","35.0084221"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7483722","35.04954028"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7457503","35.02519843"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0287236","35.67944938"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0277072","35.67257512"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7487948","35.00856104"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.742278","34.93268721"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7728842","35.00301444"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1462501","35.29300071"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0688225","35.71707638"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7316488","35.03843569"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7162171","35.01433509"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7380183","34.99505643"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7707037","35.01012494"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7667289","35.01701323"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7811557","34.99775937"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.3942742","35.47572458"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7955123","35.02730692"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7834328","34.89328113"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["134.9243483","35.59932835"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7596185","35.05095119"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7600519","35.03804156"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.5054678","35.02257315"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6007674","35.00373682"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7670235","35.01133316"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7441225","35.05680609"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7695732","35.03005075"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6918545","34.92448766"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6991017","35.01436277"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7657959","35.05150663"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7892127","35.02821503"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8168936","34.98526172"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1143721","35.30873402"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7628574","35.00630579"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.718289","34.96174514"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7855381","35.02270163"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.9028134","34.79913691"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7569636","35.00396427"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7612631","35.00483645"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1103253","35.30628425"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.813441","34.97013851"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7529277","35.01072202"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7495307","35.01149137"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7849052","35.00813624"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7831692","35.00898617"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.3227309","35.45093746"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.2679473","35.2955382"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.764162","34.91858661"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7716386","34.82041929"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7298578","34.9700084"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.5069621","35.02570901"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.469475","35.1136814"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.817063","34.98319532"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8168936","34.98526172"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8062316","34.73694175"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7558441","35.00828613"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7919172","34.8308602"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.3278695","35.44420772"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["134.8964963","35.60418817"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7646969","34.96742884"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7407146","35.03496406"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7635829","34.95751045"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7573521","35.03785271"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7810649","34.85743797"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1976969","35.52904642"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8335547","35.11938832"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7798138","35.03241164"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7679847","35.00428097"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6856079","34.92092396"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7796948","34.99577344"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.77567","35.00490594"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7662403","35.00965552"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7240858","35.02013184"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7970398","34.9255699"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7469036","34.9973758"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6917239","34.92339054"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7361518","34.99425369"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7605605","35.00158949"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7273525","34.99745335"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7709344","35.00339495"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7678347","35.003981"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7593547","35.01275248"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7745396","35.00472818"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7797999","35.01774095"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7607437","35.00641966"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7591047","35.03146731"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7576913","35.00325322"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6781863","35.01397668"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7630046","35.00509477"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7807141","34.9960512"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7804975","34.99881483"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7465029","35.05089567"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7609406","35.01725213"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7475673","35.00100608"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.684986","35.01333793"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0888244","35.65576814"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1990348","35.58570117"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7575108","35.00278103"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7831493","34.89751954"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7809141","34.99601509"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1244326","35.29567483"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7590546","35.03006747"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7740606","34.8214109"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7852022","35.03789161"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8170798","34.98965007"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7598794","34.9353402"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1469474","35.67555263"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.759771","34.93255441"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8210802","34.7367699"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7781527","35.02924255"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0529266","35.70081134"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.3937048","35.47641058"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.2379552","35.30205956"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7763283","35.00461986"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7702565","35.01333854"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7935726","34.82905761"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7240634","35.02951979"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7580525","35.00026735"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.19155","35.5364038"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6854699","34.97363587"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7843496","35.04693498"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0866562","35.60370593"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7331436","35.00007262"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7176282","35.00269451"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7720988","34.97167029"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7534945","35.00146443"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1289662","35.539113"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0827436","35.60828994"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7921459","35.03200908"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7303493","35.00755809"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7038264","35.01361286"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7602465","35.00670574"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7534639","35.00400867"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7746118","35.00536979"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8032337","34.91785959"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7644961","35.04402135"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7672622","35.05678383"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.730691","35.00303625"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6975708","34.94185821"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7510799","35.06975471"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7426673","35.02686211"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7658321","35.00569196"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7475808","35.01766304"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.733774","35.00372789"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7019628","35.00364996"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7773123","34.86910896"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.9432953","34.82932303"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7883265","34.91107658"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7365872","35.04992621"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.779361","35.02992859"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7535867","34.98593789"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.3931855","35.46976981"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7912572","35.01904655"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7607931","34.93216836"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["134.9075701","35.60629124"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.3278695","35.4442966"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7119149","34.9955479"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.747556","35.00860269"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8225856","34.73767262"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7722204","35.00194787"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7696846","35.0018673"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6937358","34.9766884"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0248631","35.66785337"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7451651","34.98944863"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7613938","35.00123397"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7282937","35.01901258"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7598688","35.00583915"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.730138","35.01799326"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.742045","35.03246155"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7797889","35.01398573"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6854469","34.94151374"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7666568","35.01147482"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.717278","34.96397552"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8143594","34.83025201"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7805975","34.99819822"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7684379","34.98895732"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.755608","35.00840557"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["134.96691","35.66078656"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0850439","35.65995659"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8337896","35.00002714"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7699037","35.0113165"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7634135","34.95609393"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7658517","35.00178951"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6652268","34.98293757"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7599434","35.0171688"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7579301","35.00602245"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7599434","35.0171688"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0282153","35.68107697"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7706704","35.05295644"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6931155","34.93506163"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1293217","35.53845752"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1142279","35.30119886"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["134.9686626","35.66212532"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6933849","34.92703188"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7943877","35.01193329"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.4936684","35.09877481"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7066289","34.96540877"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7472593","34.98936255"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7707956","35.00027578"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7480062","35.00223098"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0951741","35.52989443"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8329536","35.00426279"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.770862","35.01182757"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7744979","35.00422267"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7931846","34.93224697"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1585991","35.57394626"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7314452","34.83108472"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7712037","35.00845841"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7587437","35.01236084"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7824165","35.00942502"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7557054","35.00391981"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7392759","35.02959234"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7638717","34.98906001"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1451865","35.56166982"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7343353","34.99462864"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7621269","35.00521976"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7833242","34.90072197"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.125097","35.53795193"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7200836","34.99792827"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.116592","35.53517435"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7685871","35.02898144"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1148335","35.29561351"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7716386","34.82041929"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0974129","35.52717254"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7496399","34.98001334"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7725621","35.00245615"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0225549","35.66964479"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0935052","35.50667797"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.2568121","35.2991183"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6927849","34.92787068"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7626936","35.00268941"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7390065","35.03108385"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7468032","35.0111247"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7827667","34.99790103"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7408315","35.01813233"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7361101","34.99465366"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6836085","34.95981213"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.76551","35.00247"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7420812","35.02490117"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.3980351","35.47478312"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7604798","35.00840006"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0531322","35.70016143"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7655708","35.013233"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6935098","34.92410162"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.3293555","35.44419662"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7043975","34.91552781"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7720945","34.92530536"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7732676","34.99883981"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7881691","34.97849781"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7665655","35.04424074"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7318545","35.02308726"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7070786","34.95275432"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7945955","34.92571426"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7916553","34.73013666"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0356283","35.69000113"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7536164","35.01297462"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7666543","35.00486425"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7666543","35.00486425"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7593607","35.00101175"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7630963","35.00518921"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["134.9680849","35.66049495"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.021988","35.68718726"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["134.968157","35.66809958"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6756277","35.02266992"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7758645","35.00458652"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7583246","35.00141171"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7703093","35.00848341"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7644182","35.01108318"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7591047","35.05162333"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6930627","34.93130368"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7699734","34.94823368"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7563336","34.98831829"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7454837","34.94485523"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7268415","34.97796331"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7707318","34.99856482"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7795633","34.90882108"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7671822","34.99842869"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7683208","35.00435597"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7190648","34.90521554"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7592167","34.98754338"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7298328","35.00085309"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7487677","34.97913284"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7451084","34.92773824"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7949873","34.9370605"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7238111","34.99840602"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7379768","34.97882998"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7558858","35.00588355"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.792157","35.0512818"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8052892","34.90277771"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7715512","35.04227426"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7505793","34.84082282"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6894995","35.01476829"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.754097","35.01000542"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.3866225","35.46096531"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8133021","34.9688942"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7571688","35.01343018"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7669571","35.00134233"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1248582","35.53737143"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1270247","35.5378242"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.731516","34.99980597"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1470363","35.56392511"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7422897","35.01389383"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7612714","35.00741403"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7907683","34.76026399"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6894492","34.93107031"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6996047","34.97335258"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.777376","34.87365287"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7123697","35.07505651"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7702539","35.0048115"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7675985","35.00881948"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.3286279","35.44105813"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7673707","35.01024992"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0565142","35.62682516"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6965804","34.86880556"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7682151","35.00784735"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.2566539","35.65891366"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7702343","35.00982496"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6768426","34.96949733"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1640737","35.57232152"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7687428","35.01003327"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7641344","34.93197675"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6781508","34.96509499"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7528335","35.00259211"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.734149","35.0039001"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7417342","35.01606863"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.2523041","35.29993762"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.755347","35.00460031"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.735535","35.00600828"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.3276611","35.45193178"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7640267","35.04398525"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.5822357","35.00584212"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7619013","34.93401538"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.731841","34.99908936"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7141756","35.01054933"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7488645","35.00030892"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0446276","35.68164957"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7777337","35.00456986"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7702428","35.00426432"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7416564","35.01816845"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8162466","34.99019442"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7064152","35.00732738"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7010075","34.99348977"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8084251","34.98856102"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1027375","35.5312914"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1983016","35.57990735"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["134.9705293","35.65134335"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7265939","35.01568509"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6998982","34.93404237"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0662338","35.59908431"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6706206","34.95690955"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7912932","35.02926495"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7556522","35.01722708"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1188777","35.29185025"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7694848","35.04417127"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1126863","35.30108774"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7578575","35.01717989"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.102585","35.51171348"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.393066","35.47291104"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1141586","35.29597456"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7683794","34.99449293"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.784035","34.79617714"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8219041","34.97534357"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7639959","35.01471899"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6830037","34.88228611"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.5524974","35.02874555"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.3953798","35.47131411"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.752144","35.05663946"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.5699259","35.02157126"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8278526","34.71617235"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7474339","35.00381141"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7683478","34.93320722"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.263017","35.30493431"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7422701","35.02524836"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7766672","35.00458375"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7700564","35.01725208"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7408395","35.04901803"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7212175","34.9082598"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7560503","34.98906267"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1389066","35.55653133"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7781946","35.01471899"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7312907","35.02123465"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.2573872","35.65848594"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7463366","35.01086915"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8072722","34.97056615"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0276322","35.67375277"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7456226","34.89302255"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7584365","34.98204105"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7676263","35.05125664"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.761566","35.0024422"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7579384","35.00621132"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7732535","35.0070502"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.3103403","35.44851544"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6904796","34.92739012"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.3279612","35.44492708"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.3278973","35.44508817"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7460021","34.82985154"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8066111","34.97853181"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.3962936","35.47413596"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7866659","35.02056853"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7540369","34.97621374"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.779742","34.99523183"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.76426","35.0052281"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7203499","35.02424525"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7673013","35.00800566"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6923044","34.92666245"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8343407","35.11935499"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7501749","35.02476797"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7594433","34.9354624"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1983849","35.58076282"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7822885","35.03435033"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1462501","35.29300071"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7716053","34.82010821"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7433122","35.0007366"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7595774","34.94767792"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.718314","35.01940127"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.126472","35.52597007"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.9046299","34.79730102"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7713287","35.03551955"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7740223","35.06565509"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7820721","35.00901672"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1905667","35.53828689"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7955472","34.83826501"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7573414","35.00226163"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["134.9756054","35.57836793"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.780697","35.03339765"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7698011","35.00764181"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7819482","34.85457993"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7756391","35.02742051"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7759862","34.8934032"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7428231","35.01033859"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6921517","34.92398493"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7833114","34.8756582"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7611572","35.01859924"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7581829","35.00388095"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7746729","35.00417545"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.74825","35.04984857"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1145949","35.53585759"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.750235","34.83583161"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7702066","35.00908058"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7393488","34.99010129"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["134.8813142","35.5990053"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7694373","35.00567531"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7718335","34.92451933"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7689374","35.00449763"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7061237","34.98336838"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8208894","34.71500007"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7745979","35.0036255"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7588862","34.9877267"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7514558","35.00345036"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7919799","34.73858303"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7490705","34.9824298"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7696036","35.02234881"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7687234","35.00979718"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7548972","35.00099782"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1143922","35.53566039"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.759094","35.00145893"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7697066","35.00849729"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7688679","35.00697242"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["134.9090604","35.64302361"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["134.9096103","35.64316528"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0359727","35.69004836"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0168606","35.69017015"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7491727","35.0025032"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.3261389","35.45507586"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1918305","35.53683986"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0924364","35.48085018"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.4782501","35.10004549"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7580197","34.98567963"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7943602","35.00038686"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7558938","35.02436529"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7741115","35.01907413"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7726154","34.9805999"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7741343","34.95343891"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7777806","35.01974076"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.771087","35.00885838"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7594075","35.0125775"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7593216","35.00561138"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7593382","35.0093472"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7681875","35.00397822"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.769948","35.02442359"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.759238","35.0158439"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7611768","35.01050545"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7322825","35.00336957"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7262415","34.98440445"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7294274","34.98387395"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7191421","34.9845433"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7245694","34.9887263"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7257442","35.00374169"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7297633","35.00141137"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7172034","34.98744861"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7259526","34.9941064"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7241055","34.99580069"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7327077","34.98754034"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6620881","34.97592432"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6633992","34.97627153"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6761538","34.9677114"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7473647","34.99587593"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7561","34.9965704"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7600499","34.98904883"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7617137","34.98746844"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7570947","34.98697674"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7564892","34.98760446"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7599523","35.00051735"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7533615","34.99294011"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7449697","35.04060241"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7630298","34.99992297"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7049349","34.98871238"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6977827","34.97596069"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7020741","34.9899484"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7098428","34.98007975"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7113649","34.97939648"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7390958","35.00384462"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7595381","35.0431854"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7427423","35.0262705"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7427256","35.02904246"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7390175","35.04070506"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7490388","35.02957306"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7485194","35.03275052"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7595769","35.03846651"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7383815","35.04061894"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7278632","35.01875704"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7338013","35.03984115"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7318711","35.0250454"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7410757","35.03405027"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7310517","35.02823397"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7319904","35.03562489"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7313796","35.01837381"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7437226","35.05507017"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7517747","35.05066236"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7499553","35.05684223"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7404007","35.04843476"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7487111","35.04096073"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7449723","35.06548295"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8228543","34.98988633"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8086582","34.9685775"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7746645","35.00685578"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7753478","35.00502538"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.819171","34.9654002"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8125634","34.96146162"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8126996","34.94433262"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.812344","34.96103666"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8099829","34.97833473"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8112523","34.98185926"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8050726","34.96441117"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8271177","34.98539525"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8230904","34.99110564"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.801548","34.9817256"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8040342","34.99526818"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8033978","34.98155347"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8278065","34.98439814"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8112915","34.98974987"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8231957","34.98143177"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7958043","34.97596515"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8177853","34.99089161"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8013595","34.99598183"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7448974","34.93980296"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7739638","34.92141971"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7701836","34.91573136"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7798688","34.91859789"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7481255","34.95128813"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.743389","34.93593941"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7378062","34.92708559"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7398032","34.92801871"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7510749","34.94375007"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7585987","34.92769664"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7524808","34.95116338"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7439113","34.88934273"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7199479","34.90282691"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7203517","34.89031755"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7438886","34.90290797"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.712463","34.90263504"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7318735","34.88299357"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7209562","34.90591277"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7821112","34.95400023"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7715458","34.9569857"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7638191","34.96045457"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7743954","34.954861"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7609021","34.94676414"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7686548","34.9684372"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7663909","34.95754107"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7268414","34.972111"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7283358","34.97598014"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7609223","34.98303546"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7644885","34.98390769"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7307797","34.96022583"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7523286","34.97914399"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7502314","34.9676756"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7576837","34.9693423"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.760128","34.97108107"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7527924","34.96894499"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7464873","34.97546925"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7262331","34.97050279"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7542839","34.98446858"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7389767","34.97882443"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7381599","34.96558662"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7522645","34.9627817"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7459454","34.9597873"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7266079","34.96478379"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7636943","34.9809246"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7354684","34.96362561"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.748412","34.96365093"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7644192","34.97939698"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7915739","35.04532693"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.780697","35.03339765"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7449697","35.04060241"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7668318","35.05417856"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7871021","35.04386593"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.779286","35.03043964"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.77354","35.04436289"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7766032","35.03760822"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7811805","35.04183553"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7754421","35.03458913"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7843464","35.02886209"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7850126","35.07317376"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7852661","35.03763053"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7870293","35.0641803"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7488858","35.06390257"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7780141","35.05185937"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7628676","35.08963301"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7786389","35.01836589"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7813638","35.00948335"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.783347","35.00960556"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7869604","35.01699941"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7774806","35.0256346"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7788471","35.02840099"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7725257","35.01479674"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7878989","35.02879272"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7707428","35.03909411"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7631488","35.05139"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7415064","35.01898504"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7429953","35.01177736"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7329268","35.00819695"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7428646","35.01796293"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7433788","34.99993388"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7199057","35.01119932"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7516961","35.00055865"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7514501","35.00869994"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7462702","35.00382528"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7089427","35.01436001"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7005014","35.02070929"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6972574","35.01409057"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6918374","35.03695723"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6789804","35.02057303"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7099178","35.00001416"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7067485","35.00783011"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.691505","35.01354621"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7020073","35.00326667"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7046957","35.01425446"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6772169","35.01457659"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6811082","35.01763178"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7075919","34.93271203"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7056815","34.95326262"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7330065","34.94371313"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7185992","34.93115396"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.726618","34.93393395"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7187443","34.9548818"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7175224","34.96088132"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6876077","34.91661609"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6870555","34.89581534"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7092359","34.92110788"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6991954","34.92900957"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6861718","34.93747521"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6883859","34.89707082"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.711758","34.92422703"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7082904","34.86322879"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7452351","34.85513536"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7282274","34.86872559"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7086489","34.85616536"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6919003","34.86759985"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6029004","35.01018624"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.5846046","35.01348036"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.5511335","34.9975511"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.5772694","35.01382753"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.5997229","35.00913077"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.499082","35.09264761"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.4814024","35.10297705"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.4185497","35.24854379"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.3690863","35.18156415"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1933805","35.53301811"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7449697","35.04060241"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["134.9710487","35.65069066"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1089086","35.31040594"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0976177","35.32255707"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.118297","35.2985743"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.112367","35.299063"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.0335568","35.3263062"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.2613978","35.29937663"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.3973715","35.47020877"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.3937577","35.46931156"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.3989495","35.46399301"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7449697","35.04060241"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7828884","34.89287561"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7779498","34.89617792"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8008401","34.88248539"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8082586","34.89560074"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7817218","34.89369772"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7812996","34.89414488"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8134385","34.92883947"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8011367","34.93424705"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7483392","34.88079372"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7676289","34.88703999"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7784952","34.87611369"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.762427","34.88121302"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7520718","34.88817048"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7625779","34.86701763"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7802345","34.85364113"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7654361","34.84719723"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7819511","34.85099697"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7280483","34.83287626"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7611424","34.82413548"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7857374","34.81690593"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.777991","34.80507347"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7756133","34.82008605"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7227933","34.83286236"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7551845","34.832793"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7716386","34.82041929"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7863959","34.79937137"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.786121","34.79191367"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8290497","34.71651957"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.807587","34.73633073"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8697869","34.75391914"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.9006859","34.79530114"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.803775","34.79582197"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8327816","34.75049924"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8097666","34.76288901"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8470837","34.84985043"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8603381","34.85143079"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.887894","34.85728892"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7914071","34.76303316"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7487172","35.00228376"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7606253","34.97939131"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6959805","34.87118833"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7908266","35.05029301"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7594443","34.99411786"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6796118","34.96681704"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7241719","35.01963745"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6698349","34.9746662"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.757402","35.01758541"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7397453","35.02972844"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.5475951","35.05085531"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7736944","34.92023372"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8176908","34.98698374"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7317127","35.03074761"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7729842","35.00574754"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7771756","34.99996194"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.4693953","35.10043524"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7317549","34.9983922"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7608527","34.98833501"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7866103","34.89342284"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7042454","34.95165445"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7310352","35.01829881"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7363455","35.04811807"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8043032","34.90470528"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7067787","34.95790664"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7840996","35.04032186"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8004455","34.88985958"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8147353","34.97019408"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8143692","34.75199305"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7938689","34.8690368"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.692711","34.99102332"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7153004","34.9633228"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7813024","34.89396157"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7872327","34.75258419"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.4518","35.2643"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7599468","34.99985073"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7117946","34.94482171"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7508303","34.93855341"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7229099","34.92634925"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7380183","34.99505643"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8130357","34.98660309"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7647207","34.93975651"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7825164","35.01159707"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7618434","35.01115262"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7539535","34.97766359"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6962107","34.99052336"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7065263","34.97334144"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7763313","35.04443792"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7978235","34.97577915"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.748948","34.96065956"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6027588","35.00650325"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7779346","34.86376231"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7488699","35.00405862"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7040961","34.97969647"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7448112","35.06355537"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7513308","35.003867"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7514689","34.9307656"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7485082","34.88793726"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7408034","35.05471184"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7585852","35.02930922"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7617058","34.85333547"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7859243","35.0371056"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7598919","34.97240313"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.462727","34.57578"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7282622","34.93613343"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7515782","34.99865075"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7145589","34.96890012"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.445549","35.5427"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7023653","35.01399615"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7806725","34.88124085"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8094915","34.94914046"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7514498","35.0412579"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7639499","34.8706478"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7138284","35.01352681"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7760387","35.06647445"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7608246","34.99589828"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7781643","34.88361832"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7810616","34.87564153"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7099333","34.93209546"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8120858","34.9437521"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7427006","35.02533725"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8000479","34.92868916"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7116089","35.02871127"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7552248","35.00503361"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7628776","34.96732601"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7320851","34.95970921"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7854043","34.79757983"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6990987","34.95131007"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7955559","34.82226384"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8218941","34.73463127"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7581468","34.9461252"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7416876","34.975072"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8231512","34.97025805"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.284779","35.65164"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.422282","34.593076"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7706013","34.99576229"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8106525","34.95771472"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7685678","35.0097833"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1184082","35.29461096"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.53202","35.173168"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7945778","34.84109804"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.2055909","35.30358975"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7573587","34.98467415"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7738394","35.03044793"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8215893","34.71603331"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8091136","34.97347695"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7489974","34.94548035"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7760643","34.94688119"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1780443","35.29631498"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7635237","35.05405637"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7182644","34.99210377"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6927183","34.9272874"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.2465182","35.30796439"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7321269","35.00707481"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.63853","35.202515"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7085398","35.01958724"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7021756","34.92280195"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8025143","34.90994085"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7586881","35.04247993"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7140596","34.85545992"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8089412","35.06808841"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7415265","34.96957802"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7443197","35.05791153"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7464725","35.02372914"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7371558","34.99573747"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7550643","34.98782109"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7422758","35.01552425"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8096472","34.90826335"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6130221","34.99753199"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.111736","35.31219188"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.678837","34.97010006"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.4017154","35.47681066"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7586098","35.06940748"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.3970912","35.46370966"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7543081","35.01127199"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.791435","35.04154682"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7318689","34.98066867"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6860108","34.94352745"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.5546472","35.03163143"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7163","34.95289588"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7592798","35.01036656"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.3867635","35.47318306"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1502664","35.29641424"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7322298","35.00238354"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.3208477","35.45109854"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.761943","34.93282107"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7428929","34.99653693"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7474317","34.97351111"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7855689","35.04526296"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7189816","34.9073709"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7679126","35.00007578"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8026897","34.98758032"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7706684","34.96945382"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7417892","34.92700783"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7172079","34.94231358"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7214502","34.98111025"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.5879018","35.00414228"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.14574","35.175873"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.755653","34.95261899"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7043876","35.00386938"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7679699","34.91925877"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7373038","35.04316586"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7246166","34.98444611"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7950598","34.89071218"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7164227","35.00888839"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6427","35.174386"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7061738","34.87216637"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.5477227","35.01268856"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7494108","34.93252086"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8538887","34.85081698"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7640286","35.07748159"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7876457","35.07576796"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1169666","35.29747998"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7195701","34.86291219"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8075222","34.9697357"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.4242684","35.16579732"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.44519","35.13548"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7517275","35.05294265"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7986596","34.88655436"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6937579","34.96928349"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7067292","34.98434052"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8074361","34.97189655"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7463258","35.00163657"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7677852","34.95773275"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.700132","34.95534303"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7641127","35.00876948"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7297686","35.01744886"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6953297","35.01386005"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7667181","35.00754181"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7026378","34.97357199"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.5645959","35.0165689"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.43635","34.54433"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7450404","34.86312627"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.718453","34.96797797"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.1118614","35.3027875"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.432211","35.1441"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7258386","35.00656645"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7348157","34.96615595"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8323284","34.98776451"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7825825","34.91385119"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7269465","35.02623963"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7754438","34.82143315"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7012259","34.93456176"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7449697","35.04060241"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7449697","35.04060241"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7517116","34.95463803"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7576858","34.74233196"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7475964","34.83012931"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.232034","35.10393"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.463568","35.2208"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7259221","34.99271486"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7631622","34.93186564"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.473572","34.554489"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.736432","35.01069124"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.445335","34.57337"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6991966","34.98799579"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8082611","34.94388255"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.415885","34.51579"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7373407","34.9779967"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7038434","34.98954565"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7524302","35.02839818"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7875323","34.93367997"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7122232","34.99545625"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7449697","35.04060241"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.49794","34.582155"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7632219","34.95754099"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.461282","35.3503"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7568227","34.96862291"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.492495","34.575639"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7604179","34.98352818"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7725561","35.01849362"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.424876","34.551927"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7710735","35.04199652"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7567213","34.93281543"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["139.8796219","37.6477749"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["139.8796219","37.6477749"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.442642","35.1726"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8115972","34.89836436"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7446834","34.9375143"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7679131","34.96398488"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.451768","35.2112"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7717233","35.00208396"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7489175","34.98963199"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8180242","34.99164431"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.444947","34.531877"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7213807","34.99773106"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7316354","35.00268073"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7653322","35.00403654"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7484255","35.00393641"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7970982","34.93283316"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.461433","35.14103"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.491161","34.59216"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7636414","34.983941"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7454833","34.93345668"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7672237","35.00323106"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.431258","35.2668"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.444064","35.2725"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.582427","35.01671619"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7294579","34.98946516"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7256856","35.01889588"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8130883","34.96213934"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7325771","34.99246214"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6813081","35.01875941"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7201531","34.99217043"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["139.8796219","37.6477749"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7627741","35.00453648"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.414605","34.584674"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.6966123","34.92684308"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.5305629","35.07114779"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7607493","35.00528919"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.415256","34.581125"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7564386","35.00399481"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7628574","35.00630579"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8251847","34.99156674"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7423843","35.00833597"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7581161","35.00891111"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.8069615","34.99282148"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7706843","35.00881116"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7514114","35.0104252"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7514114","35.0104252"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.7674128","35.0100309"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.757714","34.984428"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.757597","34.984428"]}},{"type":"Feature","properties":{},"geometry":{"type":"Point","coordinates":["135.756464","34.984514"]}}]}
#map {
width: 100%;
height: 500px;
}
.info {
padding: 6px 8px;
font: 14px/16px Arial, Helvetica, sans-serif;
background: white;
background: rgba(255,255,255,0.8);
box-shadow: 0 0 15px rgba(0,0,0,0.2);
border-radius: 5px;
}
.info h4 {
margin: 0 0 5px;
color: #777;
}
.legend {
line-height: 18px;
color: #555;
}
.legend i {
width: 18px;
height: 18px;
float: left;
margin-right: 8px;
opacity: 0.7;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment