Skip to content

Instantly share code, notes, and snippets.

@TetsuyaKimotsuki
Last active October 28, 2018 02:42
Show Gist options
  • Save TetsuyaKimotsuki/83fd28ce1e5d29c397031d4ef2d3fdb8 to your computer and use it in GitHub Desktop.
Save TetsuyaKimotsuki/83fd28ce1e5d29c397031d4ef2d3fdb8 to your computer and use it in GitHub Desktop.
JR西日本の駅
license: mit

国土地理院の地図上に国土数値情報の駅情報を加工して、JR西の駅約1300をマッピングしました。 数が多すぎて表示が重い場合の定番対応として、MarkerClusterプラグインを使ってます。

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>JR西日本の駅</title>
<script src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="https://unpkg.com/leaflet@1.1.0/dist/leaflet.js"></script>
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.1.0/dist/leaflet.css" />
<script src="https://leaflet.github.io/Leaflet.markercluster/dist/leaflet.markercluster-src.js"></script>
<link rel="stylesheet" href="https://leaflet.github.io/Leaflet.markercluster/dist/MarkerCluster.css" />
<link rel="stylesheet" href="https://leaflet.github.io/Leaflet.markercluster/dist/MarkerCluster.Default.css" />
<style type="text/css">
#mapid {
height: 500px;
}
</style>
</head>
<body>
<div id="mapid"></div>
<script type="text/javascript">
var mymap = L.map('mapid').setView([34.7024854, 135.4959506], 10);
L.tileLayer(
'http://cyberjapandata.gsi.go.jp/xyz/std/{z}/{x}/{y}.png',
{
attribution: "<a href='http://www.gsi.go.jp/kikakuchousei/kikakuchousei40182.html' target='_blank'>国土地理院</a>"
}
).addTo(mymap);
var stations = new L.markerClusterGroup().addTo(mymap);
$.getJSON("N02-16_Station.geojson", function (data) {
L.geoJson(data, {
onEachFeature: function (feature, layer) {
var out = [];
if (feature.properties) {
for (key in feature.properties) {
if (feature.properties[key]) {
out.push(key + ": " + feature.properties[key]);
}
}
layer.bindPopup(out.join("<br />"));
}
}
}).addTo(stations);
});
</script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
{
"type": "FeatureCollection",
"features": [
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "JR東西線", "運営会社": "西日本旅客鉄道", "駅名": "海老江" }, "geometry": { "type": "Point", "coordinates": [ 135.4724, 34.69613 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "JR東西線", "運営会社": "西日本旅客鉄道", "駅名": "新福島" }, "geometry": { "type": "Point", "coordinates": [ 135.48464, 34.69454 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "JR東西線", "運営会社": "西日本旅客鉄道", "駅名": "北新地" }, "geometry": { "type": "Point", "coordinates": [ 135.49584, 34.69843 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "JR東西線", "運営会社": "西日本旅客鉄道", "駅名": "大阪城北詰" }, "geometry": { "type": "Point", "coordinates": [ 135.52479, 34.69504 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "JR東西線", "運営会社": "西日本旅客鉄道", "駅名": "御幣島" }, "geometry": { "type": "Point", "coordinates": [ 135.4556, 34.7137 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "JR東西線", "運営会社": "西日本旅客鉄道", "駅名": "京橋" }, "geometry": { "type": "Point", "coordinates": [ 135.53334, 34.69581 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "JR東西線", "運営会社": "西日本旅客鉄道", "駅名": "大阪天満宮" }, "geometry": { "type": "Point", "coordinates": [ 135.51232, 34.69749 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "JR東西線", "運営会社": "西日本旅客鉄道", "駅名": "加島" }, "geometry": { "type": "Point", "coordinates": [ 135.45272, 34.72806 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "JR東西線", "運営会社": "西日本旅客鉄道", "駅名": "尼崎" }, "geometry": { "type": "Point", "coordinates": [ 135.43066, 34.73204 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "因美線", "運営会社": "西日本旅客鉄道", "駅名": "東津山" }, "geometry": { "type": "Point", "coordinates": [ 134.03109, 35.05866 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "因美線", "運営会社": "西日本旅客鉄道", "駅名": "郡家" }, "geometry": { "type": "Point", "coordinates": [ 134.25131, 35.41347 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "因美線", "運営会社": "西日本旅客鉄道", "駅名": "鳥取" }, "geometry": { "type": "Point", "coordinates": [ 134.22724, 35.49374 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "因美線", "運営会社": "西日本旅客鉄道", "駅名": "国英" }, "geometry": { "type": "Point", "coordinates": [ 134.21771, 35.37263 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "因美線", "運営会社": "西日本旅客鉄道", "駅名": "用瀬" }, "geometry": { "type": "Point", "coordinates": [ 134.20426, 35.34279 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "因美線", "運営会社": "西日本旅客鉄道", "駅名": "河原" }, "geometry": { "type": "Point", "coordinates": [ 134.22234, 35.39764 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "因美線", "運営会社": "西日本旅客鉄道", "駅名": "高野" }, "geometry": { "type": "Point", "coordinates": [ 134.06646, 35.08081 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "因美線", "運営会社": "西日本旅客鉄道", "駅名": "鷹狩" }, "geometry": { "type": "Point", "coordinates": [ 134.20614, 35.3539 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "因美線", "運営会社": "西日本旅客鉄道", "駅名": "津ノ井" }, "geometry": { "type": "Point", "coordinates": [ 134.24854, 35.46061 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "因美線", "運営会社": "西日本旅客鉄道", "駅名": "因幡社" }, "geometry": { "type": "Point", "coordinates": [ 134.19704, 35.31202 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "因美線", "運営会社": "西日本旅客鉄道", "駅名": "智頭" }, "geometry": { "type": "Point", "coordinates": [ 134.22547, 35.26567 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "因美線", "運営会社": "西日本旅客鉄道", "駅名": "美作河井" }, "geometry": { "type": "Point", "coordinates": [ 134.10768, 35.20547 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "因美線", "運営会社": "西日本旅客鉄道", "駅名": "美作滝尾" }, "geometry": { "type": "Point", "coordinates": [ 134.07138, 35.12397 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "因美線", "運営会社": "西日本旅客鉄道", "駅名": "那岐" }, "geometry": { "type": "Point", "coordinates": [ 134.2107, 35.21376 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "因美線", "運営会社": "西日本旅客鉄道", "駅名": "土師" }, "geometry": { "type": "Point", "coordinates": [ 134.22564, 35.23353 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "因美線", "運営会社": "西日本旅客鉄道", "駅名": "三浦" }, "geometry": { "type": "Point", "coordinates": [ 134.0779, 35.14245 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "因美線", "運営会社": "西日本旅客鉄道", "駅名": "東郡家" }, "geometry": { "type": "Point", "coordinates": [ 134.25998, 35.42882 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "因美線", "運営会社": "西日本旅客鉄道", "駅名": "知和" }, "geometry": { "type": "Point", "coordinates": [ 134.07783, 35.19281 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "因美線", "運営会社": "西日本旅客鉄道", "駅名": "美作加茂" }, "geometry": { "type": "Point", "coordinates": [ 134.06199, 35.16975 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "宇部線", "運営会社": "西日本旅客鉄道", "駅名": "居能" }, "geometry": { "type": "Point", "coordinates": [ 131.22826, 33.96602 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "宇部線", "運営会社": "西日本旅客鉄道", "駅名": "宇部岬" }, "geometry": { "type": "Point", "coordinates": [ 131.26246, 33.93462 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "宇部線", "運営会社": "西日本旅客鉄道", "駅名": "琴芝" }, "geometry": { "type": "Point", "coordinates": [ 131.25284, 33.95236 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "宇部線", "運営会社": "西日本旅客鉄道", "駅名": "深溝" }, "geometry": { "type": "Point", "coordinates": [ 131.37162, 34.04723 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "宇部線", "運営会社": "西日本旅客鉄道", "駅名": "宇部新川" }, "geometry": { "type": "Point", "coordinates": [ 131.24304, 33.95816 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "宇部線", "運営会社": "西日本旅客鉄道", "駅名": "床波" }, "geometry": { "type": "Point", "coordinates": [ 131.30568, 33.9529 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "宇部線", "運営会社": "西日本旅客鉄道", "駅名": "新山口" }, "geometry": { "type": "Point", "coordinates": [ 131.3975, 34.09471 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "宇部線", "運営会社": "西日本旅客鉄道", "駅名": "丸尾" }, "geometry": { "type": "Point", "coordinates": [ 131.33699, 33.97026 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "宇部線", "運営会社": "西日本旅客鉄道", "駅名": "周防佐山" }, "geometry": { "type": "Point", "coordinates": [ 131.3639, 34.03524 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "宇部線", "運営会社": "西日本旅客鉄道", "駅名": "岐波" }, "geometry": { "type": "Point", "coordinates": [ 131.34804, 33.99022 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "宇部線", "運営会社": "西日本旅客鉄道", "駅名": "岩鼻" }, "geometry": { "type": "Point", "coordinates": [ 131.2245, 33.97955 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "宇部線", "運営会社": "西日本旅客鉄道", "駅名": "岩倉" }, "geometry": { "type": "Point", "coordinates": [ 131.3602, 34.02368 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "宇部線", "運営会社": "西日本旅客鉄道", "駅名": "東新川" }, "geometry": { "type": "Point", "coordinates": [ 131.25734, 33.94803 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "宇部線", "運営会社": "西日本旅客鉄道", "駅名": "阿知須" }, "geometry": { "type": "Point", "coordinates": [ 131.35689, 34.01123 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "宇部線", "運営会社": "西日本旅客鉄道", "駅名": "草江" }, "geometry": { "type": "Point", "coordinates": [ 131.27452, 33.93675 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "宇部線", "運営会社": "西日本旅客鉄道", "駅名": "常盤" }, "geometry": { "type": "Point", "coordinates": [ 131.29296, 33.94103 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "宇部線", "運営会社": "西日本旅客鉄道", "駅名": "上嘉川" }, "geometry": { "type": "Point", "coordinates": [ 131.37923, 34.07413 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "宇部線", "運営会社": "西日本旅客鉄道", "駅名": "宇部" }, "geometry": { "type": "Point", "coordinates": [ 131.22325, 34.00296 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "宇野線", "運営会社": "西日本旅客鉄道", "駅名": "岡山" }, "geometry": { "type": "Point", "coordinates": [ 133.91902, 34.66843 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "宇野線", "運営会社": "西日本旅客鉄道", "駅名": "備中箕島" }, "geometry": { "type": "Point", "coordinates": [ 133.85182, 34.6057 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "宇野線", "運営会社": "西日本旅客鉄道", "駅名": "久々原" }, "geometry": { "type": "Point", "coordinates": [ 133.82812, 34.59297 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "宇野線", "運営会社": "西日本旅客鉄道", "駅名": "迫川" }, "geometry": { "type": "Point", "coordinates": [ 133.87782, 34.53708 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "宇野線", "運営会社": "西日本旅客鉄道", "駅名": "大元" }, "geometry": { "type": "Point", "coordinates": [ 133.91082, 34.64683 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "宇野線", "運営会社": "西日本旅客鉄道", "駅名": "早島" }, "geometry": { "type": "Point", "coordinates": [ 133.83445, 34.60281 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "宇野線", "運営会社": "西日本旅客鉄道", "駅名": "備前西市" }, "geometry": { "type": "Point", "coordinates": [ 133.90018, 34.63174 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "宇野線", "運営会社": "西日本旅客鉄道", "駅名": "妹尾" }, "geometry": { "type": "Point", "coordinates": [ 133.87293, 34.60892 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "宇野線", "運営会社": "西日本旅客鉄道", "駅名": "備前田井" }, "geometry": { "type": "Point", "coordinates": [ 133.94256, 34.51661 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "宇野線", "運営会社": "西日本旅客鉄道", "駅名": "備前片岡" }, "geometry": { "type": "Point", "coordinates": [ 133.86063, 34.54463 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "宇野線", "運営会社": "西日本旅客鉄道", "駅名": "宇野" }, "geometry": { "type": "Point", "coordinates": [ 133.953875, 34.49449 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "宇野線", "運営会社": "西日本旅客鉄道", "駅名": "茶屋町" }, "geometry": { "type": "Point", "coordinates": [ 133.82593, 34.57818 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "宇野線", "運営会社": "西日本旅客鉄道", "駅名": "常山" }, "geometry": { "type": "Point", "coordinates": [ 133.89247, 34.53159 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "宇野線", "運営会社": "西日本旅客鉄道", "駅名": "彦崎" }, "geometry": { "type": "Point", "coordinates": [ 133.83377, 34.55246 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "宇野線", "運営会社": "西日本旅客鉄道", "駅名": "八浜" }, "geometry": { "type": "Point", "coordinates": [ 133.91808, 34.53204 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "越美北線", "運営会社": "西日本旅客鉄道", "駅名": "柿ケ島" }, "geometry": { "type": "Point", "coordinates": [ 136.57131, 35.97254 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "越美北線", "運営会社": "西日本旅客鉄道", "駅名": "美山" }, "geometry": { "type": "Point", "coordinates": [ 136.36544, 35.99842 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "越美北線", "運営会社": "西日本旅客鉄道", "駅名": "市波" }, "geometry": { "type": "Point", "coordinates": [ 136.33015, 36.02 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "越美北線", "運営会社": "西日本旅客鉄道", "駅名": "越前大野" }, "geometry": { "type": "Point", "coordinates": [ 136.4972, 35.9829 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "越美北線", "運営会社": "西日本旅客鉄道", "駅名": "越前富田" }, "geometry": { "type": "Point", "coordinates": [ 136.54167, 35.9913 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "越美北線", "運営会社": "西日本旅客鉄道", "駅名": "計石" }, "geometry": { "type": "Point", "coordinates": [ 136.43492, 35.9976 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "越美北線", "運営会社": "西日本旅客鉄道", "駅名": "越前田野" }, "geometry": { "type": "Point", "coordinates": [ 136.52734, 35.98718 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "越美北線", "運営会社": "西日本旅客鉄道", "駅名": "牛ケ原" }, "geometry": { "type": "Point", "coordinates": [ 136.4678, 35.9986 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "越美北線", "運営会社": "西日本旅客鉄道", "駅名": "小和清水" }, "geometry": { "type": "Point", "coordinates": [ 136.35071, 36.01743 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "越美北線", "運営会社": "西日本旅客鉄道", "駅名": "越前薬師" }, "geometry": { "type": "Point", "coordinates": [ 136.38397, 36.00511 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "越美北線", "運営会社": "西日本旅客鉄道", "駅名": "下唯野" }, "geometry": { "type": "Point", "coordinates": [ 136.56045, 35.97401 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "越美北線", "運営会社": "西日本旅客鉄道", "駅名": "北大野" }, "geometry": { "type": "Point", "coordinates": [ 136.48836, 35.9979 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "越美北線", "運営会社": "西日本旅客鉄道", "駅名": "越前高田" }, "geometry": { "type": "Point", "coordinates": [ 136.31834, 36.02495 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "越美北線", "運営会社": "西日本旅客鉄道", "駅名": "越前大宮" }, "geometry": { "type": "Point", "coordinates": [ 136.41018, 35.99993 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "越美北線", "運営会社": "西日本旅客鉄道", "駅名": "勝原" }, "geometry": { "type": "Point", "coordinates": [ 136.5976, 35.96738 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "越美北線", "運営会社": "西日本旅客鉄道", "駅名": "一乗谷" }, "geometry": { "type": "Point", "coordinates": [ 136.29737, 36.014 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "越美北線", "運営会社": "西日本旅客鉄道", "駅名": "九頭竜湖" }, "geometry": { "type": "Point", "coordinates": [ 136.66182, 35.90464 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "越美北線", "運営会社": "西日本旅客鉄道", "駅名": "越前下山" }, "geometry": { "type": "Point", "coordinates": [ 136.63467, 35.92078 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "越美北線", "運営会社": "西日本旅客鉄道", "駅名": "越前東郷" }, "geometry": { "type": "Point", "coordinates": [ 136.27266, 36.01824 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "越美北線", "運営会社": "西日本旅客鉄道", "駅名": "六条" }, "geometry": { "type": "Point", "coordinates": [ 136.23997, 36.02803 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "越美北線", "運営会社": "西日本旅客鉄道", "駅名": "越前花堂" }, "geometry": { "type": "Point", "coordinates": [ 136.21864, 36.03877 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "越美北線", "運営会社": "西日本旅客鉄道", "駅名": "足羽" }, "geometry": { "type": "Point", "coordinates": [ 136.25324, 36.02099 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "加古川線", "運営会社": "西日本旅客鉄道", "駅名": "谷川" }, "geometry": { "type": "Point", "coordinates": [ 135.05072, 35.08235 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "加古川線", "運営会社": "西日本旅客鉄道", "駅名": "比延" }, "geometry": { "type": "Point", "coordinates": [ 134.99582, 34.9891 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "加古川線", "運営会社": "西日本旅客鉄道", "駅名": "黒田庄" }, "geometry": { "type": "Point", "coordinates": [ 134.99257, 35.02308 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "加古川線", "運営会社": "西日本旅客鉄道", "駅名": "久下村" }, "geometry": { "type": "Point", "coordinates": [ 135.03095, 35.07625 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "加古川線", "運営会社": "西日本旅客鉄道", "駅名": "本黒田" }, "geometry": { "type": "Point", "coordinates": [ 134.99604, 35.05327 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "加古川線", "運営会社": "西日本旅客鉄道", "駅名": "新西脇" }, "geometry": { "type": "Point", "coordinates": [ 134.97797, 34.97804 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "加古川線", "運営会社": "西日本旅客鉄道", "駅名": "日本へそ公園" }, "geometry": { "type": "Point", "coordinates": [ 134.9977, 35.00172 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "加古川線", "運営会社": "西日本旅客鉄道", "駅名": "船町口" }, "geometry": { "type": "Point", "coordinates": [ 135.00965, 35.06313 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "加古川線", "運営会社": "西日本旅客鉄道", "駅名": "滝野" }, "geometry": { "type": "Point", "coordinates": [ 134.95527, 34.94124 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "加古川線", "運営会社": "西日本旅客鉄道", "駅名": "青野ヶ原" }, "geometry": { "type": "Point", "coordinates": [ 134.92818, 34.89785 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "加古川線", "運営会社": "西日本旅客鉄道", "駅名": "神野" }, "geometry": { "type": "Point", "coordinates": [ 134.87954, 34.79112 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "加古川線", "運営会社": "西日本旅客鉄道", "駅名": "厄神" }, "geometry": { "type": "Point", "coordinates": [ 134.90726, 34.79476 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "加古川線", "運営会社": "西日本旅客鉄道", "駅名": "市場" }, "geometry": { "type": "Point", "coordinates": [ 134.93263, 34.81969 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "加古川線", "運営会社": "西日本旅客鉄道", "駅名": "西脇市" }, "geometry": { "type": "Point", "coordinates": [ 134.96903, 34.97204 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "加古川線", "運営会社": "西日本旅客鉄道", "駅名": "社町" }, "geometry": { "type": "Point", "coordinates": [ 134.9349, 34.92058 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "加古川線", "運営会社": "西日本旅客鉄道", "駅名": "河合西" }, "geometry": { "type": "Point", "coordinates": [ 134.91953, 34.87929 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "加古川線", "運営会社": "西日本旅客鉄道", "駅名": "滝" }, "geometry": { "type": "Point", "coordinates": [ 134.9626, 34.94911 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "加古川線", "運営会社": "西日本旅客鉄道", "駅名": "小野町" }, "geometry": { "type": "Point", "coordinates": [ 134.91796, 34.8339 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "加古川線", "運営会社": "西日本旅客鉄道", "駅名": "加古川" }, "geometry": { "type": "Point", "coordinates": [ 134.84046, 34.76709 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "加古川線", "運営会社": "西日本旅客鉄道", "駅名": "日岡" }, "geometry": { "type": "Point", "coordinates": [ 134.85747, 34.77896 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "可部線", "運営会社": "西日本旅客鉄道", "駅名": "上八木" }, "geometry": { "type": "Point", "coordinates": [ 132.50647, 34.49015 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "可部線", "運営会社": "西日本旅客鉄道", "駅名": "古市橋" }, "geometry": { "type": "Point", "coordinates": [ 132.46806, 34.45018 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "可部線", "運営会社": "西日本旅客鉄道", "駅名": "梅林" }, "geometry": { "type": "Point", "coordinates": [ 132.49364, 34.48045 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "可部線", "運営会社": "西日本旅客鉄道", "駅名": "大町" }, "geometry": { "type": "Point", "coordinates": [ 132.47049, 34.46093 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "可部線", "運営会社": "西日本旅客鉄道", "駅名": "三滝" }, "geometry": { "type": "Point", "coordinates": [ 132.44704, 34.41696 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "可部線", "運営会社": "西日本旅客鉄道", "駅名": "安芸長束" }, "geometry": { "type": "Point", "coordinates": [ 132.45592, 34.42803 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "可部線", "運営会社": "西日本旅客鉄道", "駅名": "可部" }, "geometry": { "type": "Point", "coordinates": [ 132.51063, 34.51253 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "可部線", "運営会社": "西日本旅客鉄道", "駅名": "下祗園" }, "geometry": { "type": "Point", "coordinates": [ 132.46194, 34.43897 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "可部線", "運営会社": "西日本旅客鉄道", "駅名": "七軒茶屋" }, "geometry": { "type": "Point", "coordinates": [ 132.48088, 34.4724 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "可部線", "運営会社": "西日本旅客鉄道", "駅名": "中島" }, "geometry": { "type": "Point", "coordinates": [ 132.51313, 34.49999 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "可部線", "運営会社": "西日本旅客鉄道", "駅名": "緑井" }, "geometry": { "type": "Point", "coordinates": [ 132.47555, 34.46713 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "可部線", "運営会社": "西日本旅客鉄道", "駅名": "横川" }, "geometry": { "type": "Point", "coordinates": [ 132.44996, 34.4105 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "関西空港線", "運営会社": "西日本旅客鉄道", "駅名": "関西空港" }, "geometry": { "type": "Point", "coordinates": [ 135.24057, 34.43439 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "関西空港線", "運営会社": "西日本旅客鉄道", "駅名": "りんくうタウン" }, "geometry": { "type": "Point", "coordinates": [ 135.29887, 34.41143 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "関西空港線", "運営会社": "西日本旅客鉄道", "駅名": "日根野" }, "geometry": { "type": "Point", "coordinates": [ 135.33087, 34.38997 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "関西線", "運営会社": "西日本旅客鉄道", "駅名": "新堂" }, "geometry": { "type": "Point", "coordinates": [ 136.20743, 34.82154 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "関西線", "運営会社": "西日本旅客鉄道", "駅名": "島ヶ原" }, "geometry": { "type": "Point", "coordinates": [ 136.05358, 34.76692 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "関西線", "運営会社": "西日本旅客鉄道", "駅名": "伊賀上野" }, "geometry": { "type": "Point", "coordinates": [ 136.12188, 34.78906 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "関西線", "運営会社": "西日本旅客鉄道", "駅名": "佐那具" }, "geometry": { "type": "Point", "coordinates": [ 136.16219, 34.80374 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "関西線", "運営会社": "西日本旅客鉄道", "駅名": "柘植" }, "geometry": { "type": "Point", "coordinates": [ 136.25659, 34.84601 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "関西線", "運営会社": "西日本旅客鉄道", "駅名": "関" }, "geometry": { "type": "Point", "coordinates": [ 136.39342, 34.84908 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "関西線", "運営会社": "西日本旅客鉄道", "駅名": "加太" }, "geometry": { "type": "Point", "coordinates": [ 136.33976, 34.84188 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "関西線", "運営会社": "西日本旅客鉄道", "駅名": "亀山" }, "geometry": { "type": "Point", "coordinates": [ 136.45237, 34.84985 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "関西線", "運営会社": "西日本旅客鉄道", "駅名": "奈良" }, "geometry": { "type": "Point", "coordinates": [ 135.81829, 34.67937 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "関西線", "運営会社": "西日本旅客鉄道", "駅名": "笠置" }, "geometry": { "type": "Point", "coordinates": [ 135.93487, 34.75897 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "関西線", "運営会社": "西日本旅客鉄道", "駅名": "平城山" }, "geometry": { "type": "Point", "coordinates": [ 135.80981, 34.71002 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "関西線", "運営会社": "西日本旅客鉄道", "駅名": "加茂" }, "geometry": { "type": "Point", "coordinates": [ 135.86911, 34.75203 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "関西線", "運営会社": "西日本旅客鉄道", "駅名": "月ヶ瀬口" }, "geometry": { "type": "Point", "coordinates": [ 136.0237, 34.76285 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "関西線", "運営会社": "西日本旅客鉄道", "駅名": "大河原" }, "geometry": { "type": "Point", "coordinates": [ 135.9886, 34.77207 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "関西線", "運営会社": "西日本旅客鉄道", "駅名": "木津" }, "geometry": { "type": "Point", "coordinates": [ 135.82465, 34.73433 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "関西線", "運営会社": "西日本旅客鉄道", "駅名": "JR難波" }, "geometry": { "type": "Point", "coordinates": [ 135.49552, 34.66715 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "関西線", "運営会社": "西日本旅客鉄道", "駅名": "今宮" }, "geometry": { "type": "Point", "coordinates": [ 135.49235, 34.65467 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "関西線", "運営会社": "西日本旅客鉄道", "駅名": "新今宮" }, "geometry": { "type": "Point", "coordinates": [ 135.50292, 34.64962 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "関西線", "運営会社": "西日本旅客鉄道", "駅名": "天王寺" }, "geometry": { "type": "Point", "coordinates": [ 135.51602, 34.64665 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "関西線", "運営会社": "西日本旅客鉄道", "駅名": "王寺" }, "geometry": { "type": "Point", "coordinates": [ 135.7031, 34.59749 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "関西線", "運営会社": "西日本旅客鉄道", "駅名": "三郷" }, "geometry": { "type": "Point", "coordinates": [ 135.68785, 34.58905 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "関西線", "運営会社": "西日本旅客鉄道", "駅名": "久宝寺" }, "geometry": { "type": "Point", "coordinates": [ 135.58523, 34.62208 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "関西線", "運営会社": "西日本旅客鉄道", "駅名": "柏原" }, "geometry": { "type": "Point", "coordinates": [ 135.62331, 34.58684 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "関西線", "運営会社": "西日本旅客鉄道", "駅名": "東部市場前" }, "geometry": { "type": "Point", "coordinates": [ 135.53834, 34.63767 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "関西線", "運営会社": "西日本旅客鉄道", "駅名": "八尾" }, "geometry": { "type": "Point", "coordinates": [ 135.59777, 34.61692 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "関西線", "運営会社": "西日本旅客鉄道", "駅名": "郡山" }, "geometry": { "type": "Point", "coordinates": [ 135.79068, 34.64888 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "関西線", "運営会社": "西日本旅客鉄道", "駅名": "河内堅上" }, "geometry": { "type": "Point", "coordinates": [ 135.66362, 34.57498 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "関西線", "運営会社": "西日本旅客鉄道", "駅名": "法隆寺" }, "geometry": { "type": "Point", "coordinates": [ 135.73979, 34.60206 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "関西線", "運営会社": "西日本旅客鉄道", "駅名": "加美" }, "geometry": { "type": "Point", "coordinates": [ 135.56728, 34.62674 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "関西線", "運営会社": "西日本旅客鉄道", "駅名": "天王寺" }, "geometry": { "type": "Point", "coordinates": [ 135.51599, 34.64646 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "関西線", "運営会社": "西日本旅客鉄道", "駅名": "大和小泉" }, "geometry": { "type": "Point", "coordinates": [ 135.76401, 34.62282 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "関西線", "運営会社": "西日本旅客鉄道", "駅名": "志紀" }, "geometry": { "type": "Point", "coordinates": [ 135.61621, 34.59991 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "関西線", "運営会社": "西日本旅客鉄道", "駅名": "高井田" }, "geometry": { "type": "Point", "coordinates": [ 135.6397, 34.57137 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "関西線", "運営会社": "西日本旅客鉄道", "駅名": "平野" }, "geometry": { "type": "Point", "coordinates": [ 135.55231, 34.63059 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "岩徳線", "運営会社": "西日本旅客鉄道", "駅名": "岩国" }, "geometry": { "type": "Point", "coordinates": [ 132.22632, 34.17345 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "岩徳線", "運営会社": "西日本旅客鉄道", "駅名": "欽明路" }, "geometry": { "type": "Point", "coordinates": [ 132.10219, 34.10453 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "岩徳線", "運営会社": "西日本旅客鉄道", "駅名": "西岩国" }, "geometry": { "type": "Point", "coordinates": [ 132.19427, 34.16213 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "岩徳線", "運営会社": "西日本旅客鉄道", "駅名": "周防高森" }, "geometry": { "type": "Point", "coordinates": [ 132.04656, 34.09086 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "岩徳線", "運営会社": "西日本旅客鉄道", "駅名": "高水" }, "geometry": { "type": "Point", "coordinates": [ 131.97444, 34.05614 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "岩徳線", "運営会社": "西日本旅客鉄道", "駅名": "櫛ヶ浜" }, "geometry": { "type": "Point", "coordinates": [ 131.82985, 34.03014 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "岩徳線", "運営会社": "西日本旅客鉄道", "駅名": "柱野" }, "geometry": { "type": "Point", "coordinates": [ 132.15419, 34.14269 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "岩徳線", "運営会社": "西日本旅客鉄道", "駅名": "周防久保" }, "geometry": { "type": "Point", "coordinates": [ 131.92038, 34.02947 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "岩徳線", "運営会社": "西日本旅客鉄道", "駅名": "勝間" }, "geometry": { "type": "Point", "coordinates": [ 131.95516, 34.0425 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "岩徳線", "運営会社": "西日本旅客鉄道", "駅名": "米川" }, "geometry": { "type": "Point", "coordinates": [ 132.01387, 34.07409 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "岩徳線", "運営会社": "西日本旅客鉄道", "駅名": "周防花岡" }, "geometry": { "type": "Point", "coordinates": [ 131.86873, 34.03578 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "岩徳線", "運営会社": "西日本旅客鉄道", "駅名": "川西" }, "geometry": { "type": "Point", "coordinates": [ 132.17702, 34.15615 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "岩徳線", "運営会社": "西日本旅客鉄道", "駅名": "生野屋" }, "geometry": { "type": "Point", "coordinates": [ 131.8878, 34.03555 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "岩徳線", "運営会社": "西日本旅客鉄道", "駅名": "大河内" }, "geometry": { "type": "Point", "coordinates": [ 131.93468, 34.03122 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "岩徳線", "運営会社": "西日本旅客鉄道", "駅名": "玖珂" }, "geometry": { "type": "Point", "coordinates": [ 132.08282, 34.09738 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "紀勢線", "運営会社": "西日本旅客鉄道", "駅名": "新宮" }, "geometry": { "type": "Point", "coordinates": [ 135.99505, 33.72356 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "紀勢線", "運営会社": "西日本旅客鉄道", "駅名": "江住" }, "geometry": { "type": "Point", "coordinates": [ 135.60347, 33.50977 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "紀勢線", "運営会社": "西日本旅客鉄道", "駅名": "那智" }, "geometry": { "type": "Point", "coordinates": [ 135.9362, 33.64328 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "紀勢線", "運営会社": "西日本旅客鉄道", "駅名": "紀伊佐野" }, "geometry": { "type": "Point", "coordinates": [ 135.97073, 33.68011 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "紀勢線", "運営会社": "西日本旅客鉄道", "駅名": "紀伊天満" }, "geometry": { "type": "Point", "coordinates": [ 135.93461, 33.63677 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "紀勢線", "運営会社": "西日本旅客鉄道", "駅名": "太地" }, "geometry": { "type": "Point", "coordinates": [ 135.92724, 33.5909 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "紀勢線", "運営会社": "西日本旅客鉄道", "駅名": "紀伊有田" }, "geometry": { "type": "Point", "coordinates": [ 135.73667, 33.491 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "紀勢線", "運営会社": "西日本旅客鉄道", "駅名": "和深" }, "geometry": { "type": "Point", "coordinates": [ 135.65525, 33.5012 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "紀勢線", "運営会社": "西日本旅客鉄道", "駅名": "下里" }, "geometry": { "type": "Point", "coordinates": [ 135.92234, 33.5825 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "紀勢線", "運営会社": "西日本旅客鉄道", "駅名": "紀伊田原" }, "geometry": { "type": "Point", "coordinates": [ 135.86832, 33.53696 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "紀勢線", "運営会社": "西日本旅客鉄道", "駅名": "宇久井" }, "geometry": { "type": "Point", "coordinates": [ 135.97199, 33.66239 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "紀勢線", "運営会社": "西日本旅客鉄道", "駅名": "紀伊姫" }, "geometry": { "type": "Point", "coordinates": [ 135.79636, 33.49756 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "紀勢線", "運営会社": "西日本旅客鉄道", "駅名": "紀伊浦神" }, "geometry": { "type": "Point", "coordinates": [ 135.89438, 33.56076 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "紀勢線", "運営会社": "西日本旅客鉄道", "駅名": "周参見" }, "geometry": { "type": "Point", "coordinates": [ 135.49579, 33.54644 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "紀勢線", "運営会社": "西日本旅客鉄道", "駅名": "串本" }, "geometry": { "type": "Point", "coordinates": [ 135.78186, 33.47577 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "紀勢線", "運営会社": "西日本旅客鉄道", "駅名": "古座" }, "geometry": { "type": "Point", "coordinates": [ 135.8208, 33.51889 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "紀勢線", "運営会社": "西日本旅客鉄道", "駅名": "紀伊勝浦" }, "geometry": { "type": "Point", "coordinates": [ 135.94127, 33.62739 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "紀勢線", "運営会社": "西日本旅客鉄道", "駅名": "三輪崎" }, "geometry": { "type": "Point", "coordinates": [ 135.98535, 33.68988 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "紀勢線", "運営会社": "西日本旅客鉄道", "駅名": "田子" }, "geometry": { "type": "Point", "coordinates": [ 135.67794, 33.4903 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "紀勢線", "運営会社": "西日本旅客鉄道", "駅名": "田並" }, "geometry": { "type": "Point", "coordinates": [ 135.71967, 33.48819 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "紀勢線", "運営会社": "西日本旅客鉄道", "駅名": "湯川" }, "geometry": { "type": "Point", "coordinates": [ 135.92492, 33.60911 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "紀勢線", "運営会社": "西日本旅客鉄道", "駅名": "見老津" }, "geometry": { "type": "Point", "coordinates": [ 135.57571, 33.51528 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "紀勢線", "運営会社": "西日本旅客鉄道", "駅名": "和歌山" }, "geometry": { "type": "Point", "coordinates": [ 135.19156, 34.23162 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "紀勢線", "運営会社": "西日本旅客鉄道", "駅名": "和佐" }, "geometry": { "type": "Point", "coordinates": [ 135.20639, 33.89662 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "紀勢線", "運営会社": "西日本旅客鉄道", "駅名": "紀伊新庄" }, "geometry": { "type": "Point", "coordinates": [ 135.40278, 33.72048 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "紀勢線", "運営会社": "西日本旅客鉄道", "駅名": "湯浅" }, "geometry": { "type": "Point", "coordinates": [ 135.17968, 34.03165 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "紀勢線", "運営会社": "西日本旅客鉄道", "駅名": "紀和" }, "geometry": { "type": "Point", "coordinates": [ 135.18047, 34.24191 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "紀勢線", "運営会社": "西日本旅客鉄道", "駅名": "紀伊内原" }, "geometry": { "type": "Point", "coordinates": [ 135.14507, 33.9264 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "紀勢線", "運営会社": "西日本旅客鉄道", "駅名": "藤並" }, "geometry": { "type": "Point", "coordinates": [ 135.19676, 34.05705 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "紀勢線", "運営会社": "西日本旅客鉄道", "駅名": "芳養" }, "geometry": { "type": "Point", "coordinates": [ 135.35555, 33.74694 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "紀勢線", "運営会社": "西日本旅客鉄道", "駅名": "南部" }, "geometry": { "type": "Point", "coordinates": [ 135.32395, 33.76794 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "紀勢線", "運営会社": "西日本旅客鉄道", "駅名": "初島" }, "geometry": { "type": "Point", "coordinates": [ 135.11525, 34.09931 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "紀勢線", "運営会社": "西日本旅客鉄道", "駅名": "椿" }, "geometry": { "type": "Point", "coordinates": [ 135.40461, 33.6095 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "紀勢線", "運営会社": "西日本旅客鉄道", "駅名": "白浜" }, "geometry": { "type": "Point", "coordinates": [ 135.38724, 33.67515 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "紀勢線", "運営会社": "西日本旅客鉄道", "駅名": "宮前" }, "geometry": { "type": "Point", "coordinates": [ 135.18878, 34.21303 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "紀勢線", "運営会社": "西日本旅客鉄道", "駅名": "紀三井寺" }, "geometry": { "type": "Point", "coordinates": [ 135.18755, 34.18704 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "紀勢線", "運営会社": "西日本旅客鉄道", "駅名": "切目" }, "geometry": { "type": "Point", "coordinates": [ 135.24093, 33.7959 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "紀勢線", "運営会社": "西日本旅客鉄道", "駅名": "海南" }, "geometry": { "type": "Point", "coordinates": [ 135.21452, 34.15375 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "紀勢線", "運営会社": "西日本旅客鉄道", "駅名": "稲原" }, "geometry": { "type": "Point", "coordinates": [ 135.22907, 33.85232 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "紀勢線", "運営会社": "西日本旅客鉄道", "駅名": "紀伊富田" }, "geometry": { "type": "Point", "coordinates": [ 135.39395, 33.65194 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "紀勢線", "運営会社": "西日本旅客鉄道", "駅名": "朝来" }, "geometry": { "type": "Point", "coordinates": [ 135.41751, 33.69624 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "紀勢線", "運営会社": "西日本旅客鉄道", "駅名": "広川ビーチ" }, "geometry": { "type": "Point", "coordinates": [ 135.1641, 34.01285 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "紀勢線", "運営会社": "西日本旅客鉄道", "駅名": "道成寺" }, "geometry": { "type": "Point", "coordinates": [ 135.17667, 33.91111 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "紀勢線", "運営会社": "西日本旅客鉄道", "駅名": "岩代" }, "geometry": { "type": "Point", "coordinates": [ 135.27903, 33.78065 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "紀勢線", "運営会社": "西日本旅客鉄道", "駅名": "冷水浦" }, "geometry": { "type": "Point", "coordinates": [ 135.19304, 34.14201 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "紀勢線", "運営会社": "西日本旅客鉄道", "駅名": "紀伊田辺" }, "geometry": { "type": "Point", "coordinates": [ 135.38452, 33.73295 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "紀勢線", "運営会社": "西日本旅客鉄道", "駅名": "和歌山市" }, "geometry": { "type": "Point", "coordinates": [ 135.16638, 34.23622 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "紀勢線", "運営会社": "西日本旅客鉄道", "駅名": "印南" }, "geometry": { "type": "Point", "coordinates": [ 135.22003, 33.8179 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "紀勢線", "運営会社": "西日本旅客鉄道", "駅名": "御坊" }, "geometry": { "type": "Point", "coordinates": [ 135.1597, 33.90802 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "紀勢線", "運営会社": "西日本旅客鉄道", "駅名": "紀伊宮原" }, "geometry": { "type": "Point", "coordinates": [ 135.16916, 34.07808 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "紀勢線", "運営会社": "西日本旅客鉄道", "駅名": "黒江" }, "geometry": { "type": "Point", "coordinates": [ 135.21039, 34.1703 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "紀勢線", "運営会社": "西日本旅客鉄道", "駅名": "紀伊由良" }, "geometry": { "type": "Point", "coordinates": [ 135.12889, 33.96943 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "紀勢線", "運営会社": "西日本旅客鉄道", "駅名": "加茂郷" }, "geometry": { "type": "Point", "coordinates": [ 135.15961, 34.12565 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "紀勢線", "運営会社": "西日本旅客鉄道", "駅名": "箕島" }, "geometry": { "type": "Point", "coordinates": [ 135.12482, 34.08597 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "紀勢線", "運営会社": "西日本旅客鉄道", "駅名": "紀伊日置" }, "geometry": { "type": "Point", "coordinates": [ 135.45822, 33.58462 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "紀勢線", "運営会社": "西日本旅客鉄道", "駅名": "下津" }, "geometry": { "type": "Point", "coordinates": [ 135.14492, 34.10869 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "吉備線", "運営会社": "西日本旅客鉄道", "駅名": "大安寺" }, "geometry": { "type": "Point", "coordinates": [ 133.88871, 34.66294 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "吉備線", "運営会社": "西日本旅客鉄道", "駅名": "備前一宮" }, "geometry": { "type": "Point", "coordinates": [ 133.86365, 34.67915 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "吉備線", "運営会社": "西日本旅客鉄道", "駅名": "吉備津" }, "geometry": { "type": "Point", "coordinates": [ 133.84557, 34.67434 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "吉備線", "運営会社": "西日本旅客鉄道", "駅名": "備中高松" }, "geometry": { "type": "Point", "coordinates": [ 133.82205, 34.68666 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "吉備線", "運営会社": "西日本旅客鉄道", "駅名": "足守" }, "geometry": { "type": "Point", "coordinates": [ 133.8032, 34.69819 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "吉備線", "運営会社": "西日本旅客鉄道", "駅名": "岡山" }, "geometry": { "type": "Point", "coordinates": [ 133.91788, 34.66735 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "吉備線", "運営会社": "西日本旅客鉄道", "駅名": "備前三門" }, "geometry": { "type": "Point", "coordinates": [ 133.90088, 34.66776 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "吉備線", "運営会社": "西日本旅客鉄道", "駅名": "服部" }, "geometry": { "type": "Point", "coordinates": [ 133.77492, 34.69084 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "吉備線", "運営会社": "西日本旅客鉄道", "駅名": "東総社" }, "geometry": { "type": "Point", "coordinates": [ 133.75091, 34.67762 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "吉備線", "運営会社": "西日本旅客鉄道", "駅名": "総社" }, "geometry": { "type": "Point", "coordinates": [ 133.73798, 34.67296 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "境線", "運営会社": "西日本旅客鉄道", "駅名": "米子" }, "geometry": { "type": "Point", "coordinates": [ 133.33743, 35.42427 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "境線", "運営会社": "西日本旅客鉄道", "駅名": "後藤" }, "geometry": { "type": "Point", "coordinates": [ 133.3308, 35.44054 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "境線", "運営会社": "西日本旅客鉄道", "駅名": "富士見町" }, "geometry": { "type": "Point", "coordinates": [ 133.33643, 35.43487 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "境線", "運営会社": "西日本旅客鉄道", "駅名": "馬場崎町" }, "geometry": { "type": "Point", "coordinates": [ 133.22636, 35.53881 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "境線", "運営会社": "西日本旅客鉄道", "駅名": "大篠津町" }, "geometry": { "type": "Point", "coordinates": [ 133.25567, 35.48918 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "境線", "運営会社": "西日本旅客鉄道", "駅名": "弓ヶ浜" }, "geometry": { "type": "Point", "coordinates": [ 133.28785, 35.46719 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "境線", "運営会社": "西日本旅客鉄道", "駅名": "中浜" }, "geometry": { "type": "Point", "coordinates": [ 133.24503, 35.50664 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "境線", "運営会社": "西日本旅客鉄道", "駅名": "河崎口" }, "geometry": { "type": "Point", "coordinates": [ 133.30505, 35.45693 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "境線", "運営会社": "西日本旅客鉄道", "駅名": "境港" }, "geometry": { "type": "Point", "coordinates": [ 133.22276, 35.54513 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "境線", "運営会社": "西日本旅客鉄道", "駅名": "上道" }, "geometry": { "type": "Point", "coordinates": [ 133.23064, 35.53151 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "境線", "運営会社": "西日本旅客鉄道", "駅名": "高松町" }, "geometry": { "type": "Point", "coordinates": [ 133.23977, 35.51574 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "境線", "運営会社": "西日本旅客鉄道", "駅名": "博労町" }, "geometry": { "type": "Point", "coordinates": [ 133.33949, 35.43188 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "境線", "運営会社": "西日本旅客鉄道", "駅名": "和田浜" }, "geometry": { "type": "Point", "coordinates": [ 133.26503, 35.48091 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "境線", "運営会社": "西日本旅客鉄道", "駅名": "余子" }, "geometry": { "type": "Point", "coordinates": [ 133.23637, 35.52161 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "境線", "運営会社": "西日本旅客鉄道", "駅名": "三本松口" }, "geometry": { "type": "Point", "coordinates": [ 133.32282, 35.44633 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "芸備線", "運営会社": "西日本旅客鉄道", "駅名": "備中神代" }, "geometry": { "type": "Point", "coordinates": [ 133.4009, 34.9944 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "芸備線", "運営会社": "西日本旅客鉄道", "駅名": "塩町" }, "geometry": { "type": "Point", "coordinates": [ 132.913, 34.7742 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "芸備線", "運営会社": "西日本旅客鉄道", "駅名": "三次" }, "geometry": { "type": "Point", "coordinates": [ 132.85563, 34.80266 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "芸備線", "運営会社": "西日本旅客鉄道", "駅名": "矢神" }, "geometry": { "type": "Point", "coordinates": [ 133.33263, 34.94319 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "芸備線", "運営会社": "西日本旅客鉄道", "駅名": "吉田口" }, "geometry": { "type": "Point", "coordinates": [ 132.7459, 34.66442 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "芸備線", "運営会社": "西日本旅客鉄道", "駅名": "備後八幡" }, "geometry": { "type": "Point", "coordinates": [ 133.23237, 34.93844 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "芸備線", "運営会社": "西日本旅客鉄道", "駅名": "備後落合" }, "geometry": { "type": "Point", "coordinates": [ 133.14792, 35.00099 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "芸備線", "運営会社": "西日本旅客鉄道", "駅名": "神杉" }, "geometry": { "type": "Point", "coordinates": [ 132.90258, 34.78107 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "芸備線", "運営会社": "西日本旅客鉄道", "駅名": "上川立" }, "geometry": { "type": "Point", "coordinates": [ 132.78469, 34.72504 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "芸備線", "運営会社": "西日本旅客鉄道", "駅名": "東城" }, "geometry": { "type": "Point", "coordinates": [ 133.27385, 34.90158 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "芸備線", "運営会社": "西日本旅客鉄道", "駅名": "高" }, "geometry": { "type": "Point", "coordinates": [ 133.07045, 34.87759 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "芸備線", "運営会社": "西日本旅客鉄道", "駅名": "備後西城" }, "geometry": { "type": "Point", "coordinates": [ 133.1195, 34.94011 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "芸備線", "運営会社": "西日本旅客鉄道", "駅名": "平子" }, "geometry": { "type": "Point", "coordinates": [ 133.09994, 34.91267 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "芸備線", "運営会社": "西日本旅客鉄道", "駅名": "山ノ内" }, "geometry": { "type": "Point", "coordinates": [ 132.95745, 34.82945 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "芸備線", "運営会社": "西日本旅客鉄道", "駅名": "道後山" }, "geometry": { "type": "Point", "coordinates": [ 133.17806, 35.01119 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "芸備線", "運営会社": "西日本旅客鉄道", "駅名": "備後庄原" }, "geometry": { "type": "Point", "coordinates": [ 133.01581, 34.86231 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "芸備線", "運営会社": "西日本旅客鉄道", "駅名": "志和地" }, "geometry": { "type": "Point", "coordinates": [ 132.80359, 34.74031 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "芸備線", "運営会社": "西日本旅客鉄道", "駅名": "市岡" }, "geometry": { "type": "Point", "coordinates": [ 133.3462, 34.96615 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "芸備線", "運営会社": "西日本旅客鉄道", "駅名": "小奴可" }, "geometry": { "type": "Point", "coordinates": [ 133.21123, 34.99491 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "芸備線", "運営会社": "西日本旅客鉄道", "駅名": "向原" }, "geometry": { "type": "Point", "coordinates": [ 132.72023, 34.61542 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "芸備線", "運営会社": "西日本旅客鉄道", "駅名": "比婆山" }, "geometry": { "type": "Point", "coordinates": [ 133.12326, 34.96661 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "芸備線", "運営会社": "西日本旅客鉄道", "駅名": "野馳" }, "geometry": { "type": "Point", "coordinates": [ 133.31736, 34.91532 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "芸備線", "運営会社": "西日本旅客鉄道", "駅名": "七塚" }, "geometry": { "type": "Point", "coordinates": [ 132.98617, 34.8446 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "芸備線", "運営会社": "西日本旅客鉄道", "駅名": "備後三日市" }, "geometry": { "type": "Point", "coordinates": [ 132.99838, 34.85545 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "芸備線", "運営会社": "西日本旅客鉄道", "駅名": "内名" }, "geometry": { "type": "Point", "coordinates": [ 133.2317, 34.96523 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "芸備線", "運営会社": "西日本旅客鉄道", "駅名": "坂根" }, "geometry": { "type": "Point", "coordinates": [ 133.37058, 34.97269 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "芸備線", "運営会社": "西日本旅客鉄道", "駅名": "西三次" }, "geometry": { "type": "Point", "coordinates": [ 132.84046, 34.7981 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "芸備線", "運営会社": "西日本旅客鉄道", "駅名": "八次" }, "geometry": { "type": "Point", "coordinates": [ 132.87846, 34.80241 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "芸備線", "運営会社": "西日本旅客鉄道", "駅名": "甲立" }, "geometry": { "type": "Point", "coordinates": [ 132.75976, 34.69223 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "芸備線", "運営会社": "西日本旅客鉄道", "駅名": "下和知" }, "geometry": { "type": "Point", "coordinates": [ 132.9255, 34.79805 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "芸備線", "運営会社": "西日本旅客鉄道", "駅名": "白木山" }, "geometry": { "type": "Point", "coordinates": [ 132.58792, 34.50092 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "芸備線", "運営会社": "西日本旅客鉄道", "駅名": "中三田" }, "geometry": { "type": "Point", "coordinates": [ 132.60869, 34.51313 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "芸備線", "運営会社": "西日本旅客鉄道", "駅名": "中深川" }, "geometry": { "type": "Point", "coordinates": [ 132.53276, 34.48116 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "芸備線", "運営会社": "西日本旅客鉄道", "駅名": "広島" }, "geometry": { "type": "Point", "coordinates": [ 132.47397, 34.39816 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "芸備線", "運営会社": "西日本旅客鉄道", "駅名": "上三田" }, "geometry": { "type": "Point", "coordinates": [ 132.64347, 34.53871 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "芸備線", "運営会社": "西日本旅客鉄道", "駅名": "矢賀" }, "geometry": { "type": "Point", "coordinates": [ 132.49736, 34.39864 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "芸備線", "運営会社": "西日本旅客鉄道", "駅名": "戸坂" }, "geometry": { "type": "Point", "coordinates": [ 132.49133, 34.43781 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "芸備線", "運営会社": "西日本旅客鉄道", "駅名": "上深川" }, "geometry": { "type": "Point", "coordinates": [ 132.56302, 34.47601 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "芸備線", "運営会社": "西日本旅客鉄道", "駅名": "井原市" }, "geometry": { "type": "Point", "coordinates": [ 132.67543, 34.58458 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "芸備線", "運営会社": "西日本旅客鉄道", "駅名": "玖村" }, "geometry": { "type": "Point", "coordinates": [ 132.50831, 34.48229 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "芸備線", "運営会社": "西日本旅客鉄道", "駅名": "志和口" }, "geometry": { "type": "Point", "coordinates": [ 132.65822, 34.55404 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "芸備線", "運営会社": "西日本旅客鉄道", "駅名": "下深川" }, "geometry": { "type": "Point", "coordinates": [ 132.52395, 34.48886 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "芸備線", "運営会社": "西日本旅客鉄道", "駅名": "安芸矢口" }, "geometry": { "type": "Point", "coordinates": [ 132.4949, 34.46268 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "芸備線", "運営会社": "西日本旅客鉄道", "駅名": "狩留家" }, "geometry": { "type": "Point", "coordinates": [ 132.57907, 34.48569 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "湖西線", "運営会社": "西日本旅客鉄道", "駅名": "山科" }, "geometry": { "type": "Point", "coordinates": [ 135.8181, 34.99264 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "湖西線", "運営会社": "西日本旅客鉄道", "駅名": "近江塩津" }, "geometry": { "type": "Point", "coordinates": [ 136.15185, 35.53837 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "湖西線", "運営会社": "西日本旅客鉄道", "駅名": "近江舞子" }, "geometry": { "type": "Point", "coordinates": [ 135.95877, 35.2355 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "湖西線", "運営会社": "西日本旅客鉄道", "駅名": "志賀" }, "geometry": { "type": "Point", "coordinates": [ 135.92415, 35.20137 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "湖西線", "運営会社": "西日本旅客鉄道", "駅名": "蓬莱" }, "geometry": { "type": "Point", "coordinates": [ 135.91501, 35.18171 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "湖西線", "運営会社": "西日本旅客鉄道", "駅名": "永原" }, "geometry": { "type": "Point", "coordinates": [ 136.12113, 35.49805 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "湖西線", "運営会社": "西日本旅客鉄道", "駅名": "比良" }, "geometry": { "type": "Point", "coordinates": [ 135.94316, 35.21915 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "湖西線", "運営会社": "西日本旅客鉄道", "駅名": "近江高島" }, "geometry": { "type": "Point", "coordinates": [ 136.00951, 35.29389 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "湖西線", "運営会社": "西日本旅客鉄道", "駅名": "安曇川" }, "geometry": { "type": "Point", "coordinates": [ 136.02023, 35.32916 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "湖西線", "運営会社": "西日本旅客鉄道", "駅名": "堅田" }, "geometry": { "type": "Point", "coordinates": [ 135.91436, 35.11999 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "湖西線", "運営会社": "西日本旅客鉄道", "駅名": "北小松" }, "geometry": { "type": "Point", "coordinates": [ 135.96925, 35.25248 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "湖西線", "運営会社": "西日本旅客鉄道", "駅名": "比叡山坂本" }, "geometry": { "type": "Point", "coordinates": [ 135.87794, 35.06972 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "湖西線", "運営会社": "西日本旅客鉄道", "駅名": "新旭" }, "geometry": { "type": "Point", "coordinates": [ 136.03538, 35.35474 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "湖西線", "運営会社": "西日本旅客鉄道", "駅名": "和邇" }, "geometry": { "type": "Point", "coordinates": [ 135.92305, 35.16042 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "湖西線", "運営会社": "西日本旅客鉄道", "駅名": "唐崎" }, "geometry": { "type": "Point", "coordinates": [ 135.86767, 35.05029 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "湖西線", "運営会社": "西日本旅客鉄道", "駅名": "マキノ" }, "geometry": { "type": "Point", "coordinates": [ 136.06081, 35.46175 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "湖西線", "運営会社": "西日本旅客鉄道", "駅名": "近江中庄" }, "geometry": { "type": "Point", "coordinates": [ 136.03865, 35.44143 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "湖西線", "運営会社": "西日本旅客鉄道", "駅名": "小野" }, "geometry": { "type": "Point", "coordinates": [ 135.92256, 35.13815 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "湖西線", "運営会社": "西日本旅客鉄道", "駅名": "おごと温泉" }, "geometry": { "type": "Point", "coordinates": [ 135.89368, 35.09598 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "湖西線", "運営会社": "西日本旅客鉄道", "駅名": "大津京" }, "geometry": { "type": "Point", "coordinates": [ 135.8584, 35.02532 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "湖西線", "運営会社": "西日本旅客鉄道", "駅名": "近江今津" }, "geometry": { "type": "Point", "coordinates": [ 136.03188, 35.39683 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "呉線", "運営会社": "西日本旅客鉄道", "駅名": "三原" }, "geometry": { "type": "Point", "coordinates": [ 133.08457, 34.40058 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "呉線", "運営会社": "西日本旅客鉄道", "駅名": "吉名" }, "geometry": { "type": "Point", "coordinates": [ 132.86698, 34.321 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "呉線", "運営会社": "西日本旅客鉄道", "駅名": "竹原" }, "geometry": { "type": "Point", "coordinates": [ 132.90868, 34.33907 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "呉線", "運営会社": "西日本旅客鉄道", "駅名": "忠海" }, "geometry": { "type": "Point", "coordinates": [ 132.99029, 34.33634 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "呉線", "運営会社": "西日本旅客鉄道", "駅名": "安芸幸崎" }, "geometry": { "type": "Point", "coordinates": [ 133.04123, 34.3384 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "呉線", "運営会社": "西日本旅客鉄道", "駅名": "風早" }, "geometry": { "type": "Point", "coordinates": [ 132.79544, 34.30202 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "呉線", "運営会社": "西日本旅客鉄道", "駅名": "須波" }, "geometry": { "type": "Point", "coordinates": [ 133.08409, 34.37059 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "呉線", "運営会社": "西日本旅客鉄道", "駅名": "安芸津" }, "geometry": { "type": "Point", "coordinates": [ 132.81933, 34.31788 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "呉線", "運営会社": "西日本旅客鉄道", "駅名": "大乗" }, "geometry": { "type": "Point", "coordinates": [ 132.9461, 34.34107 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "呉線", "運営会社": "西日本旅客鉄道", "駅名": "安浦" }, "geometry": { "type": "Point", "coordinates": [ 132.74322, 34.28414 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "呉線", "運営会社": "西日本旅客鉄道", "駅名": "安登" }, "geometry": { "type": "Point", "coordinates": [ 132.72297, 34.25472 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "呉線", "運営会社": "西日本旅客鉄道", "駅名": "安芸長浜" }, "geometry": { "type": "Point", "coordinates": [ 132.96218, 34.33786 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "呉線", "運営会社": "西日本旅客鉄道", "駅名": "かるが浜" }, "geometry": { "type": "Point", "coordinates": [ 132.51768, 34.26373 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "呉線", "運営会社": "西日本旅客鉄道", "駅名": "吉浦" }, "geometry": { "type": "Point", "coordinates": [ 132.52658, 34.25806 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "呉線", "運営会社": "西日本旅客鉄道", "駅名": "安芸阿賀" }, "geometry": { "type": "Point", "coordinates": [ 132.59951, 34.23571 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "呉線", "運営会社": "西日本旅客鉄道", "駅名": "矢野" }, "geometry": { "type": "Point", "coordinates": [ 132.53097, 34.35152 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "呉線", "運営会社": "西日本旅客鉄道", "駅名": "新広" }, "geometry": { "type": "Point", "coordinates": [ 132.61358, 34.23224 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "呉線", "運営会社": "西日本旅客鉄道", "駅名": "水尻" }, "geometry": { "type": "Point", "coordinates": [ 132.49858, 34.3192 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "呉線", "運営会社": "西日本旅客鉄道", "駅名": "坂" }, "geometry": { "type": "Point", "coordinates": [ 132.50981, 34.33812 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "呉線", "運営会社": "西日本旅客鉄道", "駅名": "広" }, "geometry": { "type": "Point", "coordinates": [ 132.62794, 34.22858 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "呉線", "運営会社": "西日本旅客鉄道", "駅名": "川原石" }, "geometry": { "type": "Point", "coordinates": [ 132.54167, 34.24868 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "呉線", "運営会社": "西日本旅客鉄道", "駅名": "安芸川尻" }, "geometry": { "type": "Point", "coordinates": [ 132.69121, 34.23111 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "呉線", "運営会社": "西日本旅客鉄道", "駅名": "呉" }, "geometry": { "type": "Point", "coordinates": [ 132.55859, 34.24389 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "呉線", "運営会社": "西日本旅客鉄道", "駅名": "海田市" }, "geometry": { "type": "Point", "coordinates": [ 132.52948, 34.37216 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "呉線", "運営会社": "西日本旅客鉄道", "駅名": "呉ポートピア" }, "geometry": { "type": "Point", "coordinates": [ 132.51346, 34.29121 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "呉線", "運営会社": "西日本旅客鉄道", "駅名": "天応" }, "geometry": { "type": "Point", "coordinates": [ 132.51959, 34.27986 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "呉線", "運営会社": "西日本旅客鉄道", "駅名": "仁方" }, "geometry": { "type": "Point", "coordinates": [ 132.65389, 34.22217 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "呉線", "運営会社": "西日本旅客鉄道", "駅名": "小屋浦" }, "geometry": { "type": "Point", "coordinates": [ 132.50716, 34.30178 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "高山線", "運営会社": "西日本旅客鉄道", "駅名": "東八尾" }, "geometry": { "type": "Point", "coordinates": [ 137.17452, 36.58975 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "高山線", "運営会社": "西日本旅客鉄道", "駅名": "笹津" }, "geometry": { "type": "Point", "coordinates": [ 137.21115, 36.56205 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "高山線", "運営会社": "西日本旅客鉄道", "駅名": "速星" }, "geometry": { "type": "Point", "coordinates": [ 137.16065, 36.66442 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "高山線", "運営会社": "西日本旅客鉄道", "駅名": "西富山" }, "geometry": { "type": "Point", "coordinates": [ 137.17753, 36.69977 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "高山線", "運営会社": "西日本旅客鉄道", "駅名": "楡原" }, "geometry": { "type": "Point", "coordinates": [ 137.22879, 36.53007 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "高山線", "運営会社": "西日本旅客鉄道", "駅名": "猪谷" }, "geometry": { "type": "Point", "coordinates": [ 137.2374, 36.4722 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "高山線", "運営会社": "西日本旅客鉄道", "駅名": "富山" }, "geometry": { "type": "Point", "coordinates": [ 137.21445, 36.70118 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "高山線", "運営会社": "西日本旅客鉄道", "駅名": "越中八尾" }, "geometry": { "type": "Point", "coordinates": [ 137.13779, 36.59226 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "高山線", "運営会社": "西日本旅客鉄道", "駅名": "千里" }, "geometry": { "type": "Point", "coordinates": [ 137.13248, 36.63525 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "阪和線", "運営会社": "西日本旅客鉄道", "駅名": "長居" }, "geometry": { "type": "Point", "coordinates": [ 135.51217, 34.60996 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "阪和線", "運営会社": "西日本旅客鉄道", "駅名": "浅香" }, "geometry": { "type": "Point", "coordinates": [ 135.50255, 34.58581 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "阪和線", "運営会社": "西日本旅客鉄道", "駅名": "堺市" }, "geometry": { "type": "Point", "coordinates": [ 135.49902, 34.57827 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "阪和線", "運営会社": "西日本旅客鉄道", "駅名": "三国ヶ丘" }, "geometry": { "type": "Point", "coordinates": [ 135.49299, 34.56667 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "阪和線", "運営会社": "西日本旅客鉄道", "駅名": "我孫子町" }, "geometry": { "type": "Point", "coordinates": [ 135.50654, 34.60168 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "阪和線", "運営会社": "西日本旅客鉄道", "駅名": "天王寺" }, "geometry": { "type": "Point", "coordinates": [ 135.5161, 34.64707 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "阪和線", "運営会社": "西日本旅客鉄道", "駅名": "美章園" }, "geometry": { "type": "Point", "coordinates": [ 135.52378, 34.63804 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "阪和線", "運営会社": "西日本旅客鉄道", "駅名": "南田辺" }, "geometry": { "type": "Point", "coordinates": [ 135.52069, 34.62511 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "阪和線", "運営会社": "西日本旅客鉄道", "駅名": "杉本町" }, "geometry": { "type": "Point", "coordinates": [ 135.50297, 34.59238 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "阪和線", "運営会社": "西日本旅客鉄道", "駅名": "鶴ヶ丘" }, "geometry": { "type": "Point", "coordinates": [ 135.51675, 34.6174 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "阪和線", "運営会社": "西日本旅客鉄道", "駅名": "日根野" }, "geometry": { "type": "Point", "coordinates": [ 135.33087, 34.38997 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "阪和線", "運営会社": "西日本旅客鉄道", "駅名": "津久野" }, "geometry": { "type": "Point", "coordinates": [ 135.46879, 34.54268 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "阪和線", "運営会社": "西日本旅客鉄道", "駅名": "北信太" }, "geometry": { "type": "Point", "coordinates": [ 135.44195, 34.51116 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "阪和線", "運営会社": "西日本旅客鉄道", "駅名": "和泉府中" }, "geometry": { "type": "Point", "coordinates": [ 135.42441, 34.48873 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "阪和線", "運営会社": "西日本旅客鉄道", "駅名": "上野芝" }, "geometry": { "type": "Point", "coordinates": [ 135.47893, 34.55003 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "阪和線", "運営会社": "西日本旅客鉄道", "駅名": "和泉橋本" }, "geometry": { "type": "Point", "coordinates": [ 135.35911, 34.42768 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "阪和線", "運営会社": "西日本旅客鉄道", "駅名": "東佐野" }, "geometry": { "type": "Point", "coordinates": [ 135.34966, 34.41619 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "阪和線", "運営会社": "西日本旅客鉄道", "駅名": "紀伊中ノ島" }, "geometry": { "type": "Point", "coordinates": [ 135.1899, 34.24255 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "阪和線", "運営会社": "西日本旅客鉄道", "駅名": "和泉砂川" }, "geometry": { "type": "Point", "coordinates": [ 135.28043, 34.35951 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "阪和線", "運営会社": "西日本旅客鉄道", "駅名": "東貝塚" }, "geometry": { "type": "Point", "coordinates": [ 135.37364, 34.4405 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "阪和線", "運営会社": "西日本旅客鉄道", "駅名": "下松" }, "geometry": { "type": "Point", "coordinates": [ 135.39739, 34.45788 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "阪和線", "運営会社": "西日本旅客鉄道", "駅名": "紀伊" }, "geometry": { "type": "Point", "coordinates": [ 135.24678, 34.26929 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "阪和線", "運営会社": "西日本旅客鉄道", "駅名": "和歌山" }, "geometry": { "type": "Point", "coordinates": [ 135.19156, 34.23162 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "阪和線", "運営会社": "西日本旅客鉄道", "駅名": "信太山" }, "geometry": { "type": "Point", "coordinates": [ 135.43346, 34.50089 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "阪和線", "運営会社": "西日本旅客鉄道", "駅名": "長滝" }, "geometry": { "type": "Point", "coordinates": [ 135.31948, 34.38156 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "阪和線", "運営会社": "西日本旅客鉄道", "駅名": "鳳" }, "geometry": { "type": "Point", "coordinates": [ 135.45954, 34.5327 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "阪和線", "運営会社": "西日本旅客鉄道", "駅名": "百舌鳥" }, "geometry": { "type": "Point", "coordinates": [ 135.48953, 34.55921 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "阪和線", "運営会社": "西日本旅客鉄道", "駅名": "和泉鳥取" }, "geometry": { "type": "Point", "coordinates": [ 135.26315, 34.34183 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "阪和線", "運営会社": "西日本旅客鉄道", "駅名": "東羽衣" }, "geometry": { "type": "Point", "coordinates": [ 135.44249, 34.53519 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "阪和線", "運営会社": "西日本旅客鉄道", "駅名": "久米田" }, "geometry": { "type": "Point", "coordinates": [ 135.40597, 34.46614 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "阪和線", "運営会社": "西日本旅客鉄道", "駅名": "熊取" }, "geometry": { "type": "Point", "coordinates": [ 135.34063, 34.40558 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "阪和線", "運営会社": "西日本旅客鉄道", "駅名": "東岸和田" }, "geometry": { "type": "Point", "coordinates": [ 135.38655, 34.44981 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "阪和線", "運営会社": "西日本旅客鉄道", "駅名": "山中渓" }, "geometry": { "type": "Point", "coordinates": [ 135.26991, 34.32591 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "阪和線", "運営会社": "西日本旅客鉄道", "駅名": "富木" }, "geometry": { "type": "Point", "coordinates": [ 135.45166, 34.52306 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "阪和線", "運営会社": "西日本旅客鉄道", "駅名": "六十谷" }, "geometry": { "type": "Point", "coordinates": [ 135.20761, 34.26307 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "阪和線", "運営会社": "西日本旅客鉄道", "駅名": "鳳" }, "geometry": { "type": "Point", "coordinates": [ 135.4583, 34.53169 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "阪和線", "運営会社": "西日本旅客鉄道", "駅名": "新家" }, "geometry": { "type": "Point", "coordinates": [ 135.29847, 34.37199 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "桜井線", "運営会社": "西日本旅客鉄道", "駅名": "京終" }, "geometry": { "type": "Point", "coordinates": [ 135.82815, 34.67028 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "桜井線", "運営会社": "西日本旅客鉄道", "駅名": "奈良" }, "geometry": { "type": "Point", "coordinates": [ 135.81829, 34.67937 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "桜井線", "運営会社": "西日本旅客鉄道", "駅名": "高田" }, "geometry": { "type": "Point", "coordinates": [ 135.74407, 34.517 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "桜井線", "運営会社": "西日本旅客鉄道", "駅名": "三輪" }, "geometry": { "type": "Point", "coordinates": [ 135.8487, 34.52651 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "桜井線", "運営会社": "西日本旅客鉄道", "駅名": "帯解" }, "geometry": { "type": "Point", "coordinates": [ 135.82622, 34.64388 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "桜井線", "運営会社": "西日本旅客鉄道", "駅名": "金橋" }, "geometry": { "type": "Point", "coordinates": [ 135.76503, 34.50967 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "桜井線", "運営会社": "西日本旅客鉄道", "駅名": "香久山" }, "geometry": { "type": "Point", "coordinates": [ 135.82432, 34.51049 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "桜井線", "運営会社": "西日本旅客鉄道", "駅名": "桜井" }, "geometry": { "type": "Point", "coordinates": [ 135.84467, 34.51281 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "桜井線", "運営会社": "西日本旅客鉄道", "駅名": "畝傍" }, "geometry": { "type": "Point", "coordinates": [ 135.79349, 34.50825 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "桜井線", "運営会社": "西日本旅客鉄道", "駅名": "天理" }, "geometry": { "type": "Point", "coordinates": [ 135.83074, 34.5989 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "桜井線", "運営会社": "西日本旅客鉄道", "駅名": "櫟本" }, "geometry": { "type": "Point", "coordinates": [ 135.82602, 34.62174 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "桜井線", "運営会社": "西日本旅客鉄道", "駅名": "長柄" }, "geometry": { "type": "Point", "coordinates": [ 135.83511, 34.57347 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "桜井線", "運営会社": "西日本旅客鉄道", "駅名": "柳本" }, "geometry": { "type": "Point", "coordinates": [ 135.83871, 34.55857 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "桜井線", "運営会社": "西日本旅客鉄道", "駅名": "巻向" }, "geometry": { "type": "Point", "coordinates": [ 135.84102, 34.54485 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "桜島線", "運営会社": "西日本旅客鉄道", "駅名": "西九条" }, "geometry": { "type": "Point", "coordinates": [ 135.46765, 34.68342 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "桜島線", "運営会社": "西日本旅客鉄道", "駅名": "ユニバーサルシティ" }, "geometry": { "type": "Point", "coordinates": [ 135.43802, 34.66725 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "桜島線", "運営会社": "西日本旅客鉄道", "駅名": "桜島" }, "geometry": { "type": "Point", "coordinates": [ 135.43209, 34.66188 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "桜島線", "運営会社": "西日本旅客鉄道", "駅名": "安治川口" }, "geometry": { "type": "Point", "coordinates": [ 135.4442, 34.67369 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "三江線", "運営会社": "西日本旅客鉄道", "駅名": "長谷" }, "geometry": { "type": "Point", "coordinates": [ 132.78783, 34.80352 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "三江線", "運営会社": "西日本旅客鉄道", "駅名": "船佐" }, "geometry": { "type": "Point", "coordinates": [ 132.76571, 34.808 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "三江線", "運営会社": "西日本旅客鉄道", "駅名": "所木" }, "geometry": { "type": "Point", "coordinates": [ 132.75038, 34.8101 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "三江線", "運営会社": "西日本旅客鉄道", "駅名": "尾関山" }, "geometry": { "type": "Point", "coordinates": [ 132.84158, 34.81311 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "三江線", "運営会社": "西日本旅客鉄道", "駅名": "信木" }, "geometry": { "type": "Point", "coordinates": [ 132.73112, 34.81281 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "三江線", "運営会社": "西日本旅客鉄道", "駅名": "粟屋" }, "geometry": { "type": "Point", "coordinates": [ 132.81254, 34.80986 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "三江線", "運営会社": "西日本旅客鉄道", "駅名": "三次" }, "geometry": { "type": "Point", "coordinates": [ 132.85563, 34.80266 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "三江線", "運営会社": "西日本旅客鉄道", "駅名": "江津" }, "geometry": { "type": "Point", "coordinates": [ 132.22235, 35.01251 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "三江線", "運営会社": "西日本旅客鉄道", "駅名": "作木口" }, "geometry": { "type": "Point", "coordinates": [ 132.70673, 34.86066 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "三江線", "運営会社": "西日本旅客鉄道", "駅名": "石見松原" }, "geometry": { "type": "Point", "coordinates": [ 132.6151, 34.99312 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "三江線", "運営会社": "西日本旅客鉄道", "駅名": "石見簗瀬" }, "geometry": { "type": "Point", "coordinates": [ 132.56617, 35.04229 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "三江線", "運営会社": "西日本旅客鉄道", "駅名": "石見都賀" }, "geometry": { "type": "Point", "coordinates": [ 132.64252, 34.95591 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "三江線", "運営会社": "西日本旅客鉄道", "駅名": "明塚" }, "geometry": { "type": "Point", "coordinates": [ 132.58396, 35.04926 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "三江線", "運営会社": "西日本旅客鉄道", "駅名": "宇都井" }, "geometry": { "type": "Point", "coordinates": [ 132.62929, 34.90708 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "三江線", "運営会社": "西日本旅客鉄道", "駅名": "潮" }, "geometry": { "type": "Point", "coordinates": [ 132.63227, 35.01568 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "三江線", "運営会社": "西日本旅客鉄道", "駅名": "千金" }, "geometry": { "type": "Point", "coordinates": [ 132.24955, 35.00185 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "三江線", "運営会社": "西日本旅客鉄道", "駅名": "式敷" }, "geometry": { "type": "Point", "coordinates": [ 132.71303, 34.81584 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "三江線", "運営会社": "西日本旅客鉄道", "駅名": "因原" }, "geometry": { "type": "Point", "coordinates": [ 132.47339, 34.9662 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "三江線", "運営会社": "西日本旅客鉄道", "駅名": "口羽" }, "geometry": { "type": "Point", "coordinates": [ 132.67069, 34.88512 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "三江線", "運営会社": "西日本旅客鉄道", "駅名": "沢谷" }, "geometry": { "type": "Point", "coordinates": [ 132.63523, 35.05765 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "三江線", "運営会社": "西日本旅客鉄道", "駅名": "竹" }, "geometry": { "type": "Point", "coordinates": [ 132.53006, 35.01296 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "三江線", "運営会社": "西日本旅客鉄道", "駅名": "田津" }, "geometry": { "type": "Point", "coordinates": [ 132.38552, 34.95158 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "三江線", "運営会社": "西日本旅客鉄道", "駅名": "江津本町" }, "geometry": { "type": "Point", "coordinates": [ 132.23051, 35.00687 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "三江線", "運営会社": "西日本旅客鉄道", "駅名": "川平" }, "geometry": { "type": "Point", "coordinates": [ 132.28373, 34.9971 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "三江線", "運営会社": "西日本旅客鉄道", "駅名": "川戸" }, "geometry": { "type": "Point", "coordinates": [ 132.33331, 34.95987 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "三江線", "運営会社": "西日本旅客鉄道", "駅名": "石見川本" }, "geometry": { "type": "Point", "coordinates": [ 132.49256, 34.99086 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "三江線", "運営会社": "西日本旅客鉄道", "駅名": "江平" }, "geometry": { "type": "Point", "coordinates": [ 132.70218, 34.8757 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "三江線", "運営会社": "西日本旅客鉄道", "駅名": "伊賀和志" }, "geometry": { "type": "Point", "coordinates": [ 132.66091, 34.89532 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "三江線", "運営会社": "西日本旅客鉄道", "駅名": "鹿賀" }, "geometry": { "type": "Point", "coordinates": [ 132.44561, 34.96301 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "三江線", "運営会社": "西日本旅客鉄道", "駅名": "浜原" }, "geometry": { "type": "Point", "coordinates": [ 132.59949, 35.05959 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "三江線", "運営会社": "西日本旅客鉄道", "駅名": "石見川越" }, "geometry": { "type": "Point", "coordinates": [ 132.4152, 34.94974 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "三江線", "運営会社": "西日本旅客鉄道", "駅名": "粕淵" }, "geometry": { "type": "Point", "coordinates": [ 132.59345, 35.07251 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "三江線", "運営会社": "西日本旅客鉄道", "駅名": "木路原" }, "geometry": { "type": "Point", "coordinates": [ 132.50822, 34.99716 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "三江線", "運営会社": "西日本旅客鉄道", "駅名": "乙原" }, "geometry": { "type": "Point", "coordinates": [ 132.54764, 35.02653 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "三江線", "運営会社": "西日本旅客鉄道", "駅名": "香淀" }, "geometry": { "type": "Point", "coordinates": [ 132.71305, 34.82713 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "綾部" }, "geometry": { "type": "Point", "coordinates": [ 135.25061, 35.30227 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "和田山" }, "geometry": { "type": "Point", "coordinates": [ 134.85279, 35.34118 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "上川口" }, "geometry": { "type": "Point", "coordinates": [ 135.07407, 35.32946 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "香住" }, "geometry": { "type": "Point", "coordinates": [ 134.62166, 35.63591 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "国府" }, "geometry": { "type": "Point", "coordinates": [ 134.79988, 35.49606 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "養父" }, "geometry": { "type": "Point", "coordinates": [ 134.81235, 35.3699 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "立木" }, "geometry": { "type": "Point", "coordinates": [ 135.33638, 35.27444 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "玄武洞" }, "geometry": { "type": "Point", "coordinates": [ 134.79957, 35.58776 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "花園" }, "geometry": { "type": "Point", "coordinates": [ 135.71689, 35.01843 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "佐津" }, "geometry": { "type": "Point", "coordinates": [ 134.68508, 35.65329 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "梁瀬" }, "geometry": { "type": "Point", "coordinates": [ 134.88183, 35.32174 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "鍼灸大学前" }, "geometry": { "type": "Point", "coordinates": [ 135.48903, 35.18005 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "嵯峨嵐山" }, "geometry": { "type": "Point", "coordinates": [ 135.6799, 35.01893 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "城崎温泉" }, "geometry": { "type": "Point", "coordinates": [ 134.81321, 35.62262 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "高津" }, "geometry": { "type": "Point", "coordinates": [ 135.20594, 35.30481 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "太秦" }, "geometry": { "type": "Point", "coordinates": [ 135.69961, 35.01705 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "吉富" }, "geometry": { "type": "Point", "coordinates": [ 135.49913, 35.09148 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "並河" }, "geometry": { "type": "Point", "coordinates": [ 135.55534, 35.03159 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "上夜久野" }, "geometry": { "type": "Point", "coordinates": [ 134.93076, 35.34184 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "胡麻" }, "geometry": { "type": "Point", "coordinates": [ 135.46781, 35.19555 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "和知" }, "geometry": { "type": "Point", "coordinates": [ 135.39968, 35.26057 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "亀岡" }, "geometry": { "type": "Point", "coordinates": [ 135.58347, 35.01654 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "八木" }, "geometry": { "type": "Point", "coordinates": [ 135.53305, 35.06847 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "日吉" }, "geometry": { "type": "Point", "coordinates": [ 135.5039, 35.16147 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "京都" }, "geometry": { "type": "Point", "coordinates": [ 135.76104, 34.98568 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "下山" }, "geometry": { "type": "Point", "coordinates": [ 135.42232, 35.21269 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "保津峡" }, "geometry": { "type": "Point", "coordinates": [ 135.63906, 35.02307 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "八鹿" }, "geometry": { "type": "Point", "coordinates": [ 134.78071, 35.41348 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "竹野" }, "geometry": { "type": "Point", "coordinates": [ 134.75699, 35.64907 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "二条" }, "geometry": { "type": "Point", "coordinates": [ 135.7418, 35.01229 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "柴山" }, "geometry": { "type": "Point", "coordinates": [ 134.663, 35.6466 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "石原" }, "geometry": { "type": "Point", "coordinates": [ 135.18112, 35.30118 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "円町" }, "geometry": { "type": "Point", "coordinates": [ 135.72981, 35.01828 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "豊岡" }, "geometry": { "type": "Point", "coordinates": [ 134.81436, 35.54238 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "園部" }, "geometry": { "type": "Point", "coordinates": [ 135.48409, 35.10145 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "福知山" }, "geometry": { "type": "Point", "coordinates": [ 135.11982, 35.29626 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "江原" }, "geometry": { "type": "Point", "coordinates": [ 134.77531, 35.46899 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "安栖里" }, "geometry": { "type": "Point", "coordinates": [ 135.38626, 35.26648 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "千代川" }, "geometry": { "type": "Point", "coordinates": [ 135.54876, 35.04762 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "山家" }, "geometry": { "type": "Point", "coordinates": [ 135.31746, 35.2931 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "下夜久野" }, "geometry": { "type": "Point", "coordinates": [ 134.99973, 35.31987 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "馬堀" }, "geometry": { "type": "Point", "coordinates": [ 135.60346, 35.01092 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "船岡" }, "geometry": { "type": "Point", "coordinates": [ 135.49109, 35.13289 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "鳥取大学前" }, "geometry": { "type": "Point", "coordinates": [ 134.17451, 35.51795 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "泊" }, "geometry": { "type": "Point", "coordinates": [ 133.93673, 35.50985 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "東浜" }, "geometry": { "type": "Point", "coordinates": [ 134.36155, 35.5995 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "松崎" }, "geometry": { "type": "Point", "coordinates": [ 133.90342, 35.46966 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "鳥取" }, "geometry": { "type": "Point", "coordinates": [ 134.22724, 35.49374 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "宝木" }, "geometry": { "type": "Point", "coordinates": [ 134.08339, 35.51432 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "末恒" }, "geometry": { "type": "Point", "coordinates": [ 134.13661, 35.52414 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "鎧" }, "geometry": { "type": "Point", "coordinates": [ 134.57615, 35.65118 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "福部" }, "geometry": { "type": "Point", "coordinates": [ 134.28798, 35.54485 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "湖山" }, "geometry": { "type": "Point", "coordinates": [ 134.18724, 35.51299 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "浜坂" }, "geometry": { "type": "Point", "coordinates": [ 134.4542, 35.62014 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "餘部" }, "geometry": { "type": "Point", "coordinates": [ 134.55772, 35.64896 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "青谷" }, "geometry": { "type": "Point", "coordinates": [ 133.99649, 35.516 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "久谷" }, "geometry": { "type": "Point", "coordinates": [ 134.51836, 35.62768 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "由良" }, "geometry": { "type": "Point", "coordinates": [ 133.75555, 35.49009 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "浜村" }, "geometry": { "type": "Point", "coordinates": [ 134.05195, 35.50946 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "下北条" }, "geometry": { "type": "Point", "coordinates": [ 133.80988, 35.48181 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "大岩" }, "geometry": { "type": "Point", "coordinates": [ 134.30735, 35.56678 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "岩美" }, "geometry": { "type": "Point", "coordinates": [ 134.33522, 35.57328 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "諸寄" }, "geometry": { "type": "Point", "coordinates": [ 134.43477, 35.61989 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "居組" }, "geometry": { "type": "Point", "coordinates": [ 134.39454, 35.60753 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "倉吉" }, "geometry": { "type": "Point", "coordinates": [ 133.85117, 35.45413 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "荘原" }, "geometry": { "type": "Point", "coordinates": [ 132.86926, 35.39385 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "西出雲" }, "geometry": { "type": "Point", "coordinates": [ 132.72128, 35.33459 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "乃木" }, "geometry": { "type": "Point", "coordinates": [ 133.04897, 35.44618 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "赤碕" }, "geometry": { "type": "Point", "coordinates": [ 133.63524, 35.51235 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "松江" }, "geometry": { "type": "Point", "coordinates": [ 133.06518, 35.46428 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "米子" }, "geometry": { "type": "Point", "coordinates": [ 133.33743, 35.42427 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "浦安" }, "geometry": { "type": "Point", "coordinates": [ 133.69416, 35.4995 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "直江" }, "geometry": { "type": "Point", "coordinates": [ 132.80821, 35.38428 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "名和" }, "geometry": { "type": "Point", "coordinates": [ 133.49227, 35.50748 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "下市" }, "geometry": { "type": "Point", "coordinates": [ 133.56723, 35.51898 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "大山口" }, "geometry": { "type": "Point", "coordinates": [ 133.45606, 35.48465 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "東山公園" }, "geometry": { "type": "Point", "coordinates": [ 133.35252, 35.43065 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "出雲市" }, "geometry": { "type": "Point", "coordinates": [ 132.75797, 35.36086 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "東松江" }, "geometry": { "type": "Point", "coordinates": [ 133.12884, 35.44483 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "御来屋" }, "geometry": { "type": "Point", "coordinates": [ 133.50384, 35.51227 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "安来" }, "geometry": { "type": "Point", "coordinates": [ 133.26069, 35.4281 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "来待" }, "geometry": { "type": "Point", "coordinates": [ 132.9509, 35.42052 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "荒島" }, "geometry": { "type": "Point", "coordinates": [ 133.2081, 35.43174 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "宍道" }, "geometry": { "type": "Point", "coordinates": [ 132.90863, 35.40642 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "玉造温泉" }, "geometry": { "type": "Point", "coordinates": [ 133.01352, 35.43114 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "淀江" }, "geometry": { "type": "Point", "coordinates": [ 133.42904, 35.45653 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "八橋" }, "geometry": { "type": "Point", "coordinates": [ 133.67425, 35.50291 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "揖屋" }, "geometry": { "type": "Point", "coordinates": [ 133.14995, 35.4281 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "中山口" }, "geometry": { "type": "Point", "coordinates": [ 133.59108, 35.52057 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "伯耆大山" }, "geometry": { "type": "Point", "coordinates": [ 133.38319, 35.42961 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "益田" }, "geometry": { "type": "Point", "coordinates": [ 131.8395, 34.67804 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "黒松" }, "geometry": { "type": "Point", "coordinates": [ 132.31364, 35.05795 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "江南" }, "geometry": { "type": "Point", "coordinates": [ 132.68269, 35.31467 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "五十猛" }, "geometry": { "type": "Point", "coordinates": [ 132.44026, 35.19256 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "久手" }, "geometry": { "type": "Point", "coordinates": [ 132.50884, 35.23047 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "仁万" }, "geometry": { "type": "Point", "coordinates": [ 132.40368, 35.15158 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "三保三隅" }, "geometry": { "type": "Point", "coordinates": [ 131.95593, 34.79524 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "浜田" }, "geometry": { "type": "Point", "coordinates": [ 132.08908, 34.90315 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "浅利" }, "geometry": { "type": "Point", "coordinates": [ 132.2749, 35.037 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "波子" }, "geometry": { "type": "Point", "coordinates": [ 132.1512, 34.96463 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "大田市" }, "geometry": { "type": "Point", "coordinates": [ 132.5004, 35.20167 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "周布" }, "geometry": { "type": "Point", "coordinates": [ 132.01771, 34.85871 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "都野津" }, "geometry": { "type": "Point", "coordinates": [ 132.18764, 34.98987 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "鎌手" }, "geometry": { "type": "Point", "coordinates": [ 131.87757, 34.75143 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "波根" }, "geometry": { "type": "Point", "coordinates": [ 132.5269, 35.24068 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "小田" }, "geometry": { "type": "Point", "coordinates": [ 132.62936, 35.28421 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "下府" }, "geometry": { "type": "Point", "coordinates": [ 132.11074, 34.92683 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "田儀" }, "geometry": { "type": "Point", "coordinates": [ 132.59115, 35.27543 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "西浜田" }, "geometry": { "type": "Point", "coordinates": [ 132.05095, 34.86934 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "折居" }, "geometry": { "type": "Point", "coordinates": [ 131.98619, 34.82613 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "戸田小浜" }, "geometry": { "type": "Point", "coordinates": [ 131.73873, 34.67299 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "飯浦" }, "geometry": { "type": "Point", "coordinates": [ 131.70249, 34.66924 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "静間" }, "geometry": { "type": "Point", "coordinates": [ 132.46735, 35.19535 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "江津" }, "geometry": { "type": "Point", "coordinates": [ 132.22235, 35.01251 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "敬川" }, "geometry": { "type": "Point", "coordinates": [ 132.17442, 34.97801 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "石見福光" }, "geometry": { "type": "Point", "coordinates": [ 132.32909, 35.07704 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "湯里" }, "geometry": { "type": "Point", "coordinates": [ 132.37562, 35.107 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "温泉津" }, "geometry": { "type": "Point", "coordinates": [ 132.35024, 35.09131 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "石見津田" }, "geometry": { "type": "Point", "coordinates": [ 131.86547, 34.72285 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "久代" }, "geometry": { "type": "Point", "coordinates": [ 132.13956, 34.9497 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "出雲神西" }, "geometry": { "type": "Point", "coordinates": [ 132.70202, 35.32492 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "馬路" }, "geometry": { "type": "Point", "coordinates": [ 132.38813, 35.12855 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "岡見" }, "geometry": { "type": "Point", "coordinates": [ 131.91221, 34.7718 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "長門市" }, "geometry": { "type": "Point", "coordinates": [ 131.1863, 34.37591 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "幡生" }, "geometry": { "type": "Point", "coordinates": [ 130.92845, 33.98302 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "木与" }, "geometry": { "type": "Point", "coordinates": [ 131.5029, 34.53252 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "宇田郷" }, "geometry": { "type": "Point", "coordinates": [ 131.54821, 34.57144 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "滝部" }, "geometry": { "type": "Point", "coordinates": [ 130.94621, 34.28335 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "東萩" }, "geometry": { "type": "Point", "coordinates": [ 131.41071, 34.41656 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "川棚温泉" }, "geometry": { "type": "Point", "coordinates": [ 130.92244, 34.14667 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "人丸" }, "geometry": { "type": "Point", "coordinates": [ 131.05796, 34.37441 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "須佐" }, "geometry": { "type": "Point", "coordinates": [ 131.60618, 34.62206 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "福江" }, "geometry": { "type": "Point", "coordinates": [ 130.91582, 34.04772 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "奈古" }, "geometry": { "type": "Point", "coordinates": [ 131.47236, 34.50268 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "宇賀本郷" }, "geometry": { "type": "Point", "coordinates": [ 130.92737, 34.22763 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "長門粟野" }, "geometry": { "type": "Point", "coordinates": [ 130.96931, 34.35687 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "湯玉" }, "geometry": { "type": "Point", "coordinates": [ 130.93269, 34.20983 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "吉見" }, "geometry": { "type": "Point", "coordinates": [ 130.90316, 34.07042 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "越ヶ浜" }, "geometry": { "type": "Point", "coordinates": [ 131.42286, 34.4396 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "黒井村" }, "geometry": { "type": "Point", "coordinates": [ 130.9118, 34.12861 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "長門三隅" }, "geometry": { "type": "Point", "coordinates": [ 131.23726, 34.36596 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "特牛" }, "geometry": { "type": "Point", "coordinates": [ 130.91935, 34.30533 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "仙崎" }, "geometry": { "type": "Point", "coordinates": [ 131.19992, 34.38775 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "玉江" }, "geometry": { "type": "Point", "coordinates": [ 131.37942, 34.40552 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "安岡" }, "geometry": { "type": "Point", "coordinates": [ 130.91645, 34.02586 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "黄波戸" }, "geometry": { "type": "Point", "coordinates": [ 131.13945, 34.38579 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "長門大井" }, "geometry": { "type": "Point", "coordinates": [ 131.44977, 34.47156 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "梅ヶ峠" }, "geometry": { "type": "Point", "coordinates": [ 130.90009, 34.10199 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "小串" }, "geometry": { "type": "Point", "coordinates": [ 130.92862, 34.17059 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "江崎" }, "geometry": { "type": "Point", "coordinates": [ 131.66205, 34.63913 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "萩" }, "geometry": { "type": "Point", "coordinates": [ 131.40078, 34.39384 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "長門古市" }, "geometry": { "type": "Point", "coordinates": [ 131.10238, 34.38864 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "三見" }, "geometry": { "type": "Point", "coordinates": [ 131.33028, 34.39776 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "飯井" }, "geometry": { "type": "Point", "coordinates": [ 131.2952, 34.37914 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "阿川" }, "geometry": { "type": "Point", "coordinates": [ 130.92547, 34.33518 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "伊上" }, "geometry": { "type": "Point", "coordinates": [ 131.01205, 34.37038 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "綾羅木" }, "geometry": { "type": "Point", "coordinates": [ 130.92644, 34.00467 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "長門二見" }, "geometry": { "type": "Point", "coordinates": [ 130.91562, 34.25214 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陰線", "運営会社": "西日本旅客鉄道", "駅名": "丹波口" }, "geometry": { "type": "Point", "coordinates": [ 135.74219, 34.99723 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山口線", "運営会社": "西日本旅客鉄道", "駅名": "益田" }, "geometry": { "type": "Point", "coordinates": [ 131.8395, 34.67804 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山口線", "運営会社": "西日本旅客鉄道", "駅名": "船平山" }, "geometry": { "type": "Point", "coordinates": [ 131.73401, 34.42097 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山口線", "運営会社": "西日本旅客鉄道", "駅名": "青野山" }, "geometry": { "type": "Point", "coordinates": [ 131.80284, 34.48104 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山口線", "運営会社": "西日本旅客鉄道", "駅名": "石見横田" }, "geometry": { "type": "Point", "coordinates": [ 131.80505, 34.61853 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山口線", "運営会社": "西日本旅客鉄道", "駅名": "徳佐" }, "geometry": { "type": "Point", "coordinates": [ 131.72053, 34.40029 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山口線", "運営会社": "西日本旅客鉄道", "駅名": "日原" }, "geometry": { "type": "Point", "coordinates": [ 131.83184, 34.5332 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山口線", "運営会社": "西日本旅客鉄道", "駅名": "青原" }, "geometry": { "type": "Point", "coordinates": [ 131.80083, 34.55989 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山口線", "運営会社": "西日本旅客鉄道", "駅名": "本俣賀" }, "geometry": { "type": "Point", "coordinates": [ 131.82663, 34.65302 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山口線", "運営会社": "西日本旅客鉄道", "駅名": "津和野" }, "geometry": { "type": "Point", "coordinates": [ 131.77353, 34.4719 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山口線", "運営会社": "西日本旅客鉄道", "駅名": "東青原" }, "geometry": { "type": "Point", "coordinates": [ 131.79702, 34.58477 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山口線", "運営会社": "西日本旅客鉄道", "駅名": "新山口" }, "geometry": { "type": "Point", "coordinates": [ 131.3975, 34.09471 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山口線", "運営会社": "西日本旅客鉄道", "駅名": "長門峡" }, "geometry": { "type": "Point", "coordinates": [ 131.5784, 34.30422 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山口線", "運営会社": "西日本旅客鉄道", "駅名": "周防下郷" }, "geometry": { "type": "Point", "coordinates": [ 131.40185, 34.10153 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山口線", "運営会社": "西日本旅客鉄道", "駅名": "上山口" }, "geometry": { "type": "Point", "coordinates": [ 131.48513, 34.18283 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山口線", "運営会社": "西日本旅客鉄道", "駅名": "仁保津" }, "geometry": { "type": "Point", "coordinates": [ 131.41593, 34.12922 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山口線", "運営会社": "西日本旅客鉄道", "駅名": "鍋倉" }, "geometry": { "type": "Point", "coordinates": [ 131.69445, 34.37838 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山口線", "運営会社": "西日本旅客鉄道", "駅名": "地福" }, "geometry": { "type": "Point", "coordinates": [ 131.67482, 34.36314 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山口線", "運営会社": "西日本旅客鉄道", "駅名": "名草" }, "geometry": { "type": "Point", "coordinates": [ 131.65156, 34.35382 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山口線", "運営会社": "西日本旅客鉄道", "駅名": "矢原" }, "geometry": { "type": "Point", "coordinates": [ 131.44665, 34.15078 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山口線", "運営会社": "西日本旅客鉄道", "駅名": "湯田温泉" }, "geometry": { "type": "Point", "coordinates": [ 131.46094, 34.16008 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山口線", "運営会社": "西日本旅客鉄道", "駅名": "山口" }, "geometry": { "type": "Point", "coordinates": [ 131.48156, 34.17333 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山口線", "運営会社": "西日本旅客鉄道", "駅名": "大歳" }, "geometry": { "type": "Point", "coordinates": [ 131.43297, 34.14724 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山口線", "運営会社": "西日本旅客鉄道", "駅名": "上郷" }, "geometry": { "type": "Point", "coordinates": [ 131.40189, 34.11651 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山口線", "運営会社": "西日本旅客鉄道", "駅名": "宮野" }, "geometry": { "type": "Point", "coordinates": [ 131.49906, 34.19172 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山口線", "運営会社": "西日本旅客鉄道", "駅名": "渡川" }, "geometry": { "type": "Point", "coordinates": [ 131.60372, 34.32278 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山口線", "運営会社": "西日本旅客鉄道", "駅名": "三谷" }, "geometry": { "type": "Point", "coordinates": [ 131.6248, 34.34186 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山口線", "運営会社": "西日本旅客鉄道", "駅名": "仁保" }, "geometry": { "type": "Point", "coordinates": [ 131.53622, 34.21661 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山口線", "運営会社": "西日本旅客鉄道", "駅名": "篠目" }, "geometry": { "type": "Point", "coordinates": [ 131.56196, 34.27874 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "1", "路線名": "山陽新幹線", "運営会社": "西日本旅客鉄道", "駅名": "新大阪" }, "geometry": { "type": "Point", "coordinates": [ 135.49782, 34.73293 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "1", "路線名": "山陽新幹線", "運営会社": "西日本旅客鉄道", "駅名": "新大阪" }, "geometry": { "type": "Point", "coordinates": [ 135.49791, 34.73268 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "1", "路線名": "山陽新幹線", "運営会社": "西日本旅客鉄道", "駅名": "新神戸" }, "geometry": { "type": "Point", "coordinates": [ 135.19866, 34.7083 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "1", "路線名": "山陽新幹線", "運営会社": "西日本旅客鉄道", "駅名": "西明石" }, "geometry": { "type": "Point", "coordinates": [ 134.96204, 34.66688 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "1", "路線名": "山陽新幹線", "運営会社": "西日本旅客鉄道", "駅名": "姫路" }, "geometry": { "type": "Point", "coordinates": [ 134.69284, 34.82619 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "1", "路線名": "山陽新幹線", "運営会社": "西日本旅客鉄道", "駅名": "相生" }, "geometry": { "type": "Point", "coordinates": [ 134.47661, 34.81813 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "1", "路線名": "山陽新幹線", "運営会社": "西日本旅客鉄道", "駅名": "岡山" }, "geometry": { "type": "Point", "coordinates": [ 133.91917, 34.66742 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "1", "路線名": "山陽新幹線", "運営会社": "西日本旅客鉄道", "駅名": "新尾道" }, "geometry": { "type": "Point", "coordinates": [ 133.18824, 34.42934 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "1", "路線名": "山陽新幹線", "運営会社": "西日本旅客鉄道", "駅名": "新倉敷" }, "geometry": { "type": "Point", "coordinates": [ 133.68009, 34.56619 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "1", "路線名": "山陽新幹線", "運営会社": "西日本旅客鉄道", "駅名": "福山" }, "geometry": { "type": "Point", "coordinates": [ 133.36357, 34.48957 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "1", "路線名": "山陽新幹線", "運営会社": "西日本旅客鉄道", "駅名": "三原" }, "geometry": { "type": "Point", "coordinates": [ 133.08543, 34.4008 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "1", "路線名": "山陽新幹線", "運営会社": "西日本旅客鉄道", "駅名": "東広島" }, "geometry": { "type": "Point", "coordinates": [ 132.76159, 34.39054 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "1", "路線名": "山陽新幹線", "運営会社": "西日本旅客鉄道", "駅名": "広島" }, "geometry": { "type": "Point", "coordinates": [ 132.47692, 34.39738 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "1", "路線名": "山陽新幹線", "運営会社": "西日本旅客鉄道", "駅名": "徳山" }, "geometry": { "type": "Point", "coordinates": [ 131.80401, 34.04899 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "1", "路線名": "山陽新幹線", "運営会社": "西日本旅客鉄道", "駅名": "新岩国" }, "geometry": { "type": "Point", "coordinates": [ 132.1507, 34.16656 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "1", "路線名": "山陽新幹線", "運営会社": "西日本旅客鉄道", "駅名": "厚狭" }, "geometry": { "type": "Point", "coordinates": [ 131.16218, 34.05227 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "1", "路線名": "山陽新幹線", "運営会社": "西日本旅客鉄道", "駅名": "小倉" }, "geometry": { "type": "Point", "coordinates": [ 130.88528, 33.88655 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "1", "路線名": "山陽新幹線", "運営会社": "西日本旅客鉄道", "駅名": "新山口" }, "geometry": { "type": "Point", "coordinates": [ 131.39907, 34.09434 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "1", "路線名": "山陽新幹線", "運営会社": "西日本旅客鉄道", "駅名": "新下関" }, "geometry": { "type": "Point", "coordinates": [ 130.94955, 34.00889 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "1", "路線名": "山陽新幹線", "運営会社": "西日本旅客鉄道", "駅名": "博多" }, "geometry": { "type": "Point", "coordinates": [ 130.42127, 33.59139 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "姫路" }, "geometry": { "type": "Point", "coordinates": [ 134.692862, 34.826493 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "宝殿" }, "geometry": { "type": "Point", "coordinates": [ 134.81368, 34.78421 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "土山" }, "geometry": { "type": "Point", "coordinates": [ 134.88964, 34.71925 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "東加古川" }, "geometry": { "type": "Point", "coordinates": [ 134.86995, 34.74495 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "ひめじ別所" }, "geometry": { "type": "Point", "coordinates": [ 134.75191, 34.80626 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "神戸" }, "geometry": { "type": "Point", "coordinates": [ 135.17838, 34.68057 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "加古川" }, "geometry": { "type": "Point", "coordinates": [ 134.84042, 34.76665 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "西明石" }, "geometry": { "type": "Point", "coordinates": [ 134.9608, 34.66547 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "網干" }, "geometry": { "type": "Point", "coordinates": [ 134.58598, 34.81396 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "兵庫" }, "geometry": { "type": "Point", "coordinates": [ 135.16477366000001, 34.6680001 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "英賀保" }, "geometry": { "type": "Point", "coordinates": [ 134.646, 34.81393 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "魚住" }, "geometry": { "type": "Point", "coordinates": [ 134.90701, 34.69554 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "兵庫" }, "geometry": { "type": "Point", "coordinates": [ 135.16575, 34.6687 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "曽根" }, "geometry": { "type": "Point", "coordinates": [ 134.77086, 34.79287 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "御着" }, "geometry": { "type": "Point", "coordinates": [ 134.7365, 34.81626 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "大久保" }, "geometry": { "type": "Point", "coordinates": [ 134.94025, 34.68119 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "和田岬" }, "geometry": { "type": "Point", "coordinates": [ 135.17442, 34.65722 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "垂水" }, "geometry": { "type": "Point", "coordinates": [ 135.05475, 34.62916 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "新長田" }, "geometry": { "type": "Point", "coordinates": [ 135.14655, 34.65825 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "明石" }, "geometry": { "type": "Point", "coordinates": [ 134.99456, 34.64888 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "舞子" }, "geometry": { "type": "Point", "coordinates": [ 135.03479, 34.63281 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "朝霧" }, "geometry": { "type": "Point", "coordinates": [ 135.01819, 34.64402 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "塩屋" }, "geometry": { "type": "Point", "coordinates": [ 135.08412, 34.63388 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "鷹取" }, "geometry": { "type": "Point", "coordinates": [ 135.13682, 34.65257 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "須磨" }, "geometry": { "type": "Point", "coordinates": [ 135.1141, 34.64253 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "相生" }, "geometry": { "type": "Point", "coordinates": [ 134.47571, 34.81786 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "三石" }, "geometry": { "type": "Point", "coordinates": [ 134.27571, 34.80429 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "和気" }, "geometry": { "type": "Point", "coordinates": [ 134.1518, 34.79659 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "吉永" }, "geometry": { "type": "Point", "coordinates": [ 134.20587, 34.81218 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "竜野" }, "geometry": { "type": "Point", "coordinates": [ 134.52265, 34.82555 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "有年" }, "geometry": { "type": "Point", "coordinates": [ 134.39734, 34.82944 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "上郡" }, "geometry": { "type": "Point", "coordinates": [ 134.35235, 34.86648 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "瀬戸" }, "geometry": { "type": "Point", "coordinates": [ 134.04135, 34.73339 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "熊山" }, "geometry": { "type": "Point", "coordinates": [ 134.10923, 34.78247 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "万富" }, "geometry": { "type": "Point", "coordinates": [ 134.07926, 34.75746 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "倉敷" }, "geometry": { "type": "Point", "coordinates": [ 133.76653, 34.60246 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "上道" }, "geometry": { "type": "Point", "coordinates": [ 134.02023, 34.69909 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "庭瀬" }, "geometry": { "type": "Point", "coordinates": [ 133.85562, 34.64326 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "東岡山" }, "geometry": { "type": "Point", "coordinates": [ 133.98599, 34.68548 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "中庄" }, "geometry": { "type": "Point", "coordinates": [ 133.8096, 34.62694 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "倉敷" }, "geometry": { "type": "Point", "coordinates": [ 133.76662, 34.60237 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "高島" }, "geometry": { "type": "Point", "coordinates": [ 133.95868, 34.68303 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "北長瀬" }, "geometry": { "type": "Point", "coordinates": [ 133.88554, 34.65317 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "岡山" }, "geometry": { "type": "Point", "coordinates": [ 133.91922, 34.66836 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "福山" }, "geometry": { "type": "Point", "coordinates": [ 133.36356, 34.48958 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "西条" }, "geometry": { "type": "Point", "coordinates": [ 132.74545, 34.43167 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "三原" }, "geometry": { "type": "Point", "coordinates": [ 133.08457, 34.40058 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "金光" }, "geometry": { "type": "Point", "coordinates": [ 133.62001, 34.54074 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "尾道" }, "geometry": { "type": "Point", "coordinates": [ 133.19147, 34.40438 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "鴨方" }, "geometry": { "type": "Point", "coordinates": [ 133.58672, 34.52676 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "里庄" }, "geometry": { "type": "Point", "coordinates": [ 133.54964, 34.50733 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "東福山" }, "geometry": { "type": "Point", "coordinates": [ 133.40788, 34.49552 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "東尾道" }, "geometry": { "type": "Point", "coordinates": [ 133.2334, 34.43532 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "備後赤坂" }, "geometry": { "type": "Point", "coordinates": [ 133.30722, 34.47289 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "新倉敷" }, "geometry": { "type": "Point", "coordinates": [ 133.6799, 34.56561 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "笠岡" }, "geometry": { "type": "Point", "coordinates": [ 133.50368, 34.50524 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "松永" }, "geometry": { "type": "Point", "coordinates": [ 133.26017, 34.45148 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "糸崎" }, "geometry": { "type": "Point", "coordinates": [ 133.1064, 34.39128 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "入野" }, "geometry": { "type": "Point", "coordinates": [ 132.85289, 34.46134 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "白市" }, "geometry": { "type": "Point", "coordinates": [ 132.83352, 34.44275 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "河内" }, "geometry": { "type": "Point", "coordinates": [ 132.88782, 34.4702 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "西高屋" }, "geometry": { "type": "Point", "coordinates": [ 132.78951, 34.44588 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "西阿知" }, "geometry": { "type": "Point", "coordinates": [ 133.72916, 34.58639 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "本郷" }, "geometry": { "type": "Point", "coordinates": [ 132.98864, 34.40918 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "大門" }, "geometry": { "type": "Point", "coordinates": [ 133.44153, 34.49809 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "海田市" }, "geometry": { "type": "Point", "coordinates": [ 132.52948, 34.37216 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "広島" }, "geometry": { "type": "Point", "coordinates": [ 132.47397, 34.39816 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "横川" }, "geometry": { "type": "Point", "coordinates": [ 132.44996, 34.4105 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "横川" }, "geometry": { "type": "Point", "coordinates": [ 132.44885, 34.41002 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "廿日市" }, "geometry": { "type": "Point", "coordinates": [ 132.3345, 34.35711 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "海田市" }, "geometry": { "type": "Point", "coordinates": [ 132.52953, 34.37234 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "玖波" }, "geometry": { "type": "Point", "coordinates": [ 132.22867, 34.25611 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "天神川" }, "geometry": { "type": "Point", "coordinates": [ 132.4966, 34.38997 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "前空" }, "geometry": { "type": "Point", "coordinates": [ 132.28966, 34.30146 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "向洋" }, "geometry": { "type": "Point", "coordinates": [ 132.50663, 34.37611 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "広島" }, "geometry": { "type": "Point", "coordinates": [ 132.47741, 34.39629 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "大竹" }, "geometry": { "type": "Point", "coordinates": [ 132.22381, 34.21637 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "中野東" }, "geometry": { "type": "Point", "coordinates": [ 132.57851, 34.40253 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "阿品" }, "geometry": { "type": "Point", "coordinates": [ 132.31413, 34.32283 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "宮内串戸" }, "geometry": { "type": "Point", "coordinates": [ 132.32376, 34.34808 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "西広島" }, "geometry": { "type": "Point", "coordinates": [ 132.427, 34.39731 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "八本松" }, "geometry": { "type": "Point", "coordinates": [ 132.68972, 34.44628 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "瀬野" }, "geometry": { "type": "Point", "coordinates": [ 132.59575, 34.42204 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "宮島口" }, "geometry": { "type": "Point", "coordinates": [ 132.30206, 34.31105 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "新井口" }, "geometry": { "type": "Point", "coordinates": [ 132.39055, 34.37484 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "大野浦" }, "geometry": { "type": "Point", "coordinates": [ 132.2661, 34.28458 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "安芸中野" }, "geometry": { "type": "Point", "coordinates": [ 132.56433, 34.39191 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "五日市" }, "geometry": { "type": "Point", "coordinates": [ 132.3663, 34.36651 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "櫛ヶ浜" }, "geometry": { "type": "Point", "coordinates": [ 131.82985, 34.03014 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "南岩国" }, "geometry": { "type": "Point", "coordinates": [ 132.20691, 34.13614 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "島田" }, "geometry": { "type": "Point", "coordinates": [ 131.96152, 33.9915 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "由宇" }, "geometry": { "type": "Point", "coordinates": [ 132.21339, 34.0445 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "下松" }, "geometry": { "type": "Point", "coordinates": [ 131.86864, 34.00802 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "新南陽" }, "geometry": { "type": "Point", "coordinates": [ 131.77129, 34.0692 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "福川" }, "geometry": { "type": "Point", "coordinates": [ 131.73986, 34.07222 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "大畠" }, "geometry": { "type": "Point", "coordinates": [ 132.18257, 33.96256 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "神代" }, "geometry": { "type": "Point", "coordinates": [ 132.21019, 33.9997 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "藤生" }, "geometry": { "type": "Point", "coordinates": [ 132.1983, 34.11379 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "岩国" }, "geometry": { "type": "Point", "coordinates": [ 132.22632, 34.17345 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "岩田" }, "geometry": { "type": "Point", "coordinates": [ 131.99546, 33.98108 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "柳井" }, "geometry": { "type": "Point", "coordinates": [ 132.10463, 33.96642 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "通津" }, "geometry": { "type": "Point", "coordinates": [ 132.20495, 34.06926 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "光" }, "geometry": { "type": "Point", "coordinates": [ 131.91655, 33.97403 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "徳山" }, "geometry": { "type": "Point", "coordinates": [ 131.80337, 34.0503 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "田布施" }, "geometry": { "type": "Point", "coordinates": [ 132.04224, 33.95875 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "柳井港" }, "geometry": { "type": "Point", "coordinates": [ 132.13618, 33.95798 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "戸田" }, "geometry": { "type": "Point", "coordinates": [ 131.70508, 34.07344 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "新山口" }, "geometry": { "type": "Point", "coordinates": [ 131.3975, 34.09471 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "厚狭" }, "geometry": { "type": "Point", "coordinates": [ 131.15913, 34.05417 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "小月" }, "geometry": { "type": "Point", "coordinates": [ 131.03391, 34.06837 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "富海" }, "geometry": { "type": "Point", "coordinates": [ 131.64026, 34.0488 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "埴生" }, "geometry": { "type": "Point", "coordinates": [ 131.08774, 34.04934 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "大道" }, "geometry": { "type": "Point", "coordinates": [ 131.48717, 34.05394 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "厚東" }, "geometry": { "type": "Point", "coordinates": [ 131.26932, 34.03891 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "本由良" }, "geometry": { "type": "Point", "coordinates": [ 131.3444, 34.03285 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "小野田" }, "geometry": { "type": "Point", "coordinates": [ 131.1843, 34.00803 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "長府" }, "geometry": { "type": "Point", "coordinates": [ 131.00015, 34.02021 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "幡生" }, "geometry": { "type": "Point", "coordinates": [ 130.92845, 33.98302 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "四辻" }, "geometry": { "type": "Point", "coordinates": [ 131.4467, 34.08087 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "防府" }, "geometry": { "type": "Point", "coordinates": [ 131.56805, 34.05325 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "下関" }, "geometry": { "type": "Point", "coordinates": [ 130.92233, 33.95029 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "新下関" }, "geometry": { "type": "Point", "coordinates": [ 130.94945, 34.00584 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "嘉川" }, "geometry": { "type": "Point", "coordinates": [ 131.37143, 34.06741 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "山陽線", "運営会社": "西日本旅客鉄道", "駅名": "宇部" }, "geometry": { "type": "Point", "coordinates": [ 131.22325, 34.00296 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "七尾線", "運営会社": "西日本旅客鉄道", "駅名": "七尾" }, "geometry": { "type": "Point", "coordinates": [ 136.96364, 37.04222 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "七尾線", "運営会社": "西日本旅客鉄道", "駅名": "能登部" }, "geometry": { "type": "Point", "coordinates": [ 136.87014, 36.96146 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "七尾線", "運営会社": "西日本旅客鉄道", "駅名": "和倉温泉" }, "geometry": { "type": "Point", "coordinates": [ 136.92509, 37.07497 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "七尾線", "運営会社": "西日本旅客鉄道", "駅名": "敷浪" }, "geometry": { "type": "Point", "coordinates": [ 136.77357, 36.84848 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "七尾線", "運営会社": "西日本旅客鉄道", "駅名": "羽咋" }, "geometry": { "type": "Point", "coordinates": [ 136.78331, 36.89792 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "七尾線", "運営会社": "西日本旅客鉄道", "駅名": "徳田" }, "geometry": { "type": "Point", "coordinates": [ 136.93082, 37.00799 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "七尾線", "運営会社": "西日本旅客鉄道", "駅名": "千路" }, "geometry": { "type": "Point", "coordinates": [ 136.80165, 36.92844 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "七尾線", "運営会社": "西日本旅客鉄道", "駅名": "宇野気" }, "geometry": { "type": "Point", "coordinates": [ 136.70339, 36.72339 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "七尾線", "運営会社": "西日本旅客鉄道", "駅名": "中津幡" }, "geometry": { "type": "Point", "coordinates": [ 136.74029, 36.67193 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "七尾線", "運営会社": "西日本旅客鉄道", "駅名": "良川" }, "geometry": { "type": "Point", "coordinates": [ 136.8953, 36.97688 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "七尾線", "運営会社": "西日本旅客鉄道", "駅名": "宝達" }, "geometry": { "type": "Point", "coordinates": [ 136.76238, 36.82059 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "七尾線", "運営会社": "西日本旅客鉄道", "駅名": "能瀬" }, "geometry": { "type": "Point", "coordinates": [ 136.7197, 36.69351 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "七尾線", "運営会社": "西日本旅客鉄道", "駅名": "免田" }, "geometry": { "type": "Point", "coordinates": [ 136.74721, 36.79519 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "七尾線", "運営会社": "西日本旅客鉄道", "駅名": "金丸" }, "geometry": { "type": "Point", "coordinates": [ 136.83668, 36.94347 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "七尾線", "運営会社": "西日本旅客鉄道", "駅名": "本津幡" }, "geometry": { "type": "Point", "coordinates": [ 136.73191, 36.6767 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "七尾線", "運営会社": "西日本旅客鉄道", "駅名": "横山" }, "geometry": { "type": "Point", "coordinates": [ 136.71718, 36.7483 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "七尾線", "運営会社": "西日本旅客鉄道", "駅名": "南羽咋" }, "geometry": { "type": "Point", "coordinates": [ 136.77494, 36.8712 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "七尾線", "運営会社": "西日本旅客鉄道", "駅名": "能登二宮" }, "geometry": { "type": "Point", "coordinates": [ 136.91783, 36.98508 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "七尾線", "運営会社": "西日本旅客鉄道", "駅名": "高松" }, "geometry": { "type": "Point", "coordinates": [ 136.72933, 36.76916 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "七尾線", "運営会社": "西日本旅客鉄道", "駅名": "津幡" }, "geometry": { "type": "Point", "coordinates": [ 136.73154, 36.65884 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "小浜線", "運営会社": "西日本旅客鉄道", "駅名": "敦賀" }, "geometry": { "type": "Point", "coordinates": [ 136.07518, 35.64361 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "小浜線", "運営会社": "西日本旅客鉄道", "駅名": "粟野" }, "geometry": { "type": "Point", "coordinates": [ 136.02838, 35.61682 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "小浜線", "運営会社": "西日本旅客鉄道", "駅名": "気山" }, "geometry": { "type": "Point", "coordinates": [ 135.90955, 35.5845 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "小浜線", "運営会社": "西日本旅客鉄道", "駅名": "東美浜" }, "geometry": { "type": "Point", "coordinates": [ 135.98631, 35.61428 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "小浜線", "運営会社": "西日本旅客鉄道", "駅名": "西敦賀" }, "geometry": { "type": "Point", "coordinates": [ 136.06811, 35.61833 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "小浜線", "運営会社": "西日本旅客鉄道", "駅名": "藤井" }, "geometry": { "type": "Point", "coordinates": [ 135.9062, 35.53171 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "小浜線", "運営会社": "西日本旅客鉄道", "駅名": "若狭有田" }, "geometry": { "type": "Point", "coordinates": [ 135.86823, 35.48502 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "小浜線", "運営会社": "西日本旅客鉄道", "駅名": "大鳥羽" }, "geometry": { "type": "Point", "coordinates": [ 135.8667, 35.50543 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "小浜線", "運営会社": "西日本旅客鉄道", "駅名": "上中" }, "geometry": { "type": "Point", "coordinates": [ 135.85508, 35.4638 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "小浜線", "運営会社": "西日本旅客鉄道", "駅名": "三方" }, "geometry": { "type": "Point", "coordinates": [ 135.9095, 35.5548 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "小浜線", "運営会社": "西日本旅客鉄道", "駅名": "美浜" }, "geometry": { "type": "Point", "coordinates": [ 135.93751, 35.60549 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "小浜線", "運営会社": "西日本旅客鉄道", "駅名": "十村" }, "geometry": { "type": "Point", "coordinates": [ 135.89608, 35.51559 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "小浜線", "運営会社": "西日本旅客鉄道", "駅名": "松尾寺" }, "geometry": { "type": "Point", "coordinates": [ 135.4513, 35.48604 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "小浜線", "運営会社": "西日本旅客鉄道", "駅名": "若狭本郷" }, "geometry": { "type": "Point", "coordinates": [ 135.61984, 35.48265 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "小浜線", "運営会社": "西日本旅客鉄道", "駅名": "青郷" }, "geometry": { "type": "Point", "coordinates": [ 135.50047, 35.4818 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "小浜線", "運営会社": "西日本旅客鉄道", "駅名": "若狭高浜" }, "geometry": { "type": "Point", "coordinates": [ 135.54887, 35.4861 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "小浜線", "運営会社": "西日本旅客鉄道", "駅名": "小浜" }, "geometry": { "type": "Point", "coordinates": [ 135.74464, 35.4918 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "小浜線", "運営会社": "西日本旅客鉄道", "駅名": "東舞鶴" }, "geometry": { "type": "Point", "coordinates": [ 135.39545, 35.46918 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "小浜線", "運営会社": "西日本旅客鉄道", "駅名": "東小浜" }, "geometry": { "type": "Point", "coordinates": [ 135.78033, 35.48536 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "小浜線", "運営会社": "西日本旅客鉄道", "駅名": "三松" }, "geometry": { "type": "Point", "coordinates": [ 135.52095, 35.48873 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "小浜線", "運営会社": "西日本旅客鉄道", "駅名": "勢浜" }, "geometry": { "type": "Point", "coordinates": [ 135.70762, 35.48127 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "小浜線", "運営会社": "西日本旅客鉄道", "駅名": "加斗" }, "geometry": { "type": "Point", "coordinates": [ 135.66531, 35.48062 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "小浜線", "運営会社": "西日本旅客鉄道", "駅名": "若狭和田" }, "geometry": { "type": "Point", "coordinates": [ 135.58251, 35.48863 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "小浜線", "運営会社": "西日本旅客鉄道", "駅名": "新平野" }, "geometry": { "type": "Point", "coordinates": [ 135.80645, 35.47322 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "小野田線", "運営会社": "西日本旅客鉄道", "駅名": "小野田" }, "geometry": { "type": "Point", "coordinates": [ 131.1843, 34.00803 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "小野田線", "運営会社": "西日本旅客鉄道", "駅名": "妻崎" }, "geometry": { "type": "Point", "coordinates": [ 131.2032, 33.97051 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "小野田線", "運営会社": "西日本旅客鉄道", "駅名": "浜河内" }, "geometry": { "type": "Point", "coordinates": [ 131.17984, 33.95082 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "小野田線", "運営会社": "西日本旅客鉄道", "駅名": "南小野田" }, "geometry": { "type": "Point", "coordinates": [ 131.17496, 33.97774 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "小野田線", "運営会社": "西日本旅客鉄道", "駅名": "雀田" }, "geometry": { "type": "Point", "coordinates": [ 131.18642, 33.96044 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "小野田線", "運営会社": "西日本旅客鉄道", "駅名": "雀田" }, "geometry": { "type": "Point", "coordinates": [ 131.18729, 33.96093 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "小野田線", "運営会社": "西日本旅客鉄道", "駅名": "長門長沢" }, "geometry": { "type": "Point", "coordinates": [ 131.19701, 33.96677 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "小野田線", "運営会社": "西日本旅客鉄道", "駅名": "長門本山" }, "geometry": { "type": "Point", "coordinates": [ 131.17348, 33.94333 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "小野田線", "運営会社": "西日本旅客鉄道", "駅名": "居能" }, "geometry": { "type": "Point", "coordinates": [ 131.22826, 33.96602 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "小野田線", "運営会社": "西日本旅客鉄道", "駅名": "目出" }, "geometry": { "type": "Point", "coordinates": [ 131.18352, 33.99691 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "小野田線", "運営会社": "西日本旅客鉄道", "駅名": "南中川" }, "geometry": { "type": "Point", "coordinates": [ 131.17934, 33.98697 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "小野田線", "運営会社": "西日本旅客鉄道", "駅名": "小野田港" }, "geometry": { "type": "Point", "coordinates": [ 131.17498, 33.97202 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "城端線", "運営会社": "西日本旅客鉄道", "駅名": "林" }, "geometry": { "type": "Point", "coordinates": [ 136.99969, 36.70477 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "城端線", "運営会社": "西日本旅客鉄道", "駅名": "東野尻" }, "geometry": { "type": "Point", "coordinates": [ 136.94372, 36.61894 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "城端線", "運営会社": "西日本旅客鉄道", "駅名": "二塚" }, "geometry": { "type": "Point", "coordinates": [ 137.00628, 36.71465 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "城端線", "運営会社": "西日本旅客鉄道", "駅名": "戸出" }, "geometry": { "type": "Point", "coordinates": [ 136.98386, 36.68387 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "城端線", "運営会社": "西日本旅客鉄道", "駅名": "砺波" }, "geometry": { "type": "Point", "coordinates": [ 136.95393, 36.63679 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "城端線", "運営会社": "西日本旅客鉄道", "駅名": "油田" }, "geometry": { "type": "Point", "coordinates": [ 136.97064, 36.65565 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "城端線", "運営会社": "西日本旅客鉄道", "駅名": "東石黒" }, "geometry": { "type": "Point", "coordinates": [ 136.89908, 36.57647 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "城端線", "運営会社": "西日本旅客鉄道", "駅名": "福野" }, "geometry": { "type": "Point", "coordinates": [ 136.92371, 36.58864 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "城端線", "運営会社": "西日本旅客鉄道", "駅名": "越中山田" }, "geometry": { "type": "Point", "coordinates": [ 136.88708, 36.53888 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "城端線", "運営会社": "西日本旅客鉄道", "駅名": "城端" }, "geometry": { "type": "Point", "coordinates": [ 136.90093, 36.52274 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "城端線", "運営会社": "西日本旅客鉄道", "駅名": "高儀" }, "geometry": { "type": "Point", "coordinates": [ 136.93622, 36.60689 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "城端線", "運営会社": "西日本旅客鉄道", "駅名": "福光" }, "geometry": { "type": "Point", "coordinates": [ 136.87943, 36.55884 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "城端線", "運営会社": "西日本旅客鉄道", "駅名": "高岡" }, "geometry": { "type": "Point", "coordinates": [ 137.01574, 36.74074 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "赤穂線", "運営会社": "西日本旅客鉄道", "駅名": "西片上" }, "geometry": { "type": "Point", "coordinates": [ 134.18497, 34.74542 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "赤穂線", "運営会社": "西日本旅客鉄道", "駅名": "天和" }, "geometry": { "type": "Point", "coordinates": [ 134.3508, 34.74882 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "赤穂線", "運営会社": "西日本旅客鉄道", "駅名": "伊里" }, "geometry": { "type": "Point", "coordinates": [ 134.22466, 34.74101 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "赤穂線", "運営会社": "西日本旅客鉄道", "駅名": "香登" }, "geometry": { "type": "Point", "coordinates": [ 134.12084, 34.72812 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "赤穂線", "運営会社": "西日本旅客鉄道", "駅名": "日生" }, "geometry": { "type": "Point", "coordinates": [ 134.27751, 34.73498 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "赤穂線", "運営会社": "西日本旅客鉄道", "駅名": "播州赤穂" }, "geometry": { "type": "Point", "coordinates": [ 134.39136, 34.75661 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "赤穂線", "運営会社": "西日本旅客鉄道", "駅名": "伊部" }, "geometry": { "type": "Point", "coordinates": [ 134.16187, 34.73876 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "赤穂線", "運営会社": "西日本旅客鉄道", "駅名": "備前片上" }, "geometry": { "type": "Point", "coordinates": [ 134.19767, 34.74846 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "赤穂線", "運営会社": "西日本旅客鉄道", "駅名": "備前福河" }, "geometry": { "type": "Point", "coordinates": [ 134.33263, 34.74666 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "赤穂線", "運営会社": "西日本旅客鉄道", "駅名": "西相生" }, "geometry": { "type": "Point", "coordinates": [ 134.45006, 34.8009 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "赤穂線", "運営会社": "西日本旅客鉄道", "駅名": "坂越" }, "geometry": { "type": "Point", "coordinates": [ 134.41669, 34.76817 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "赤穂線", "運営会社": "西日本旅客鉄道", "駅名": "相生" }, "geometry": { "type": "Point", "coordinates": [ 134.47571, 34.81786 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "赤穂線", "運営会社": "西日本旅客鉄道", "駅名": "寒河" }, "geometry": { "type": "Point", "coordinates": [ 134.29809, 34.74632 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "赤穂線", "運営会社": "西日本旅客鉄道", "駅名": "東岡山" }, "geometry": { "type": "Point", "coordinates": [ 133.98599, 34.68548 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "赤穂線", "運営会社": "西日本旅客鉄道", "駅名": "長船" }, "geometry": { "type": "Point", "coordinates": [ 134.09809, 34.69861 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "赤穂線", "運営会社": "西日本旅客鉄道", "駅名": "邑久" }, "geometry": { "type": "Point", "coordinates": [ 134.09143, 34.66904 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "赤穂線", "運営会社": "西日本旅客鉄道", "駅名": "西大寺" }, "geometry": { "type": "Point", "coordinates": [ 134.03584, 34.66181 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "赤穂線", "運営会社": "西日本旅客鉄道", "駅名": "大富" }, "geometry": { "type": "Point", "coordinates": [ 134.07151, 34.66154 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "赤穂線", "運営会社": "西日本旅客鉄道", "駅名": "大多羅" }, "geometry": { "type": "Point", "coordinates": [ 134.00596, 34.6657 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "草津線", "運営会社": "西日本旅客鉄道", "駅名": "草津" }, "geometry": { "type": "Point", "coordinates": [ 135.96166, 35.02201 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "草津線", "運営会社": "西日本旅客鉄道", "駅名": "三雲" }, "geometry": { "type": "Point", "coordinates": [ 136.11666, 34.98311 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "草津線", "運営会社": "西日本旅客鉄道", "駅名": "甲西" }, "geometry": { "type": "Point", "coordinates": [ 136.08127, 35.00124 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "草津線", "運営会社": "西日本旅客鉄道", "駅名": "手原" }, "geometry": { "type": "Point", "coordinates": [ 135.99902, 35.02741 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "草津線", "運営会社": "西日本旅客鉄道", "駅名": "草津" }, "geometry": { "type": "Point", "coordinates": [ 135.96064, 35.02155 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "草津線", "運営会社": "西日本旅客鉄道", "駅名": "石部" }, "geometry": { "type": "Point", "coordinates": [ 136.05226, 35.01818 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "草津線", "運営会社": "西日本旅客鉄道", "駅名": "貴生川" }, "geometry": { "type": "Point", "coordinates": [ 136.15255, 34.95264 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "草津線", "運営会社": "西日本旅客鉄道", "駅名": "甲賀" }, "geometry": { "type": "Point", "coordinates": [ 136.2136, 34.90074 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "草津線", "運営会社": "西日本旅客鉄道", "駅名": "甲南" }, "geometry": { "type": "Point", "coordinates": [ 136.1685, 34.93233 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "草津線", "運営会社": "西日本旅客鉄道", "駅名": "油日" }, "geometry": { "type": "Point", "coordinates": [ 136.23014, 34.88912 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "草津線", "運営会社": "西日本旅客鉄道", "駅名": "寺庄" }, "geometry": { "type": "Point", "coordinates": [ 136.18637, 34.91875 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "草津線", "運営会社": "西日本旅客鉄道", "駅名": "柘植" }, "geometry": { "type": "Point", "coordinates": [ 136.25659, 34.84601 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "大阪環状線", "運営会社": "西日本旅客鉄道", "駅名": "桜ノ宮" }, "geometry": { "type": "Point", "coordinates": [ 135.52163, 34.7052 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "大阪環状線", "運営会社": "西日本旅客鉄道", "駅名": "大正" }, "geometry": { "type": "Point", "coordinates": [ 135.47903, 34.66587 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "大阪環状線", "運営会社": "西日本旅客鉄道", "駅名": "玉造" }, "geometry": { "type": "Point", "coordinates": [ 135.53271, 34.67273 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "大阪環状線", "運営会社": "西日本旅客鉄道", "駅名": "芦原橋" }, "geometry": { "type": "Point", "coordinates": [ 135.48964, 34.65814 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "大阪環状線", "運営会社": "西日本旅客鉄道", "駅名": "野田" }, "geometry": { "type": "Point", "coordinates": [ 135.47567, 34.6895 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "大阪環状線", "運営会社": "西日本旅客鉄道", "駅名": "鶴橋" }, "geometry": { "type": "Point", "coordinates": [ 135.5307, 34.66679 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "大阪環状線", "運営会社": "西日本旅客鉄道", "駅名": "弁天町" }, "geometry": { "type": "Point", "coordinates": [ 135.46157, 34.67076 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "大阪環状線", "運営会社": "西日本旅客鉄道", "駅名": "西九条" }, "geometry": { "type": "Point", "coordinates": [ 135.46765, 34.68342 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "大阪環状線", "運営会社": "西日本旅客鉄道", "駅名": "大阪城公園" }, "geometry": { "type": "Point", "coordinates": [ 135.53427, 34.68688 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "大阪環状線", "運営会社": "西日本旅客鉄道", "駅名": "福島" }, "geometry": { "type": "Point", "coordinates": [ 135.48736, 34.69757 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "大阪環状線", "運営会社": "西日本旅客鉄道", "駅名": "京橋" }, "geometry": { "type": "Point", "coordinates": [ 135.53358, 34.69761 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "大阪環状線", "運営会社": "西日本旅客鉄道", "駅名": "天満" }, "geometry": { "type": "Point", "coordinates": [ 135.51317, 34.70443 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "大阪環状線", "運営会社": "西日本旅客鉄道", "駅名": "大阪" }, "geometry": { "type": "Point", "coordinates": [ 135.49719, 34.70289 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "大阪環状線", "運営会社": "西日本旅客鉄道", "駅名": "森ノ宮" }, "geometry": { "type": "Point", "coordinates": [ 135.53408, 34.67983 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "大阪環状線", "運営会社": "西日本旅客鉄道", "駅名": "桃谷" }, "geometry": { "type": "Point", "coordinates": [ 135.52823, 34.65925 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "大阪環状線", "運営会社": "西日本旅客鉄道", "駅名": "今宮" }, "geometry": { "type": "Point", "coordinates": [ 135.49235, 34.65467 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "大阪環状線", "運営会社": "西日本旅客鉄道", "駅名": "寺田町" }, "geometry": { "type": "Point", "coordinates": [ 135.52401, 34.64833 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "大阪環状線", "運営会社": "西日本旅客鉄道", "駅名": "新今宮" }, "geometry": { "type": "Point", "coordinates": [ 135.50292, 34.64962 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "大阪環状線", "運営会社": "西日本旅客鉄道", "駅名": "天王寺" }, "geometry": { "type": "Point", "coordinates": [ 135.51602, 34.64665 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "大糸線", "運営会社": "西日本旅客鉄道", "駅名": "中土" }, "geometry": { "type": "Point", "coordinates": [ 137.90815, 36.80538 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "大糸線", "運営会社": "西日本旅客鉄道", "駅名": "南小谷" }, "geometry": { "type": "Point", "coordinates": [ 137.90894, 36.77527 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "大糸線", "運営会社": "西日本旅客鉄道", "駅名": "北小谷" }, "geometry": { "type": "Point", "coordinates": [ 137.90645, 36.84288 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "大糸線", "運営会社": "西日本旅客鉄道", "駅名": "小滝" }, "geometry": { "type": "Point", "coordinates": [ 137.85986, 36.93803 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "大糸線", "運営会社": "西日本旅客鉄道", "駅名": "根知" }, "geometry": { "type": "Point", "coordinates": [ 137.86702, 36.96633 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "大糸線", "運営会社": "西日本旅客鉄道", "駅名": "平岩" }, "geometry": { "type": "Point", "coordinates": [ 137.86539, 36.88722 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "大糸線", "運営会社": "西日本旅客鉄道", "駅名": "姫川" }, "geometry": { "type": "Point", "coordinates": [ 137.86067, 37.02065 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "大糸線", "運営会社": "西日本旅客鉄道", "駅名": "頸城大野" }, "geometry": { "type": "Point", "coordinates": [ 137.87266, 37.00581 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "大糸線", "運営会社": "西日本旅客鉄道", "駅名": "糸魚川" }, "geometry": { "type": "Point", "coordinates": [ 137.86409, 37.04423 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "津山線", "運営会社": "西日本旅客鉄道", "駅名": "津山" }, "geometry": { "type": "Point", "coordinates": [ 134.00244, 35.05437 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "津山線", "運営会社": "西日本旅客鉄道", "駅名": "佐良山" }, "geometry": { "type": "Point", "coordinates": [ 133.96126, 35.0324 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "津山線", "運営会社": "西日本旅客鉄道", "駅名": "金川" }, "geometry": { "type": "Point", "coordinates": [ 133.93367, 34.7926 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "津山線", "運営会社": "西日本旅客鉄道", "駅名": "亀甲" }, "geometry": { "type": "Point", "coordinates": [ 133.95878, 34.999 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "津山線", "運営会社": "西日本旅客鉄道", "駅名": "津山口" }, "geometry": { "type": "Point", "coordinates": [ 133.98357, 35.05469 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "津山線", "運営会社": "西日本旅客鉄道", "駅名": "弓削" }, "geometry": { "type": "Point", "coordinates": [ 133.95729, 34.92516 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "津山線", "運営会社": "西日本旅客鉄道", "駅名": "建部" }, "geometry": { "type": "Point", "coordinates": [ 133.89944, 34.84276 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "津山線", "運営会社": "西日本旅客鉄道", "駅名": "神目" }, "geometry": { "type": "Point", "coordinates": [ 133.93596, 34.89676 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "津山線", "運営会社": "西日本旅客鉄道", "駅名": "玉柏" }, "geometry": { "type": "Point", "coordinates": [ 133.96377, 34.7167 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "津山線", "運営会社": "西日本旅客鉄道", "駅名": "小原" }, "geometry": { "type": "Point", "coordinates": [ 133.96204, 34.96857 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "津山線", "運営会社": "西日本旅客鉄道", "駅名": "牧山" }, "geometry": { "type": "Point", "coordinates": [ 133.96076, 34.74078 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "津山線", "運営会社": "西日本旅客鉄道", "駅名": "福渡" }, "geometry": { "type": "Point", "coordinates": [ 133.9038, 34.87077 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "津山線", "運営会社": "西日本旅客鉄道", "駅名": "誕生寺" }, "geometry": { "type": "Point", "coordinates": [ 133.95903, 34.95211 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "津山線", "運営会社": "西日本旅客鉄道", "駅名": "野々口" }, "geometry": { "type": "Point", "coordinates": [ 133.9324, 34.77141 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "津山線", "運営会社": "西日本旅客鉄道", "駅名": "法界院" }, "geometry": { "type": "Point", "coordinates": [ 133.92775, 34.68513 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "津山線", "運営会社": "西日本旅客鉄道", "駅名": "岡山" }, "geometry": { "type": "Point", "coordinates": [ 133.91902, 34.66843 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "津山線", "運営会社": "西日本旅客鉄道", "駅名": "備前原" }, "geometry": { "type": "Point", "coordinates": [ 133.9445, 34.70452 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "東海道線", "運営会社": "西日本旅客鉄道", "駅名": "米原" }, "geometry": { "type": "Point", "coordinates": [ 136.289841, 35.313891 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "東海道線", "運営会社": "西日本旅客鉄道", "駅名": "米原" }, "geometry": { "type": "Point", "coordinates": [ 136.28993, 35.315 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "東海道線", "運営会社": "西日本旅客鉄道", "駅名": "大津" }, "geometry": { "type": "Point", "coordinates": [ 135.86679, 35.00286 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "東海道線", "運営会社": "西日本旅客鉄道", "駅名": "野洲" }, "geometry": { "type": "Point", "coordinates": [ 136.02365, 35.06935 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "東海道線", "運営会社": "西日本旅客鉄道", "駅名": "河瀬" }, "geometry": { "type": "Point", "coordinates": [ 136.22431, 35.22448 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "東海道線", "運営会社": "西日本旅客鉄道", "駅名": "稲枝" }, "geometry": { "type": "Point", "coordinates": [ 136.19596, 35.2043 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "東海道線", "運営会社": "西日本旅客鉄道", "駅名": "安土" }, "geometry": { "type": "Point", "coordinates": [ 136.13486, 35.14319 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "東海道線", "運営会社": "西日本旅客鉄道", "駅名": "守山" }, "geometry": { "type": "Point", "coordinates": [ 135.99488, 35.04965 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "東海道線", "運営会社": "西日本旅客鉄道", "駅名": "石山" }, "geometry": { "type": "Point", "coordinates": [ 135.89935, 34.97996 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "東海道線", "運営会社": "西日本旅客鉄道", "駅名": "近江八幡" }, "geometry": { "type": "Point", "coordinates": [ 136.10358, 35.12342 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "東海道線", "運営会社": "西日本旅客鉄道", "駅名": "山科" }, "geometry": { "type": "Point", "coordinates": [ 135.8181, 34.99264 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "東海道線", "運営会社": "西日本旅客鉄道", "駅名": "瀬田" }, "geometry": { "type": "Point", "coordinates": [ 135.92696, 34.98798 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "東海道線", "運営会社": "西日本旅客鉄道", "駅名": "膳所" }, "geometry": { "type": "Point", "coordinates": [ 135.88146, 34.9987 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "東海道線", "運営会社": "西日本旅客鉄道", "駅名": "彦根" }, "geometry": { "type": "Point", "coordinates": [ 136.26315, 35.2714 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "東海道線", "運営会社": "西日本旅客鉄道", "駅名": "南草津" }, "geometry": { "type": "Point", "coordinates": [ 135.94675, 35.00303 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "東海道線", "運営会社": "西日本旅客鉄道", "駅名": "草津" }, "geometry": { "type": "Point", "coordinates": [ 135.96166, 35.02201 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "東海道線", "運営会社": "西日本旅客鉄道", "駅名": "能登川" }, "geometry": { "type": "Point", "coordinates": [ 136.16696, 35.18078 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "東海道線", "運営会社": "西日本旅客鉄道", "駅名": "南彦根" }, "geometry": { "type": "Point", "coordinates": [ 136.24879, 35.24679 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "東海道線", "運営会社": "西日本旅客鉄道", "駅名": "篠原" }, "geometry": { "type": "Point", "coordinates": [ 136.07311, 35.10006 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "東海道線", "運営会社": "西日本旅客鉄道", "駅名": "栗東" }, "geometry": { "type": "Point", "coordinates": [ 135.97927, 35.03679 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "東海道線", "運営会社": "西日本旅客鉄道", "駅名": "京都" }, "geometry": { "type": "Point", "coordinates": [ 135.76104, 34.98568 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "東海道線", "運営会社": "西日本旅客鉄道", "駅名": "西大路" }, "geometry": { "type": "Point", "coordinates": [ 135.73231, 34.98142 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "東海道線", "運営会社": "西日本旅客鉄道", "駅名": "向日町" }, "geometry": { "type": "Point", "coordinates": [ 135.70981, 34.95577 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "東海道線", "運営会社": "西日本旅客鉄道", "駅名": "山崎" }, "geometry": { "type": "Point", "coordinates": [ 135.68029, 34.89258 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "東海道線", "運営会社": "西日本旅客鉄道", "駅名": "長岡京" }, "geometry": { "type": "Point", "coordinates": [ 135.70139, 34.92455 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "東海道線", "運営会社": "西日本旅客鉄道", "駅名": "高槻" }, "geometry": { "type": "Point", "coordinates": [ 135.61853, 34.852 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "東海道線", "運営会社": "西日本旅客鉄道", "駅名": "摂津富田" }, "geometry": { "type": "Point", "coordinates": [ 135.59421, 34.83819 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "東海道線", "運営会社": "西日本旅客鉄道", "駅名": "千里丘" }, "geometry": { "type": "Point", "coordinates": [ 135.55178, 34.79209 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "東海道線", "運営会社": "西日本旅客鉄道", "駅名": "新大阪" }, "geometry": { "type": "Point", "coordinates": [ 135.50174, 34.73269 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "東海道線", "運営会社": "西日本旅客鉄道", "駅名": "大阪" }, "geometry": { "type": "Point", "coordinates": [ 135.49675, 34.7033 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "東海道線", "運営会社": "西日本旅客鉄道", "駅名": "大阪" }, "geometry": { "type": "Point", "coordinates": [ 135.49322, 34.70169 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "東海道線", "運営会社": "西日本旅客鉄道", "駅名": "吹田" }, "geometry": { "type": "Point", "coordinates": [ 135.52458, 34.76399 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "東海道線", "運営会社": "西日本旅客鉄道", "駅名": "大阪" }, "geometry": { "type": "Point", "coordinates": [ 135.4969, 34.70306 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "東海道線", "運営会社": "西日本旅客鉄道", "駅名": "大阪" }, "geometry": { "type": "Point", "coordinates": [ 135.49329, 34.70159 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "東海道線", "運営会社": "西日本旅客鉄道", "駅名": "東淀川" }, "geometry": { "type": "Point", "coordinates": [ 135.50437, 34.74002 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "東海道線", "運営会社": "西日本旅客鉄道", "駅名": "岸辺" }, "geometry": { "type": "Point", "coordinates": [ 135.54195, 34.7774 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "東海道線", "運営会社": "西日本旅客鉄道", "駅名": "塚本" }, "geometry": { "type": "Point", "coordinates": [ 135.4685, 34.71317 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "東海道線", "運営会社": "西日本旅客鉄道", "駅名": "茨木" }, "geometry": { "type": "Point", "coordinates": [ 135.56289, 34.81608 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "東海道線", "運営会社": "西日本旅客鉄道", "駅名": "摂津本山" }, "geometry": { "type": "Point", "coordinates": [ 135.27843, 34.72702 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "東海道線", "運営会社": "西日本旅客鉄道", "駅名": "西宮" }, "geometry": { "type": "Point", "coordinates": [ 135.35028, 34.73901 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "東海道線", "運営会社": "西日本旅客鉄道", "駅名": "住吉" }, "geometry": { "type": "Point", "coordinates": [ 135.26356, 34.71997 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "東海道線", "運営会社": "西日本旅客鉄道", "駅名": "甲南山手" }, "geometry": { "type": "Point", "coordinates": [ 135.29352, 34.73088 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "東海道線", "運営会社": "西日本旅客鉄道", "駅名": "尼崎" }, "geometry": { "type": "Point", "coordinates": [ 135.43066, 34.73204 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "東海道線", "運営会社": "西日本旅客鉄道", "駅名": "立花" }, "geometry": { "type": "Point", "coordinates": [ 135.39884, 34.73803 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "東海道線", "運営会社": "西日本旅客鉄道", "駅名": "芦屋" }, "geometry": { "type": "Point", "coordinates": [ 135.30885, 34.73453 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "東海道線", "運営会社": "西日本旅客鉄道", "駅名": "甲子園口" }, "geometry": { "type": "Point", "coordinates": [ 135.37339, 34.73905 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "東海道線", "運営会社": "西日本旅客鉄道", "駅名": "神戸" }, "geometry": { "type": "Point", "coordinates": [ 135.17838, 34.68057 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "東海道線", "運営会社": "西日本旅客鉄道", "駅名": "六甲道" }, "geometry": { "type": "Point", "coordinates": [ 135.23905, 34.71525 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "東海道線", "運営会社": "西日本旅客鉄道", "駅名": "灘" }, "geometry": { "type": "Point", "coordinates": [ 135.21733, 34.70606 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "東海道線", "運営会社": "西日本旅客鉄道", "駅名": "元町" }, "geometry": { "type": "Point", "coordinates": [ 135.18854, 34.69014 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "東海道線", "運営会社": "西日本旅客鉄道", "駅名": "三ノ宮" }, "geometry": { "type": "Point", "coordinates": [ 135.19633, 34.69603 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "奈良線", "運営会社": "西日本旅客鉄道", "駅名": "京都" }, "geometry": { "type": "Point", "coordinates": [ 135.76116, 34.98521 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "奈良線", "運営会社": "西日本旅客鉄道", "駅名": "東福寺" }, "geometry": { "type": "Point", "coordinates": [ 135.76985, 34.98093 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "奈良線", "運営会社": "西日本旅客鉄道", "駅名": "木津" }, "geometry": { "type": "Point", "coordinates": [ 135.82465, 34.73433 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "奈良線", "運営会社": "西日本旅客鉄道", "駅名": "新田" }, "geometry": { "type": "Point", "coordinates": [ 135.7807, 34.87385 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "奈良線", "運営会社": "西日本旅客鉄道", "駅名": "木幡" }, "geometry": { "type": "Point", "coordinates": [ 135.79882, 34.92424 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "奈良線", "運営会社": "西日本旅客鉄道", "駅名": "六地蔵" }, "geometry": { "type": "Point", "coordinates": [ 135.7979, 34.9326 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "奈良線", "運営会社": "西日本旅客鉄道", "駅名": "玉水" }, "geometry": { "type": "Point", "coordinates": [ 135.80698, 34.80014 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "奈良線", "運営会社": "西日本旅客鉄道", "駅名": "JR小倉" }, "geometry": { "type": "Point", "coordinates": [ 135.78557, 34.88895 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "奈良線", "運営会社": "西日本旅客鉄道", "駅名": "JR藤森" }, "geometry": { "type": "Point", "coordinates": [ 135.77528, 34.94736 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "奈良線", "運営会社": "西日本旅客鉄道", "駅名": "上狛" }, "geometry": { "type": "Point", "coordinates": [ 135.82153, 34.7499 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "奈良線", "運営会社": "西日本旅客鉄道", "駅名": "棚倉" }, "geometry": { "type": "Point", "coordinates": [ 135.816, 34.77427 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "奈良線", "運営会社": "西日本旅客鉄道", "駅名": "宇治" }, "geometry": { "type": "Point", "coordinates": [ 135.80021, 34.89008 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "奈良線", "運営会社": "西日本旅客鉄道", "駅名": "山城多賀" }, "geometry": { "type": "Point", "coordinates": [ 135.8064, 34.81724 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "奈良線", "運営会社": "西日本旅客鉄道", "駅名": "城陽" }, "geometry": { "type": "Point", "coordinates": [ 135.78134, 34.85513 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "奈良線", "運営会社": "西日本旅客鉄道", "駅名": "桃山" }, "geometry": { "type": "Point", "coordinates": [ 135.77291, 34.93234 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "奈良線", "運営会社": "西日本旅客鉄道", "駅名": "黄檗" }, "geometry": { "type": "Point", "coordinates": [ 135.80387, 34.91227 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "奈良線", "運営会社": "西日本旅客鉄道", "駅名": "稲荷" }, "geometry": { "type": "Point", "coordinates": [ 135.77091, 34.96621 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "奈良線", "運営会社": "西日本旅客鉄道", "駅名": "長池" }, "geometry": { "type": "Point", "coordinates": [ 135.79036, 34.84214 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "奈良線", "運営会社": "西日本旅客鉄道", "駅名": "山城青谷" }, "geometry": { "type": "Point", "coordinates": [ 135.80043, 34.82787 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "播但線", "運営会社": "西日本旅客鉄道", "駅名": "鶴居" }, "geometry": { "type": "Point", "coordinates": [ 134.75456, 35.02301 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "播但線", "運営会社": "西日本旅客鉄道", "駅名": "新井" }, "geometry": { "type": "Point", "coordinates": [ 134.79544, 35.23714 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "播但線", "運営会社": "西日本旅客鉄道", "駅名": "新野" }, "geometry": { "type": "Point", "coordinates": [ 134.75286, 35.04991 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "播但線", "運営会社": "西日本旅客鉄道", "駅名": "寺前" }, "geometry": { "type": "Point", "coordinates": [ 134.74304, 35.06468 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "播但線", "運営会社": "西日本旅客鉄道", "駅名": "生野" }, "geometry": { "type": "Point", "coordinates": [ 134.78922, 35.16395 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "播但線", "運営会社": "西日本旅客鉄道", "駅名": "甘地" }, "geometry": { "type": "Point", "coordinates": [ 134.75831, 34.98848 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "播但線", "運営会社": "西日本旅客鉄道", "駅名": "青倉" }, "geometry": { "type": "Point", "coordinates": [ 134.812, 35.26736 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "播但線", "運営会社": "西日本旅客鉄道", "駅名": "和田山" }, "geometry": { "type": "Point", "coordinates": [ 134.85279, 35.34118 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "播但線", "運営会社": "西日本旅客鉄道", "駅名": "竹田" }, "geometry": { "type": "Point", "coordinates": [ 134.83613, 35.29989 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "播但線", "運営会社": "西日本旅客鉄道", "駅名": "長谷" }, "geometry": { "type": "Point", "coordinates": [ 134.74833, 35.11726 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "播但線", "運営会社": "西日本旅客鉄道", "駅名": "溝口" }, "geometry": { "type": "Point", "coordinates": [ 134.7427, 34.92828 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "播但線", "運営会社": "西日本旅客鉄道", "駅名": "野里" }, "geometry": { "type": "Point", "coordinates": [ 134.71066, 34.85583 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "播但線", "運営会社": "西日本旅客鉄道", "駅名": "京口" }, "geometry": { "type": "Point", "coordinates": [ 134.70522, 34.83406 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "播但線", "運営会社": "西日本旅客鉄道", "駅名": "香呂" }, "geometry": { "type": "Point", "coordinates": [ 134.73573, 34.91072 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "播但線", "運営会社": "西日本旅客鉄道", "駅名": "仁豊野" }, "geometry": { "type": "Point", "coordinates": [ 134.72801, 34.88443 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "播但線", "運営会社": "西日本旅客鉄道", "駅名": "福崎" }, "geometry": { "type": "Point", "coordinates": [ 134.75148, 34.96147 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "播但線", "運営会社": "西日本旅客鉄道", "駅名": "砥堀" }, "geometry": { "type": "Point", "coordinates": [ 134.7246, 34.86612 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "播但線", "運営会社": "西日本旅客鉄道", "駅名": "姫路" }, "geometry": { "type": "Point", "coordinates": [ 134.68835, 34.82775 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "伯備線", "運営会社": "西日本旅客鉄道", "駅名": "倉敷" }, "geometry": { "type": "Point", "coordinates": [ 133.76653, 34.60246 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "伯備線", "運営会社": "西日本旅客鉄道", "駅名": "伯耆大山" }, "geometry": { "type": "Point", "coordinates": [ 133.38319, 35.42961 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "伯備線", "運営会社": "西日本旅客鉄道", "駅名": "岸本" }, "geometry": { "type": "Point", "coordinates": [ 133.40977, 35.38696 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "伯備線", "運営会社": "西日本旅客鉄道", "駅名": "新見" }, "geometry": { "type": "Point", "coordinates": [ 133.45708, 34.98709 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "伯備線", "運営会社": "西日本旅客鉄道", "駅名": "足立" }, "geometry": { "type": "Point", "coordinates": [ 133.38356, 35.0389 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "伯備線", "運営会社": "西日本旅客鉄道", "駅名": "備中川面" }, "geometry": { "type": "Point", "coordinates": [ 133.58929, 34.84979 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "伯備線", "運営会社": "西日本旅客鉄道", "駅名": "方谷" }, "geometry": { "type": "Point", "coordinates": [ 133.55711, 34.87676 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "伯備線", "運営会社": "西日本旅客鉄道", "駅名": "上菅" }, "geometry": { "type": "Point", "coordinates": [ 133.34139, 35.19356 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "伯備線", "運営会社": "西日本旅客鉄道", "駅名": "日羽" }, "geometry": { "type": "Point", "coordinates": [ 133.69065, 34.71537 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "伯備線", "運営会社": "西日本旅客鉄道", "駅名": "清音" }, "geometry": { "type": "Point", "coordinates": [ 133.73337, 34.64317 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "伯備線", "運営会社": "西日本旅客鉄道", "駅名": "備中広瀬" }, "geometry": { "type": "Point", "coordinates": [ 133.60689, 34.75848 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "伯備線", "運営会社": "西日本旅客鉄道", "駅名": "根雨" }, "geometry": { "type": "Point", "coordinates": [ 133.44254, 35.24193 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "伯備線", "運営会社": "西日本旅客鉄道", "駅名": "井倉" }, "geometry": { "type": "Point", "coordinates": [ 133.51585, 34.93172 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "伯備線", "運営会社": "西日本旅客鉄道", "駅名": "生山" }, "geometry": { "type": "Point", "coordinates": [ 133.3219, 35.16998 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "伯備線", "運営会社": "西日本旅客鉄道", "駅名": "備中神代" }, "geometry": { "type": "Point", "coordinates": [ 133.4009, 34.9944 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "伯備線", "運営会社": "西日本旅客鉄道", "駅名": "美袋" }, "geometry": { "type": "Point", "coordinates": [ 133.65484, 34.71985 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "伯備線", "運営会社": "西日本旅客鉄道", "駅名": "石蟹" }, "geometry": { "type": "Point", "coordinates": [ 133.47971, 34.9544 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "伯備線", "運営会社": "西日本旅客鉄道", "駅名": "総社" }, "geometry": { "type": "Point", "coordinates": [ 133.73798, 34.67296 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "伯備線", "運営会社": "西日本旅客鉄道", "駅名": "備中高梁" }, "geometry": { "type": "Point", "coordinates": [ 133.61582, 34.78787 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "伯備線", "運営会社": "西日本旅客鉄道", "駅名": "伯耆溝口" }, "geometry": { "type": "Point", "coordinates": [ 133.43571, 35.34784 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "伯備線", "運営会社": "西日本旅客鉄道", "駅名": "新郷" }, "geometry": { "type": "Point", "coordinates": [ 133.36772, 35.08251 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "伯備線", "運営会社": "西日本旅客鉄道", "駅名": "江尾" }, "geometry": { "type": "Point", "coordinates": [ 133.48474, 35.28249 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "伯備線", "運営会社": "西日本旅客鉄道", "駅名": "布原" }, "geometry": { "type": "Point", "coordinates": [ 133.42271, 34.98813 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "伯備線", "運営会社": "西日本旅客鉄道", "駅名": "上石見" }, "geometry": { "type": "Point", "coordinates": [ 133.35066, 35.11259 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "伯備線", "運営会社": "西日本旅客鉄道", "駅名": "木野山" }, "geometry": { "type": "Point", "coordinates": [ 133.61528, 34.82545 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "伯備線", "運営会社": "西日本旅客鉄道", "駅名": "武庫" }, "geometry": { "type": "Point", "coordinates": [ 133.477, 35.26712 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "伯備線", "運営会社": "西日本旅客鉄道", "駅名": "豪渓" }, "geometry": { "type": "Point", "coordinates": [ 133.72193, 34.70608 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "伯備線", "運営会社": "西日本旅客鉄道", "駅名": "黒坂" }, "geometry": { "type": "Point", "coordinates": [ 133.3836, 35.2071 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "博多南線", "運営会社": "西日本旅客鉄道", "駅名": "博多" }, "geometry": { "type": "Point", "coordinates": [ 130.42127, 33.59139 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "博多南線", "運営会社": "西日本旅客鉄道", "駅名": "博多南" }, "geometry": { "type": "Point", "coordinates": [ 130.43709, 33.51729 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "美祢線", "運営会社": "西日本旅客鉄道", "駅名": "厚狭" }, "geometry": { "type": "Point", "coordinates": [ 131.15913, 34.05417 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "美祢線", "運営会社": "西日本旅客鉄道", "駅名": "四郎ヶ原" }, "geometry": { "type": "Point", "coordinates": [ 131.16107, 34.13819 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "美祢線", "運営会社": "西日本旅客鉄道", "駅名": "南大嶺" }, "geometry": { "type": "Point", "coordinates": [ 131.18525, 34.16191 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "美祢線", "運営会社": "西日本旅客鉄道", "駅名": "長門市" }, "geometry": { "type": "Point", "coordinates": [ 131.1863, 34.37591 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "美祢線", "運営会社": "西日本旅客鉄道", "駅名": "渋木" }, "geometry": { "type": "Point", "coordinates": [ 131.19631, 34.31172 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "美祢線", "運営会社": "西日本旅客鉄道", "駅名": "長門湯本" }, "geometry": { "type": "Point", "coordinates": [ 131.17262, 34.3348 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "美祢線", "運営会社": "西日本旅客鉄道", "駅名": "重安" }, "geometry": { "type": "Point", "coordinates": [ 131.2087, 34.19483 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "美祢線", "運営会社": "西日本旅客鉄道", "駅名": "湯ノ峠" }, "geometry": { "type": "Point", "coordinates": [ 131.17284, 34.08575 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "美祢線", "運営会社": "西日本旅客鉄道", "駅名": "板持" }, "geometry": { "type": "Point", "coordinates": [ 131.17664, 34.35367 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "美祢線", "運営会社": "西日本旅客鉄道", "駅名": "於福" }, "geometry": { "type": "Point", "coordinates": [ 131.20774, 34.23686 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "美祢線", "運営会社": "西日本旅客鉄道", "駅名": "厚保" }, "geometry": { "type": "Point", "coordinates": [ 131.15447, 34.11466 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "美祢線", "運営会社": "西日本旅客鉄道", "駅名": "美祢" }, "geometry": { "type": "Point", "coordinates": [ 131.20428, 34.16932 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "姫新線", "運営会社": "西日本旅客鉄道", "駅名": "姫路" }, "geometry": { "type": "Point", "coordinates": [ 134.68835, 34.82775 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "姫新線", "運営会社": "西日本旅客鉄道", "駅名": "播磨高岡" }, "geometry": { "type": "Point", "coordinates": [ 134.65916, 34.84169 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "姫新線", "運営会社": "西日本旅客鉄道", "駅名": "太市" }, "geometry": { "type": "Point", "coordinates": [ 134.60631, 34.86388 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "姫新線", "運営会社": "西日本旅客鉄道", "駅名": "余部" }, "geometry": { "type": "Point", "coordinates": [ 134.64285, 34.8557 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "姫新線", "運営会社": "西日本旅客鉄道", "駅名": "本竜野" }, "geometry": { "type": "Point", "coordinates": [ 134.55497, 34.86356 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "姫新線", "運営会社": "西日本旅客鉄道", "駅名": "美作大崎" }, "geometry": { "type": "Point", "coordinates": [ 134.06698, 35.04553 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "姫新線", "運営会社": "西日本旅客鉄道", "駅名": "西栗栖" }, "geometry": { "type": "Point", "coordinates": [ 134.47038, 34.95279 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "姫新線", "運営会社": "西日本旅客鉄道", "駅名": "播磨徳久" }, "geometry": { "type": "Point", "coordinates": [ 134.38517, 34.99039 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "姫新線", "運営会社": "西日本旅客鉄道", "駅名": "美作土居" }, "geometry": { "type": "Point", "coordinates": [ 134.2589, 34.99557 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "姫新線", "運営会社": "西日本旅客鉄道", "駅名": "上月" }, "geometry": { "type": "Point", "coordinates": [ 134.32175, 34.98377 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "姫新線", "運営会社": "西日本旅客鉄道", "駅名": "東津山" }, "geometry": { "type": "Point", "coordinates": [ 134.03109, 35.05866 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "姫新線", "運営会社": "西日本旅客鉄道", "駅名": "東觜崎" }, "geometry": { "type": "Point", "coordinates": [ 134.55783, 34.88821 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "姫新線", "運営会社": "西日本旅客鉄道", "駅名": "院庄" }, "geometry": { "type": "Point", "coordinates": [ 133.95679, 35.05886 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "姫新線", "運営会社": "西日本旅客鉄道", "駅名": "美作落合" }, "geometry": { "type": "Point", "coordinates": [ 133.75941, 35.023 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "姫新線", "運営会社": "西日本旅客鉄道", "駅名": "坪井" }, "geometry": { "type": "Point", "coordinates": [ 133.87622, 35.06208 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "姫新線", "運営会社": "西日本旅客鉄道", "駅名": "古見" }, "geometry": { "type": "Point", "coordinates": [ 133.76077, 35.04967 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "姫新線", "運営会社": "西日本旅客鉄道", "駅名": "佐用" }, "geometry": { "type": "Point", "coordinates": [ 134.35584, 35.0033 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "姫新線", "運営会社": "西日本旅客鉄道", "駅名": "楢原" }, "geometry": { "type": "Point", "coordinates": [ 134.18964, 35.01934 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "姫新線", "運営会社": "西日本旅客鉄道", "駅名": "千本" }, "geometry": { "type": "Point", "coordinates": [ 134.49386, 34.94249 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "姫新線", "運営会社": "西日本旅客鉄道", "駅名": "美作江見" }, "geometry": { "type": "Point", "coordinates": [ 134.2204, 35.01345 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "姫新線", "運営会社": "西日本旅客鉄道", "駅名": "西勝間田" }, "geometry": { "type": "Point", "coordinates": [ 134.08912, 35.04357 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "姫新線", "運営会社": "西日本旅客鉄道", "駅名": "三日月" }, "geometry": { "type": "Point", "coordinates": [ 134.43485, 34.98517 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "姫新線", "運営会社": "西日本旅客鉄道", "駅名": "津山" }, "geometry": { "type": "Point", "coordinates": [ 134.00244, 35.05437 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "姫新線", "運営会社": "西日本旅客鉄道", "駅名": "勝間田" }, "geometry": { "type": "Point", "coordinates": [ 134.11944, 35.03552 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "姫新線", "運営会社": "西日本旅客鉄道", "駅名": "美作千代" }, "geometry": { "type": "Point", "coordinates": [ 133.90545, 35.05863 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "姫新線", "運営会社": "西日本旅客鉄道", "駅名": "播磨新宮" }, "geometry": { "type": "Point", "coordinates": [ 134.54668, 34.92099 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "姫新線", "運営会社": "西日本旅客鉄道", "駅名": "林野" }, "geometry": { "type": "Point", "coordinates": [ 134.15242, 35.01411 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "姫新線", "運営会社": "西日本旅客鉄道", "駅名": "美作追分" }, "geometry": { "type": "Point", "coordinates": [ 133.8194, 35.05829 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "姫新線", "運営会社": "西日本旅客鉄道", "駅名": "新見" }, "geometry": { "type": "Point", "coordinates": [ 133.45708, 34.98709 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "姫新線", "運営会社": "西日本旅客鉄道", "駅名": "刑部" }, "geometry": { "type": "Point", "coordinates": [ 133.56632, 35.07695 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "姫新線", "運営会社": "西日本旅客鉄道", "駅名": "中国勝山" }, "geometry": { "type": "Point", "coordinates": [ 133.69514, 35.08099 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "姫新線", "運営会社": "西日本旅客鉄道", "駅名": "月田" }, "geometry": { "type": "Point", "coordinates": [ 133.66689, 35.04854 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "姫新線", "運営会社": "西日本旅客鉄道", "駅名": "久世" }, "geometry": { "type": "Point", "coordinates": [ 133.7457, 35.08083 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "姫新線", "運営会社": "西日本旅客鉄道", "駅名": "岩山" }, "geometry": { "type": "Point", "coordinates": [ 133.51307, 35.02341 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "姫新線", "運営会社": "西日本旅客鉄道", "駅名": "富原" }, "geometry": { "type": "Point", "coordinates": [ 133.6128, 35.05449 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "姫新線", "運営会社": "西日本旅客鉄道", "駅名": "丹治部" }, "geometry": { "type": "Point", "coordinates": [ 133.55402, 35.04678 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "氷見線", "運営会社": "西日本旅客鉄道", "駅名": "越中国分" }, "geometry": { "type": "Point", "coordinates": [ 137.05071, 36.8049 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "氷見線", "運営会社": "西日本旅客鉄道", "駅名": "氷見" }, "geometry": { "type": "Point", "coordinates": [ 136.99113, 36.84873 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "氷見線", "運営会社": "西日本旅客鉄道", "駅名": "越中中川" }, "geometry": { "type": "Point", "coordinates": [ 137.02795, 36.75028 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "氷見線", "運営会社": "西日本旅客鉄道", "駅名": "伏木" }, "geometry": { "type": "Point", "coordinates": [ 137.05835, 36.79194 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "氷見線", "運営会社": "西日本旅客鉄道", "駅名": "能町" }, "geometry": { "type": "Point", "coordinates": [ 137.03944, 36.76764 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "氷見線", "運営会社": "西日本旅客鉄道", "駅名": "島尾" }, "geometry": { "type": "Point", "coordinates": [ 137.01348, 36.82779 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "氷見線", "運営会社": "西日本旅客鉄道", "駅名": "雨晴" }, "geometry": { "type": "Point", "coordinates": [ 137.03815, 36.81634 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "氷見線", "運営会社": "西日本旅客鉄道", "駅名": "高岡" }, "geometry": { "type": "Point", "coordinates": [ 137.01574, 36.74074 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "舞鶴線", "運営会社": "西日本旅客鉄道", "駅名": "西舞鶴" }, "geometry": { "type": "Point", "coordinates": [ 135.33032, 35.4406 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "舞鶴線", "運営会社": "西日本旅客鉄道", "駅名": "東舞鶴" }, "geometry": { "type": "Point", "coordinates": [ 135.39545, 35.46918 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "舞鶴線", "運営会社": "西日本旅客鉄道", "駅名": "淵垣" }, "geometry": { "type": "Point", "coordinates": [ 135.29518, 35.32847 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "舞鶴線", "運営会社": "西日本旅客鉄道", "駅名": "梅迫" }, "geometry": { "type": "Point", "coordinates": [ 135.31126, 35.34818 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "舞鶴線", "運営会社": "西日本旅客鉄道", "駅名": "綾部" }, "geometry": { "type": "Point", "coordinates": [ 135.25061, 35.30227 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "舞鶴線", "運営会社": "西日本旅客鉄道", "駅名": "真倉" }, "geometry": { "type": "Point", "coordinates": [ 135.32577, 35.40666 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "福塩線", "運営会社": "西日本旅客鉄道", "駅名": "福山" }, "geometry": { "type": "Point", "coordinates": [ 133.36356, 34.48958 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "福塩線", "運営会社": "西日本旅客鉄道", "駅名": "備後安田" }, "geometry": { "type": "Point", "coordinates": [ 133.0342, 34.74118 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "福塩線", "運営会社": "西日本旅客鉄道", "駅名": "戸手" }, "geometry": { "type": "Point", "coordinates": [ 133.29988, 34.54675 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "福塩線", "運営会社": "西日本旅客鉄道", "駅名": "鵜飼" }, "geometry": { "type": "Point", "coordinates": [ 133.24421, 34.56818 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "福塩線", "運営会社": "西日本旅客鉄道", "駅名": "塩町" }, "geometry": { "type": "Point", "coordinates": [ 132.913, 34.7742 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "福塩線", "運営会社": "西日本旅客鉄道", "駅名": "新市" }, "geometry": { "type": "Point", "coordinates": [ 133.27052, 34.55393 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "福塩線", "運営会社": "西日本旅客鉄道", "駅名": "湯田村" }, "geometry": { "type": "Point", "coordinates": [ 133.37085, 34.55201 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "福塩線", "運営会社": "西日本旅客鉄道", "駅名": "道上" }, "geometry": { "type": "Point", "coordinates": [ 133.36074, 34.55343 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "福塩線", "運営会社": "西日本旅客鉄道", "駅名": "河佐" }, "geometry": { "type": "Point", "coordinates": [ 133.1663, 34.59 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "福塩線", "運営会社": "西日本旅客鉄道", "駅名": "吉舎" }, "geometry": { "type": "Point", "coordinates": [ 132.99101, 34.72739 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "福塩線", "運営会社": "西日本旅客鉄道", "駅名": "府中" }, "geometry": { "type": "Point", "coordinates": [ 133.23605, 34.57152 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "福塩線", "運営会社": "西日本旅客鉄道", "駅名": "備後矢野" }, "geometry": { "type": "Point", "coordinates": [ 133.12597, 34.66441 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "福塩線", "運営会社": "西日本旅客鉄道", "駅名": "高木" }, "geometry": { "type": "Point", "coordinates": [ 133.25358, 34.56277 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "福塩線", "運営会社": "西日本旅客鉄道", "駅名": "下川辺" }, "geometry": { "type": "Point", "coordinates": [ 133.20494, 34.55455 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "福塩線", "運営会社": "西日本旅客鉄道", "駅名": "三良坂" }, "geometry": { "type": "Point", "coordinates": [ 132.95815, 34.76608 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "福塩線", "運営会社": "西日本旅客鉄道", "駅名": "駅家" }, "geometry": { "type": "Point", "coordinates": [ 133.32525, 34.5489 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "福塩線", "運営会社": "西日本旅客鉄道", "駅名": "梶田" }, "geometry": { "type": "Point", "coordinates": [ 133.05913, 34.71098 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "福塩線", "運営会社": "西日本旅客鉄道", "駅名": "上下" }, "geometry": { "type": "Point", "coordinates": [ 133.11799, 34.69439 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "福塩線", "運営会社": "西日本旅客鉄道", "駅名": "横尾" }, "geometry": { "type": "Point", "coordinates": [ 133.36322, 34.52197 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "福塩線", "運営会社": "西日本旅客鉄道", "駅名": "甲奴" }, "geometry": { "type": "Point", "coordinates": [ 133.08163, 34.70382 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "福塩線", "運営会社": "西日本旅客鉄道", "駅名": "万能倉" }, "geometry": { "type": "Point", "coordinates": [ 133.33799, 34.55097 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "福塩線", "運営会社": "西日本旅客鉄道", "駅名": "近田" }, "geometry": { "type": "Point", "coordinates": [ 133.31054, 34.5462 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "福塩線", "運営会社": "西日本旅客鉄道", "駅名": "中畑" }, "geometry": { "type": "Point", "coordinates": [ 133.19303, 34.58264 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "福塩線", "運営会社": "西日本旅客鉄道", "駅名": "備後三川" }, "geometry": { "type": "Point", "coordinates": [ 133.11009, 34.63059 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "福塩線", "運営会社": "西日本旅客鉄道", "駅名": "備後本庄" }, "geometry": { "type": "Point", "coordinates": [ 133.34561, 34.49289 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "福塩線", "運営会社": "西日本旅客鉄道", "駅名": "神辺" }, "geometry": { "type": "Point", "coordinates": [ 133.37861, 34.53776 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "福塩線", "運営会社": "西日本旅客鉄道", "駅名": "上戸手" }, "geometry": { "type": "Point", "coordinates": [ 133.28243, 34.55143 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "福知山線", "運営会社": "西日本旅客鉄道", "駅名": "福知山" }, "geometry": { "type": "Point", "coordinates": [ 135.11982, 35.29626 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "福知山線", "運営会社": "西日本旅客鉄道", "駅名": "下滝" }, "geometry": { "type": "Point", "coordinates": [ 135.09477, 35.08775 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "福知山線", "運営会社": "西日本旅客鉄道", "駅名": "丹波竹田" }, "geometry": { "type": "Point", "coordinates": [ 135.1348, 35.24414 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "福知山線", "運営会社": "西日本旅客鉄道", "駅名": "藍本" }, "geometry": { "type": "Point", "coordinates": [ 135.15534, 34.9778 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "福知山線", "運営会社": "西日本旅客鉄道", "駅名": "南矢代" }, "geometry": { "type": "Point", "coordinates": [ 135.17501, 35.03813 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "福知山線", "運営会社": "西日本旅客鉄道", "駅名": "柏原" }, "geometry": { "type": "Point", "coordinates": [ 135.07596, 35.1279 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "福知山線", "運営会社": "西日本旅客鉄道", "駅名": "草野" }, "geometry": { "type": "Point", "coordinates": [ 135.15239, 34.99749 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "福知山線", "運営会社": "西日本旅客鉄道", "駅名": "石生" }, "geometry": { "type": "Point", "coordinates": [ 135.064, 35.15393 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "福知山線", "運営会社": "西日本旅客鉄道", "駅名": "市島" }, "geometry": { "type": "Point", "coordinates": [ 135.13051, 35.20847 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "福知山線", "運営会社": "西日本旅客鉄道", "駅名": "黒井" }, "geometry": { "type": "Point", "coordinates": [ 135.0991, 35.16826 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "福知山線", "運営会社": "西日本旅客鉄道", "駅名": "古市" }, "geometry": { "type": "Point", "coordinates": [ 135.1557, 35.02251 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "福知山線", "運営会社": "西日本旅客鉄道", "駅名": "篠山口" }, "geometry": { "type": "Point", "coordinates": [ 135.17711, 35.05712 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "福知山線", "運営会社": "西日本旅客鉄道", "駅名": "丹波大山" }, "geometry": { "type": "Point", "coordinates": [ 135.16838, 35.07269 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "福知山線", "運営会社": "西日本旅客鉄道", "駅名": "谷川" }, "geometry": { "type": "Point", "coordinates": [ 135.05072, 35.08235 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "福知山線", "運営会社": "西日本旅客鉄道", "駅名": "北伊丹" }, "geometry": { "type": "Point", "coordinates": [ 135.41971, 34.79976 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "福知山線", "運営会社": "西日本旅客鉄道", "駅名": "猪名寺" }, "geometry": { "type": "Point", "coordinates": [ 135.42276, 34.7632 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "福知山線", "運営会社": "西日本旅客鉄道", "駅名": "西宮名塩" }, "geometry": { "type": "Point", "coordinates": [ 135.30888, 34.82771 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "福知山線", "運営会社": "西日本旅客鉄道", "駅名": "中山寺" }, "geometry": { "type": "Point", "coordinates": [ 135.37483, 34.81655 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "福知山線", "運営会社": "西日本旅客鉄道", "駅名": "生瀬" }, "geometry": { "type": "Point", "coordinates": [ 135.32454, 34.81902 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "福知山線", "運営会社": "西日本旅客鉄道", "駅名": "伊丹" }, "geometry": { "type": "Point", "coordinates": [ 135.4218, 34.78009 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "福知山線", "運営会社": "西日本旅客鉄道", "駅名": "宝塚" }, "geometry": { "type": "Point", "coordinates": [ 135.34013, 34.81168 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "福知山線", "運営会社": "西日本旅客鉄道", "駅名": "武田尾" }, "geometry": { "type": "Point", "coordinates": [ 135.3061, 34.85499 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "福知山線", "運営会社": "西日本旅客鉄道", "駅名": "川西池田" }, "geometry": { "type": "Point", "coordinates": [ 135.41042, 34.8247 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "福知山線", "運営会社": "西日本旅客鉄道", "駅名": "塚口" }, "geometry": { "type": "Point", "coordinates": [ 135.42497, 34.75173 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "福知山線", "運営会社": "西日本旅客鉄道", "駅名": "尼崎" }, "geometry": { "type": "Point", "coordinates": [ 135.43066, 34.73204 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "福知山線", "運営会社": "西日本旅客鉄道", "駅名": "広野" }, "geometry": { "type": "Point", "coordinates": [ 135.19169, 34.92937 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "福知山線", "運営会社": "西日本旅客鉄道", "駅名": "新三田" }, "geometry": { "type": "Point", "coordinates": [ 135.2089, 34.90961 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "福知山線", "運営会社": "西日本旅客鉄道", "駅名": "道場" }, "geometry": { "type": "Point", "coordinates": [ 135.25662, 34.86728 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "福知山線", "運営会社": "西日本旅客鉄道", "駅名": "三田" }, "geometry": { "type": "Point", "coordinates": [ 135.2312, 34.88829 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "福知山線", "運営会社": "西日本旅客鉄道", "駅名": "相野" }, "geometry": { "type": "Point", "coordinates": [ 135.15491, 34.94795 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "片町線", "運営会社": "西日本旅客鉄道", "駅名": "木津" }, "geometry": { "type": "Point", "coordinates": [ 135.82465, 34.73433 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "片町線", "運営会社": "西日本旅客鉄道", "駅名": "東寝屋川" }, "geometry": { "type": "Point", "coordinates": [ 135.65337, 34.75583 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "片町線", "運営会社": "西日本旅客鉄道", "駅名": "同志社前" }, "geometry": { "type": "Point", "coordinates": [ 135.77865, 34.8053 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "片町線", "運営会社": "西日本旅客鉄道", "駅名": "住道" }, "geometry": { "type": "Point", "coordinates": [ 135.62238, 34.70631 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "片町線", "運営会社": "西日本旅客鉄道", "駅名": "野崎" }, "geometry": { "type": "Point", "coordinates": [ 135.63688, 34.71795 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "片町線", "運営会社": "西日本旅客鉄道", "駅名": "星田" }, "geometry": { "type": "Point", "coordinates": [ 135.66408, 34.76762 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "片町線", "運営会社": "西日本旅客鉄道", "駅名": "藤阪" }, "geometry": { "type": "Point", "coordinates": [ 135.7029, 34.81479 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "片町線", "運営会社": "西日本旅客鉄道", "駅名": "西木津" }, "geometry": { "type": "Point", "coordinates": [ 135.80286, 34.738 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "片町線", "運営会社": "西日本旅客鉄道", "駅名": "津田" }, "geometry": { "type": "Point", "coordinates": [ 135.69804, 34.80188 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "片町線", "運営会社": "西日本旅客鉄道", "駅名": "長尾" }, "geometry": { "type": "Point", "coordinates": [ 135.71339, 34.82617 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "片町線", "運営会社": "西日本旅客鉄道", "駅名": "松井山手" }, "geometry": { "type": "Point", "coordinates": [ 135.72784, 34.83374 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "片町線", "運営会社": "西日本旅客鉄道", "駅名": "四条畷" }, "geometry": { "type": "Point", "coordinates": [ 135.63922, 34.72963 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "片町線", "運営会社": "西日本旅客鉄道", "駅名": "祝園" }, "geometry": { "type": "Point", "coordinates": [ 135.79205, 34.75985 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "片町線", "運営会社": "西日本旅客鉄道", "駅名": "京田辺" }, "geometry": { "type": "Point", "coordinates": [ 135.76895, 34.82071 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "片町線", "運営会社": "西日本旅客鉄道", "駅名": "鴻池新田" }, "geometry": { "type": "Point", "coordinates": [ 135.59681, 34.69897 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "片町線", "運営会社": "西日本旅客鉄道", "駅名": "河内磐船" }, "geometry": { "type": "Point", "coordinates": [ 135.68502, 34.77668 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "片町線", "運営会社": "西日本旅客鉄道", "駅名": "徳庵" }, "geometry": { "type": "Point", "coordinates": [ 135.581, 34.69197 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "片町線", "運営会社": "西日本旅客鉄道", "駅名": "JR三山木" }, "geometry": { "type": "Point", "coordinates": [ 135.78427, 34.79899 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "片町線", "運営会社": "西日本旅客鉄道", "駅名": "下狛" }, "geometry": { "type": "Point", "coordinates": [ 135.78862, 34.78022 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "片町線", "運営会社": "西日本旅客鉄道", "駅名": "忍ヶ丘" }, "geometry": { "type": "Point", "coordinates": [ 135.64544, 34.74595 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "片町線", "運営会社": "西日本旅客鉄道", "駅名": "大住" }, "geometry": { "type": "Point", "coordinates": [ 135.7503, 34.83074 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "片町線", "運営会社": "西日本旅客鉄道", "駅名": "放出" }, "geometry": { "type": "Point", "coordinates": [ 135.56417, 34.68809 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "片町線", "運営会社": "西日本旅客鉄道", "駅名": "鴫野" }, "geometry": { "type": "Point", "coordinates": [ 135.54574, 34.69239 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "片町線", "運営会社": "西日本旅客鉄道", "駅名": "京橋" }, "geometry": { "type": "Point", "coordinates": [ 135.53334, 34.69581 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "北陸線", "運営会社": "西日本旅客鉄道", "駅名": "小松" }, "geometry": { "type": "Point", "coordinates": [ 136.453, 36.40394 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "北陸線", "運営会社": "西日本旅客鉄道", "駅名": "野々市" }, "geometry": { "type": "Point", "coordinates": [ 136.59783, 36.54158 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "北陸線", "運営会社": "西日本旅客鉄道", "駅名": "美川" }, "geometry": { "type": "Point", "coordinates": [ 136.48842, 36.48578 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "北陸線", "運営会社": "西日本旅客鉄道", "駅名": "能美根上" }, "geometry": { "type": "Point", "coordinates": [ 136.45955, 36.45026 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "北陸線", "運営会社": "西日本旅客鉄道", "駅名": "動橋" }, "geometry": { "type": "Point", "coordinates": [ 136.38405, 36.32896 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "北陸線", "運営会社": "西日本旅客鉄道", "駅名": "金沢" }, "geometry": { "type": "Point", "coordinates": [ 136.64858, 36.57927 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "北陸線", "運営会社": "西日本旅客鉄道", "駅名": "松任" }, "geometry": { "type": "Point", "coordinates": [ 136.56472, 36.52616 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "北陸線", "運営会社": "西日本旅客鉄道", "駅名": "加賀温泉" }, "geometry": { "type": "Point", "coordinates": [ 136.35192, 36.32091 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "北陸線", "運営会社": "西日本旅客鉄道", "駅名": "粟津" }, "geometry": { "type": "Point", "coordinates": [ 136.42536, 36.35686 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "北陸線", "運営会社": "西日本旅客鉄道", "駅名": "明峰" }, "geometry": { "type": "Point", "coordinates": [ 136.46314, 36.42473 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "北陸線", "運営会社": "西日本旅客鉄道", "駅名": "加賀笠間" }, "geometry": { "type": "Point", "coordinates": [ 136.52628, 36.50221 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "北陸線", "運営会社": "西日本旅客鉄道", "駅名": "小舞子" }, "geometry": { "type": "Point", "coordinates": [ 136.47424, 36.47531 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "北陸線", "運営会社": "西日本旅客鉄道", "駅名": "西金沢" }, "geometry": { "type": "Point", "coordinates": [ 136.62002, 36.5525 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "北陸線", "運営会社": "西日本旅客鉄道", "駅名": "米原" }, "geometry": { "type": "Point", "coordinates": [ 136.28993, 35.315 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "北陸線", "運営会社": "西日本旅客鉄道", "駅名": "敦賀" }, "geometry": { "type": "Point", "coordinates": [ 136.07518, 35.64361 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "北陸線", "運営会社": "西日本旅客鉄道", "駅名": "余呉" }, "geometry": { "type": "Point", "coordinates": [ 136.19945, 35.53395 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "北陸線", "運営会社": "西日本旅客鉄道", "駅名": "湯尾" }, "geometry": { "type": "Point", "coordinates": [ 136.19283, 35.8029 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "北陸線", "運営会社": "西日本旅客鉄道", "駅名": "春江" }, "geometry": { "type": "Point", "coordinates": [ 136.22889, 36.13082 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "北陸線", "運営会社": "西日本旅客鉄道", "駅名": "大土呂" }, "geometry": { "type": "Point", "coordinates": [ 136.21635, 36.00986 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "北陸線", "運営会社": "西日本旅客鉄道", "駅名": "長浜" }, "geometry": { "type": "Point", "coordinates": [ 136.26563, 35.37759 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "北陸線", "運営会社": "西日本旅客鉄道", "駅名": "鯖江" }, "geometry": { "type": "Point", "coordinates": [ 136.18886, 35.9446 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "北陸線", "運営会社": "西日本旅客鉄道", "駅名": "牛ノ谷" }, "geometry": { "type": "Point", "coordinates": [ 136.28203, 36.26006 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "北陸線", "運営会社": "西日本旅客鉄道", "駅名": "虎姫" }, "geometry": { "type": "Point", "coordinates": [ 136.25759, 35.42391 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "北陸線", "運営会社": "西日本旅客鉄道", "駅名": "田村" }, "geometry": { "type": "Point", "coordinates": [ 136.282, 35.35589 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "北陸線", "運営会社": "西日本旅客鉄道", "駅名": "敦賀" }, "geometry": { "type": "Point", "coordinates": [ 136.0779, 35.64578 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "北陸線", "運営会社": "西日本旅客鉄道", "駅名": "今庄" }, "geometry": { "type": "Point", "coordinates": [ 136.1997, 35.77259 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "北陸線", "運営会社": "西日本旅客鉄道", "駅名": "米原" }, "geometry": { "type": "Point", "coordinates": [ 136.289841, 35.313891 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "北陸線", "運営会社": "西日本旅客鉄道", "駅名": "福井" }, "geometry": { "type": "Point", "coordinates": [ 136.22181, 36.06002 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "北陸線", "運営会社": "西日本旅客鉄道", "駅名": "近江塩津" }, "geometry": { "type": "Point", "coordinates": [ 136.15185, 35.53837 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "北陸線", "運営会社": "西日本旅客鉄道", "駅名": "新疋田" }, "geometry": { "type": "Point", "coordinates": [ 136.10092, 35.59384 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "北陸線", "運営会社": "西日本旅客鉄道", "駅名": "王子保" }, "geometry": { "type": "Point", "coordinates": [ 136.16575, 35.86603 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "北陸線", "運営会社": "西日本旅客鉄道", "駅名": "武生" }, "geometry": { "type": "Point", "coordinates": [ 136.17117, 35.902 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "北陸線", "運営会社": "西日本旅客鉄道", "駅名": "北鯖江" }, "geometry": { "type": "Point", "coordinates": [ 136.19885, 35.97264 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "北陸線", "運営会社": "西日本旅客鉄道", "駅名": "坂田" }, "geometry": { "type": "Point", "coordinates": [ 136.28777, 35.33581 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "北陸線", "運営会社": "西日本旅客鉄道", "駅名": "細呂木" }, "geometry": { "type": "Point", "coordinates": [ 136.2573, 36.24154 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "北陸線", "運営会社": "西日本旅客鉄道", "駅名": "南条" }, "geometry": { "type": "Point", "coordinates": [ 136.19424, 35.83117 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "北陸線", "運営会社": "西日本旅客鉄道", "駅名": "森田" }, "geometry": { "type": "Point", "coordinates": [ 136.22292, 36.11028 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "北陸線", "運営会社": "西日本旅客鉄道", "駅名": "高月" }, "geometry": { "type": "Point", "coordinates": [ 136.23724, 35.47156 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "北陸線", "運営会社": "西日本旅客鉄道", "駅名": "木ノ本" }, "geometry": { "type": "Point", "coordinates": [ 136.22213, 35.50497 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "北陸線", "運営会社": "西日本旅客鉄道", "駅名": "南今庄" }, "geometry": { "type": "Point", "coordinates": [ 136.18414, 35.75732 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "北陸線", "運営会社": "西日本旅客鉄道", "駅名": "芦原温泉" }, "geometry": { "type": "Point", "coordinates": [ 136.23522, 36.21677 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "北陸線", "運営会社": "西日本旅客鉄道", "駅名": "丸岡" }, "geometry": { "type": "Point", "coordinates": [ 136.23372, 36.16359 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "北陸線", "運営会社": "西日本旅客鉄道", "駅名": "河毛" }, "geometry": { "type": "Point", "coordinates": [ 136.24963, 35.44811 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "北陸線", "運営会社": "西日本旅客鉄道", "駅名": "越前花堂" }, "geometry": { "type": "Point", "coordinates": [ 136.21807, 36.03726 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "本四備讃線", "運営会社": "西日本旅客鉄道", "駅名": "茶屋町" }, "geometry": { "type": "Point", "coordinates": [ 133.82593, 34.57818 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "本四備讃線", "運営会社": "西日本旅客鉄道", "駅名": "植松" }, "geometry": { "type": "Point", "coordinates": [ 133.82798, 34.55153 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "本四備讃線", "運営会社": "西日本旅客鉄道", "駅名": "上の町" }, "geometry": { "type": "Point", "coordinates": [ 133.81533, 34.49136 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "本四備讃線", "運営会社": "西日本旅客鉄道", "駅名": "児島" }, "geometry": { "type": "Point", "coordinates": [ 133.80748, 34.46183 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "本四備讃線", "運営会社": "西日本旅客鉄道", "駅名": "木見" }, "geometry": { "type": "Point", "coordinates": [ 133.82396, 34.52817 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "木次線", "運営会社": "西日本旅客鉄道", "駅名": "宍道" }, "geometry": { "type": "Point", "coordinates": [ 132.90863, 35.40642 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "木次線", "運営会社": "西日本旅客鉄道", "駅名": "備後落合" }, "geometry": { "type": "Point", "coordinates": [ 133.14792, 35.00099 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "木次線", "運営会社": "西日本旅客鉄道", "駅名": "出雲三成" }, "geometry": { "type": "Point", "coordinates": [ 133.00934, 35.19699 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "木次線", "運営会社": "西日本旅客鉄道", "駅名": "下久野" }, "geometry": { "type": "Point", "coordinates": [ 132.99193, 35.26467 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "木次線", "運営会社": "西日本旅客鉄道", "駅名": "出雲八代" }, "geometry": { "type": "Point", "coordinates": [ 133.0018, 35.22697 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "木次線", "運営会社": "西日本旅客鉄道", "駅名": "南宍道" }, "geometry": { "type": "Point", "coordinates": [ 132.91784, 35.38005 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "木次線", "運営会社": "西日本旅客鉄道", "駅名": "油木" }, "geometry": { "type": "Point", "coordinates": [ 133.11926, 35.04427 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "木次線", "運営会社": "西日本旅客鉄道", "駅名": "八川" }, "geometry": { "type": "Point", "coordinates": [ 133.08898, 35.14964 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "木次線", "運営会社": "西日本旅客鉄道", "駅名": "出雲横田" }, "geometry": { "type": "Point", "coordinates": [ 133.09207, 35.17753 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "木次線", "運営会社": "西日本旅客鉄道", "駅名": "木次" }, "geometry": { "type": "Point", "coordinates": [ 132.90188, 35.29535 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "木次線", "運営会社": "西日本旅客鉄道", "駅名": "亀嵩" }, "geometry": { "type": "Point", "coordinates": [ 133.05331, 35.20655 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "木次線", "運営会社": "西日本旅客鉄道", "駅名": "加茂中" }, "geometry": { "type": "Point", "coordinates": [ 132.91076, 35.34413 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "木次線", "運営会社": "西日本旅客鉄道", "駅名": "日登" }, "geometry": { "type": "Point", "coordinates": [ 132.93084, 35.27671 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "木次線", "運営会社": "西日本旅客鉄道", "駅名": "出雲大東" }, "geometry": { "type": "Point", "coordinates": [ 132.95803, 35.32624 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "木次線", "運営会社": "西日本旅客鉄道", "駅名": "出雲坂根" }, "geometry": { "type": "Point", "coordinates": [ 133.12034, 35.1026 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "木次線", "運営会社": "西日本旅客鉄道", "駅名": "幡屋" }, "geometry": { "type": "Point", "coordinates": [ 132.93894, 35.33462 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "木次線", "運営会社": "西日本旅客鉄道", "駅名": "三井野原" }, "geometry": { "type": "Point", "coordinates": [ 133.11681, 35.09154 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "木次線", "運営会社": "西日本旅客鉄道", "駅名": "南大東" }, "geometry": { "type": "Point", "coordinates": [ 132.9285, 35.30772 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "和歌山線", "運営会社": "西日本旅客鉄道", "駅名": "中飯降" }, "geometry": { "type": "Point", "coordinates": [ 135.53281, 34.30465 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "和歌山線", "運営会社": "西日本旅客鉄道", "駅名": "畠田" }, "geometry": { "type": "Point", "coordinates": [ 135.70395, 34.57842 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "和歌山線", "運営会社": "西日本旅客鉄道", "駅名": "志都美" }, "geometry": { "type": "Point", "coordinates": [ 135.70195, 34.56272 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "和歌山線", "運営会社": "西日本旅客鉄道", "駅名": "大和新庄" }, "geometry": { "type": "Point", "coordinates": [ 135.73639, 34.48967 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "和歌山線", "運営会社": "西日本旅客鉄道", "駅名": "下兵庫" }, "geometry": { "type": "Point", "coordinates": [ 135.63541, 34.32276 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "和歌山線", "運営会社": "西日本旅客鉄道", "駅名": "吉野口" }, "geometry": { "type": "Point", "coordinates": [ 135.75069, 34.42185 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "和歌山線", "運営会社": "西日本旅客鉄道", "駅名": "妙寺" }, "geometry": { "type": "Point", "coordinates": [ 135.51779, 34.29852 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "和歌山線", "運営会社": "西日本旅客鉄道", "駅名": "紀伊山田" }, "geometry": { "type": "Point", "coordinates": [ 135.5844, 34.3132 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "和歌山線", "運営会社": "西日本旅客鉄道", "駅名": "玉手" }, "geometry": { "type": "Point", "coordinates": [ 135.74785, 34.45843 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "和歌山線", "運営会社": "西日本旅客鉄道", "駅名": "橋本" }, "geometry": { "type": "Point", "coordinates": [ 135.61551, 34.31828 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "和歌山線", "運営会社": "西日本旅客鉄道", "駅名": "高野口" }, "geometry": { "type": "Point", "coordinates": [ 135.55739, 34.30756 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "和歌山線", "運営会社": "西日本旅客鉄道", "駅名": "JR五位堂" }, "geometry": { "type": "Point", "coordinates": [ 135.71831, 34.52768 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "和歌山線", "運営会社": "西日本旅客鉄道", "駅名": "大和二見" }, "geometry": { "type": "Point", "coordinates": [ 135.68479, 34.34634 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "和歌山線", "運営会社": "西日本旅客鉄道", "駅名": "隅田" }, "geometry": { "type": "Point", "coordinates": [ 135.6562, 34.32807 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "和歌山線", "運営会社": "西日本旅客鉄道", "駅名": "掖上" }, "geometry": { "type": "Point", "coordinates": [ 135.76252, 34.45292 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "和歌山線", "運営会社": "西日本旅客鉄道", "駅名": "香芝" }, "geometry": { "type": "Point", "coordinates": [ 135.70482, 34.54439 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "和歌山線", "運営会社": "西日本旅客鉄道", "駅名": "御所" }, "geometry": { "type": "Point", "coordinates": [ 135.73379, 34.4658 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "和歌山線", "運営会社": "西日本旅客鉄道", "駅名": "大谷" }, "geometry": { "type": "Point", "coordinates": [ 135.49427, 34.29872 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "和歌山線", "運営会社": "西日本旅客鉄道", "駅名": "北宇智" }, "geometry": { "type": "Point", "coordinates": [ 135.714365, 34.382665 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "和歌山線", "運営会社": "西日本旅客鉄道", "駅名": "王寺" }, "geometry": { "type": "Point", "coordinates": [ 135.7031, 34.59749 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "和歌山線", "運営会社": "西日本旅客鉄道", "駅名": "五条" }, "geometry": { "type": "Point", "coordinates": [ 135.69971, 34.35624 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "和歌山線", "運営会社": "西日本旅客鉄道", "駅名": "高田" }, "geometry": { "type": "Point", "coordinates": [ 135.74407, 34.517 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "和歌山線", "運営会社": "西日本旅客鉄道", "駅名": "和歌山" }, "geometry": { "type": "Point", "coordinates": [ 135.19156, 34.23162 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "和歌山線", "運営会社": "西日本旅客鉄道", "駅名": "名手" }, "geometry": { "type": "Point", "coordinates": [ 135.43437, 34.2732 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "和歌山線", "運営会社": "西日本旅客鉄道", "駅名": "岩出" }, "geometry": { "type": "Point", "coordinates": [ 135.32142, 34.25539 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "和歌山線", "運営会社": "西日本旅客鉄道", "駅名": "田井ノ瀬" }, "geometry": { "type": "Point", "coordinates": [ 135.22909, 34.24208 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "和歌山線", "運営会社": "西日本旅客鉄道", "駅名": "粉河" }, "geometry": { "type": "Point", "coordinates": [ 135.40492, 34.27089 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "和歌山線", "運営会社": "西日本旅客鉄道", "駅名": "布施屋" }, "geometry": { "type": "Point", "coordinates": [ 135.26251, 34.24462 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "和歌山線", "運営会社": "西日本旅客鉄道", "駅名": "下井阪" }, "geometry": { "type": "Point", "coordinates": [ 135.34063, 34.26203 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "和歌山線", "運営会社": "西日本旅客鉄道", "駅名": "紀伊長田" }, "geometry": { "type": "Point", "coordinates": [ 135.39219, 34.26834 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "和歌山線", "運営会社": "西日本旅客鉄道", "駅名": "船戸" }, "geometry": { "type": "Point", "coordinates": [ 135.31182, 34.24835 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "和歌山線", "運営会社": "西日本旅客鉄道", "駅名": "千旦" }, "geometry": { "type": "Point", "coordinates": [ 135.24525, 34.24166 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "和歌山線", "運営会社": "西日本旅客鉄道", "駅名": "紀伊小倉" }, "geometry": { "type": "Point", "coordinates": [ 135.28783, 34.24641 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "和歌山線", "運営会社": "西日本旅客鉄道", "駅名": "打田" }, "geometry": { "type": "Point", "coordinates": [ 135.36337, 34.26511 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "和歌山線", "運営会社": "西日本旅客鉄道", "駅名": "笠田" }, "geometry": { "type": "Point", "coordinates": [ 135.48043, 34.29239 ] } },
{ "type": "Feature", "properties": { "鉄道区分": "11", "事業者種別": "2", "路線名": "和歌山線", "運営会社": "西日本旅客鉄道", "駅名": "西笠田" }, "geometry": { "type": "Point", "coordinates": [ 135.45305, 34.28016 ] } }
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment