diff --git a/src/main/resources/static/custom/cities.js b/src/main/resources/static/custom/cities.js deleted file mode 100644 index 64e3253..0000000 --- a/src/main/resources/static/custom/cities.js +++ /dev/null @@ -1,91 +0,0 @@ -var __map; -var __markerLayer = null; -var __overlay = null; // ポップアップを表示するためのレイヤー -var site = null; - -function loadMap() { - - // マップの作成 - __map = new ol.Map({ - target: 'map', - layers: [ - new ol.layer.Tile({ - source: new ol.source.OSM() - }) - ], - view: new ol.View({ - center: ol.proj.fromLonLat([139.745433,35.658581]), - zoom: 8 - }) - }); - - // マーカーの見た目の作成 - var style = new ol.style.Style({ - image: new ol.style.Icon({ - src: '/task-bldg/img/osm_200x200.png', - anchor: [0.5, 0.5], - scale: 0.2 - }) - }); - - // 表示するためのレイヤーを作成する - __markerLayer = new ol.layer.Vector({ - source: new ol.source.Vector() - }); - __map.addLayer(__markerLayer); - - // ポップアップを表示するためのオーバーレイを作成する - __overlay = new ol.Overlay({ - element: document.getElementById('popup'), - positioning: 'bottom-center' - }); - - $.when( - $.getJSON("/task-bldg/index") - ).done(function(data) { - site = data.site; - style = new ol.style.Style({ - image: new ol.style.Icon({ - src: '/task-bldg/img/osm_200x200.png', - anchor: [0.5, 0.5], - scale: 0.2 - }), - stroke: new ol.style.Stroke({color: '#ff33ff', width: 10}) - }); - - $(data.list).each(function() { - var feature = new ol.Feature({ - geometry: new ol.geom.Point(ol.proj.fromLonLat(this.coordinates)), - code: this.code, - name: this.name - }); - feature.information = this; - feature.setStyle(style); - __markerLayer.getSource().addFeature(feature); - }); - - // 地図のクリックイベントを設定 - __map.on('click', function (evt) { - var feature = __map.forEachFeatureAtPixel( - evt.pixel, - function (feature) { - return feature; - } - ); - if (feature) { - var coordinates = feature.getGeometry().getCoordinates(); - var info = feature.information; - var element = __overlay.getElement(); - var descriptionHTML = - "
" + info.code + "
" + - "
" + info.name + "
" + - "
" + info.path + "
"; - element.innerHTML = descriptionHTML; - __overlay.setPosition(coordinates); - __map.addOverlay(__overlay); - } else { - __map.removeOverlay(__overlay); - } - }); - }); -} diff --git a/src/main/resources/static/custom/meshes.js b/src/main/resources/static/custom/meshes.js deleted file mode 100644 index c278543..0000000 --- a/src/main/resources/static/custom/meshes.js +++ /dev/null @@ -1,147 +0,0 @@ -const geojson = "index.geojson"; - -var __map = null; -var __markerLayer = null; -var __lineLayer = null; - -var citycode = "00000"; -var dir = "./"; -var cityname = ""; -var lonlat = [139.7637,35.6808]; - -var queryString = window.location.pathname; -if(queryString){ - queryString = queryString.substring(1); - var parameters = queryString.split('/'); - for (var i = 0; i < parameters.length; i++) { - citycode = parameters[i]; - } -} - -function loadMap() { - $.when( - // マップ表示のための中心位置を読み取る - $.getJSON("http://surveyor.mydns.jp/osm-data/index.json") - ).done(function(data1) { - site = data1.site; - style = new ol.style.Style({ - image: new ol.style.Icon({ - src: '/task-bldg/img/osm_200x200.png', - anchor: [0.5, 0.5], - scale: 0.2 - }), - stroke: new ol.style.Stroke({color: '#ff33ff', width: 10}) - }); - - $(data1.list).each(function() { - if (this.code == citycode) { - lonlat = this.coordinates; // 中心位置 - dir = this.path + "/bldg/"; - cityname = this.name; - } - }); - - // マップの作成 - __map = new ol.Map({ - target: 'map', - layers: [ - new ol.layer.Tile({ - source: new ol.source.OSM() - }) - ], - view: new ol.View({ - center: ol.proj.fromLonLat(lonlat), - zoom: 12 - }) - }); - - var title = document.getElementById("title"); - title.innerHTML = "PLATEAU OSMデータ : " + citycode + " " + cityname; - - // 表示するためのレイヤーを作成する - __markerLayer = new ol.layer.Vector({ - source: new ol.source.Vector() - }); - __map.addLayer(__markerLayer); - - // ポップアップを表示するためのオーバーレイを作成する - __overlay = new ol.Overlay({ - element: document.getElementById('popup'), - positioning: 'bottom-center' - }); - - $.when( - $.getJSON("/task-bldg/city/"+ dir + geojson) - ).done(function(data2) { - features = data2.features; - $(features).each(function() { - if (this.geometry != null) { - if (this.geometry.type == "Point") { - var feature = new ol.Feature({ - geometry: new ol.geom.Point(ol.proj.fromLonLat(this.geometry.coordinates)) - }); - feature.information = this; - feature.setStyle(style); - __markerLayer.getSource().addFeature(feature); - } - if (this.geometry.type == "LineString") { - drawPolygon([this.geometry.coordinates]); - } - } - }); - - // 地図のクリックイベントを設定 - __map.on('click', function (evt) { - var feature = __map.forEachFeatureAtPixel( - evt.pixel, - function (feature) { - return feature; - } - ); - if (feature) { - var coordinates = feature.getGeometry().getCoordinates(); - var info = feature.information; - var element = __overlay.getElement(); - var descriptionHTML = - "
code: " + info.properties.id + "
" + - "
version: " + info.properties.version + "
" + - "
タスク
"; - element.innerHTML = descriptionHTML; - __overlay.setPosition(coordinates); - __map.addOverlay(__overlay); - } else { - __map.removeOverlay(__overlay); - } - }); - }); - }); -} - -/** - * ポリゴンを描画する - */ -function drawPolygon(coordinates) { - // ジオメトリの作成 - var polygon = new ol.geom.Polygon([]); - polygon.setCoordinates(coordinates); - - // 地物オブジェクトの作成 〜 レイヤーの作成 - var feature = new ol.Feature( - polygon.transform('EPSG:4326', 'EPSG:3857') - ); - feature.setId('tokyotower'); - - var vector = new ol.source.Vector({ - features: [feature] - }); - var routeLayer = new ol.layer.Vector({ - source: vector, - style: new ol.style.Style({ - stroke: new ol.style.Stroke({ color: '#000000', width: 2 }) - //fill: new ol.style.Fill({ color: [0, 0, 0, 0.2] }) - }) - }); - - // 作成したポリゴンをレイヤーにのせる - __map.addLayer(routeLayer); -} diff --git a/src/main/resources/static/custom/task.js b/src/main/resources/static/custom/task.js deleted file mode 100644 index 47f7326..0000000 --- a/src/main/resources/static/custom/task.js +++ /dev/null @@ -1,19 +0,0 @@ -var queryString = window.location.search; -var queryObject = new Object(); -if(queryString){ - queryString = queryString.substring(1); - var parameters = queryString.split('&'); - - for (var i = 0; i < parameters.length; i++) { - var element = parameters[i].split('='); - - var paramName = decodeURIComponent(element[0]); - var paramValue = decodeURIComponent(element[1]); - - queryObject[paramName] = paramValue; - } -} - -const citycode = queryObject['citycode']; -const meshcode = queryObject['meshcode']; -const op = queryObject['op']; diff --git a/src/main/resources/static/custom/tasks.js b/src/main/resources/static/custom/tasks.js deleted file mode 100644 index 510c82d..0000000 --- a/src/main/resources/static/custom/tasks.js +++ /dev/null @@ -1,175 +0,0 @@ -const geojson = "index.geojson"; - -var __map = null; -var __markerLayer = null; -var __lineLayer = null; - -var dir = "./"; -var cityname = ""; -var line = []; - -var queryString = window.location.search; -var queryObject = new Object(); -if(queryString){ - queryString = queryString.substring(1); - var parameters = queryString.split('&'); - - for (var i = 0; i < parameters.length; i++) { - var element = parameters[i].split('='); - - var paramName = decodeURIComponent(element[0]); - var paramValue = decodeURIComponent(element[1]); - - queryObject[paramName] = paramValue; - } -} - -const mesh = /*[[${mesh}]]*/"mesh"; -const citycode = queryObject['citycode']; -const meshcode = queryObject['meshcode']; - -function loadMap() { - - // 'citycode'に対応するデータを読む - var lonlat = [139.7637,35.6808]; - $.when( - $.getJSON("http://surveyor.mydns.jp/osm-data/index.json") - ).done(function(data1) { - site = data1.site; - $(data1.list).each(function() { - if (this.code == citycode) { - dir = this.path + "/bldg/"; - cityname = this.name; - loadMesh(dir, citycode, meshcode); - } - }) - }); - - - // マップの作成 - __map = new ol.Map({ - target: 'map', - layers: [ - new ol.layer.Tile({ - source: new ol.source.OSM() - }) - ], - view: new ol.View({ - center: ol.proj.fromLonLat(lonlat), - zoom: 15 - }) - }); - - // 表示するためのレイヤーを作成する - __markerLayer = new ol.layer.Vector({ - source: new ol.source.Vector() - }); - __map.addLayer(__markerLayer); - - // ポップアップを表示するためのオーバーレイを作成する - __overlay = new ol.Overlay({ - element: document.getElementById('popup'), - positioning: 'bottom-center' - }); - - - // 地図のクリックイベントを設定 - __map.on('click', function (evt) { - var feature = __map.forEachFeatureAtPixel( - evt.pixel, - function (feature) { - return feature; - } - ); - if (feature) { - var coordinates = feature.getGeometry().getCoordinates(); - var info = feature.information; - var point = info.geometry.coordinates; - var element = __overlay.getElement(); - var descriptionHTML = - "
code: " + info.properties.id + "
" + - "
version: " + info.properties.version + "
" + - "
" + info.properties.path + "
" + - "
OpenStreetMap で現状を確認する
"; - element.innerHTML = descriptionHTML; - __overlay.setPosition(coordinates); - __map.addOverlay(__overlay); - } else { - __map.removeOverlay(__overlay); - } - }); - - -} - - -// マップ表示のための中心位置を読み取る -function loadMesh(dir) { - $.when( - $.getJSON("/task-bldg/city/"+ dir + geojson) - ).done(function(data2) { - features = data2.features; - $(features).each(function() { - if (this.properties != null) { - if (this.properties.id == meshcode) { - if (this.geometry != null) { - if (this.geometry.type == "Point") { - lonlat = this.geometry.coordinates; // 中心位置 - - // マーカーの表示 - featurePoint = new ol.Feature({ - geometry: new ol.geom.Point(ol.proj.fromLonLat(lonlat)) - }); - featurePoint.information = this; - featurePoint.setStyle(new ol.style.Style({ - image: new ol.style.Icon({ - src: './img/osm_200x200.png', - anchor: [0.5, 0.5], - scale: 0.2 - }), - stroke: new ol.style.Stroke({color: '#ff33ff', width: 10}) - })); - __markerLayer.getSource().addFeature(featurePoint); - __map.getView().setCenter(ol.proj.fromLonLat(lonlat)); - } - if (this.geometry.type == "LineString") { - drawPolygon([this.geometry.coordinates]); - } - } - } - } - }); - }); -} - - -/** - * ポリゴンを描画する - ret: routeLayer - */ -function drawPolygon(coordinates) { - // ジオメトリの作成 - var polygon = new ol.geom.Polygon([]); - polygon.setCoordinates(coordinates); - - // 地物オブジェクトの作成 〜 レイヤーの作成 - var feature = new ol.Feature( - polygon.transform('EPSG:4326', 'EPSG:3857') - ); - feature.setId(meshcode); - - var vector = new ol.source.Vector({ - features: [feature] - }); - routeLayer = new ol.layer.Vector({ - source: vector, - style: new ol.style.Style({ - stroke: new ol.style.Stroke({ color: '#000000', width: 2 }) - //fill: new ol.style.Fill({ color: [0, 0, 0, 0.2] }) - }) - }); - - // 作成したポリゴンをレイヤーにのせる - __map.addLayer(routeLayer); -} - diff --git a/src/test/resources/static/city/01100_sapporo-shi_2020/bldg/index.geojson b/src/test/resources/static/city/01100_sapporo-shi_2020/bldg/index.geojson new file mode 100644 index 0000000..37dded7 --- /dev/null +++ b/src/test/resources/static/city/01100_sapporo-shi_2020/bldg/index.geojson @@ -0,0 +1,1245 @@ +{ + "type": "FeatureCollection", + "crs": { + "type":"name", + "properties":{ + "name":"urn:ogc:def:crs:OGC:1.3:CRS84" + } + }, + "features": [ + { + "geometry":{ + "coordinates":[141.35625,42.90416666666667], + "type":"Point" + }, + "type":"Feature", + "properties":{ + "path":"64412288_bldg_6697_op.zip", + "id":"64412288", + "version":"1.4.6" + } + }, + { + "geometry":{ + "coordinates":[ + [141.35,42.9], + [141.36249999999998,42.9], + [141.36249999999998,42.90833333333333], + [141.35,42.90833333333333], + [141.35,42.9] + ], + "type":"LineString" + }, + "type":"Feature", + "properties":{ + "id":"64412288" + } + }, + {"geometry":{"coordinates":[141.21875,42.95416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64413147_bldg_6697_op.zip","id":"64413147","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2125,42.95],[141.225,42.95],[141.225,42.958333333333336],[141.2125,42.958333333333336],[141.2125,42.95]],"type":"LineString"},"type":"Feature","properties":{"id":"64413147"}}, + {"geometry":{"coordinates":[141.40625,43.02916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414332_bldg_6697_op.zip","id":"64414332","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4,43.025],[141.4125,43.025],[141.4125,43.03333333333333],[141.4,43.03333333333333],[141.4,43.025]],"type":"LineString"},"type":"Feature","properties":{"id":"64414332"}}, + {"geometry":{"coordinates":[141.28125,43.087500000000006],"type":"Point"},"type":"Feature","properties":{"path":"64415202_bldg_6697_op.zip","id":"64415202","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.275,43.083333333333336],[141.2875,43.083333333333336],[141.2875,43.09166666666667],[141.275,43.09166666666667],[141.275,43.083333333333336]],"type":"LineString"},"type":"Feature","properties":{"id":"64415202"}}, + {"geometry":{"coordinates":[141.30625,43.0375],"type":"Point"},"type":"Feature","properties":{"path":"64414244_bldg_6697_op.zip","id":"64414244","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3,43.03333333333333],[141.3125,43.03333333333333],[141.3125,43.041666666666664],[141.3,43.041666666666664],[141.3,43.03333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414244"}}, + {"geometry":{"coordinates":[141.34375,42.97083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413267_bldg_6697_op.zip","id":"64413267","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3375,42.96666666666667],[141.35,42.96666666666667],[141.35,42.975],[141.3375,42.975],[141.3375,42.96666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64413267"}}, + {"geometry":{"coordinates":[141.44375,43.1375],"type":"Point"},"type":"Feature","properties":{"path":"64415365_bldg_6697_op.zip","id":"64415365","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4375,43.13333333333333],[141.45,43.13333333333333],[141.45,43.141666666666666],[141.4375,43.141666666666666],[141.4375,43.13333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64415365"}}, + {"geometry":{"coordinates":[141.41875,43.0125],"type":"Point"},"type":"Feature","properties":{"path":"64414313_bldg_6697_op.zip","id":"64414313","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4125,43.00833333333333],[141.42499999999998,43.00833333333333],[141.42499999999998,43.016666666666666],[141.4125,43.016666666666666],[141.4125,43.00833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414313"}}, + {"geometry":{"coordinates":[141.41875,43.12916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64415353_bldg_6697_op.zip","id":"64415353","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4125,43.125],[141.42499999999998,43.125],[141.42499999999998,43.13333333333333],[141.4125,43.13333333333333],[141.4125,43.125]],"type":"LineString"},"type":"Feature","properties":{"id":"64415353"}}, + {"geometry":{"coordinates":[141.39374999999998,42.962500000000006],"type":"Point"},"type":"Feature","properties":{"path":"64413351_bldg_6697_op.zip","id":"64413351","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3875,42.958333333333336],[141.39999999999998,42.958333333333336],[141.39999999999998,42.96666666666667],[141.3875,42.96666666666667],[141.3875,42.958333333333336]],"type":"LineString"},"type":"Feature","properties":{"id":"64413351"}}, + {"geometry":{"coordinates":[141.39374999999998,43.05416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414361_bldg_6697_op.zip","id":"64414361","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3875,43.05],[141.39999999999998,43.05],[141.39999999999998,43.05833333333333],[141.3875,43.05833333333333],[141.3875,43.05]],"type":"LineString"},"type":"Feature","properties":{"id":"64414361"}}, + {"geometry":{"coordinates":[141.39374999999998,43.020833333333336],"type":"Point"},"type":"Feature","properties":{"path":"64414321_bldg_6697_op.zip","id":"64414321","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3875,43.016666666666666],[141.39999999999998,43.016666666666666],[141.39999999999998,43.025],[141.3875,43.025],[141.3875,43.016666666666666]],"type":"LineString"},"type":"Feature","properties":{"id":"64414321"}}, + {"geometry":{"coordinates":[141.33124999999998,43.02916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414236_bldg_6697_op.zip","id":"64414236","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.325,43.025],[141.33749999999998,43.025],[141.33749999999998,43.03333333333333],[141.325,43.03333333333333],[141.325,43.025]],"type":"LineString"},"type":"Feature","properties":{"id":"64414236"}}, + {"geometry":{"coordinates":[141.28125,43.07083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64414282_bldg_6697_op.zip","id":"64414282","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.275,43.06666666666667],[141.2875,43.06666666666667],[141.2875,43.075],[141.275,43.075],[141.275,43.06666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64414282"}}, + {"geometry":{"coordinates":[141.20624999999998,43.15416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64415186_bldg_6697_op.zip","id":"64415186","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2,43.15],[141.21249999999998,43.15],[141.21249999999998,43.15833333333333],[141.2,43.15833333333333],[141.2,43.15]],"type":"LineString"},"type":"Feature","properties":{"id":"64415186"}}, + {"geometry":{"coordinates":[141.41875,43.12083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64415343_bldg_6697_op.zip","id":"64415343","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4125,43.11666666666667],[141.42499999999998,43.11666666666667],[141.42499999999998,43.125],[141.4125,43.125],[141.4125,43.11666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64415343"}}, + {"geometry":{"coordinates":[141.45624999999998,43.045833333333334],"type":"Point"},"type":"Feature","properties":{"path":"64414356_bldg_6697_op.zip","id":"64414356","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.45,43.041666666666664],[141.46249999999998,43.041666666666664],[141.46249999999998,43.05],[141.45,43.05],[141.45,43.041666666666664]],"type":"LineString"},"type":"Feature","properties":{"id":"64414356"}}, + {"geometry":{"coordinates":[141.36875,43.170833333333334],"type":"Point"},"type":"Feature","properties":{"path":"64416209_bldg_6697_op.zip","id":"64416209","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3625,43.166666666666664],[141.375,43.166666666666664],[141.375,43.175],[141.3625,43.175],[141.3625,43.166666666666664]],"type":"LineString"},"type":"Feature","properties":{"id":"64416209"}}, + {"geometry":{"coordinates":[141.34375,43.05416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414267_bldg_6697_op.zip","id":"64414267","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3375,43.05],[141.35,43.05],[141.35,43.05833333333333],[141.3375,43.05833333333333],[141.3375,43.05]],"type":"LineString"},"type":"Feature","properties":{"id":"64414267"}}, + {"geometry":{"coordinates":[141.30625,42.94583333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413234_bldg_6697_op.zip","id":"64413234","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3,42.94166666666667],[141.3125,42.94166666666667],[141.3125,42.95],[141.3,42.95],[141.3,42.94166666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64413234"}}, + {"geometry":{"coordinates":[141.34375,42.94583333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413237_bldg_6697_op.zip","id":"64413237","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3375,42.94166666666667],[141.35,42.94166666666667],[141.35,42.95],[141.3375,42.95],[141.3375,42.94166666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64413237"}}, + {"geometry":{"coordinates":[141.44375,43.145833333333336],"type":"Point"},"type":"Feature","properties":{"path":"64415375_bldg_6697_op.zip","id":"64415375","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4375,43.141666666666666],[141.45,43.141666666666666],[141.45,43.15],[141.4375,43.15],[141.4375,43.141666666666666]],"type":"LineString"},"type":"Feature","properties":{"id":"64415375"}}, + {"geometry":{"coordinates":[141.43125,42.987500000000004],"type":"Point"},"type":"Feature","properties":{"path":"64413384_bldg_6697_op.zip","id":"64413384","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.425,42.983333333333334],[141.4375,42.983333333333334],[141.4375,42.99166666666667],[141.425,42.99166666666667],[141.425,42.983333333333334]],"type":"LineString"},"type":"Feature","properties":{"id":"64413384"}}, + {"geometry":{"coordinates":[141.19375,42.962500000000006],"type":"Point"},"type":"Feature","properties":{"path":"64413155_bldg_6697_op.zip","id":"64413155","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.1875,42.958333333333336],[141.2,42.958333333333336],[141.2,42.96666666666667],[141.1875,42.96666666666667],[141.1875,42.958333333333336]],"type":"LineString"},"type":"Feature","properties":{"id":"64413155"}}, + {"geometry":{"coordinates":[141.23125,42.962500000000006],"type":"Point"},"type":"Feature","properties":{"path":"64413158_bldg_6697_op.zip","id":"64413158","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.225,42.958333333333336],[141.23749999999998,42.958333333333336],[141.23749999999998,42.96666666666667],[141.225,42.96666666666667],[141.225,42.958333333333336]],"type":"LineString"},"type":"Feature","properties":{"id":"64413158"}}, + {"geometry":{"coordinates":[141.26874999999998,43.145833333333336],"type":"Point"},"type":"Feature","properties":{"path":"64415271_bldg_6697_op.zip","id":"64415271","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2625,43.141666666666666],[141.27499999999998,43.141666666666666],[141.27499999999998,43.15],[141.2625,43.15],[141.2625,43.141666666666666]],"type":"LineString"},"type":"Feature","properties":{"id":"64415271"}}, + {"geometry":{"coordinates":[141.29375,42.962500000000006],"type":"Point"},"type":"Feature","properties":{"path":"64413253_bldg_6697_op.zip","id":"64413253","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2875,42.958333333333336],[141.29999999999998,42.958333333333336],[141.29999999999998,42.96666666666667],[141.2875,42.96666666666667],[141.2875,42.958333333333336]],"type":"LineString"},"type":"Feature","properties":{"id":"64413253"}}, + {"geometry":{"coordinates":[141.39374999999998,43.07916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414391_bldg_6697_op.zip","id":"64414391","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3875,43.075],[141.39999999999998,43.075],[141.39999999999998,43.083333333333336],[141.3875,43.083333333333336],[141.3875,43.075]],"type":"LineString"},"type":"Feature","properties":{"id":"64414391"}}, + {"geometry":{"coordinates":[141.34375,43.15416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64415287_bldg_6697_op.zip","id":"64415287","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3375,43.15],[141.35,43.15],[141.35,43.15833333333333],[141.3375,43.15833333333333],[141.3375,43.15]],"type":"LineString"},"type":"Feature","properties":{"id":"64415287"}}, + {"geometry":{"coordinates":[141.20624999999998,43.07916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414196_bldg_6697_op.zip","id":"64414196","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2,43.075],[141.21249999999998,43.075],[141.21249999999998,43.083333333333336],[141.2,43.083333333333336],[141.2,43.075]],"type":"LineString"},"type":"Feature","properties":{"id":"64414196"}}, + {"geometry":{"coordinates":[141.21875,42.962500000000006],"type":"Point"},"type":"Feature","properties":{"path":"64413157_bldg_6697_op.zip","id":"64413157","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2125,42.958333333333336],[141.225,42.958333333333336],[141.225,42.96666666666667],[141.2125,42.96666666666667],[141.2125,42.958333333333336]],"type":"LineString"},"type":"Feature","properties":{"id":"64413157"}}, + {"geometry":{"coordinates":[141.28125,43.10416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64415222_bldg_6697_op.zip","id":"64415222","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.275,43.1],[141.2875,43.1],[141.2875,43.108333333333334],[141.275,43.108333333333334],[141.275,43.1]],"type":"LineString"},"type":"Feature","properties":{"id":"64415222"}}, + {"geometry":{"coordinates":[141.26874999999998,43.045833333333334],"type":"Point"},"type":"Feature","properties":{"path":"64414251_bldg_6697_op.zip","id":"64414251","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2625,43.041666666666664],[141.27499999999998,43.041666666666664],[141.27499999999998,43.05],[141.2625,43.05],[141.2625,43.041666666666664]],"type":"LineString"},"type":"Feature","properties":{"id":"64414251"}}, + {"geometry":{"coordinates":[141.33124999999998,42.90416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64412286_bldg_6697_op.zip","id":"64412286","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.325,42.9],[141.33749999999998,42.9],[141.33749999999998,42.90833333333333],[141.325,42.90833333333333],[141.325,42.9]],"type":"LineString"},"type":"Feature","properties":{"id":"64412286"}}, + {"geometry":{"coordinates":[141.26874999999998,42.97083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413261_bldg_6697_op.zip","id":"64413261","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2625,42.96666666666667],[141.27499999999998,42.96666666666667],[141.27499999999998,42.975],[141.2625,42.975],[141.2625,42.96666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64413261"}}, + {"geometry":{"coordinates":[141.44375,43.09583333333334],"type":"Point"},"type":"Feature","properties":{"path":"64415315_bldg_6697_op.zip","id":"64415315","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4375,43.09166666666667],[141.45,43.09166666666667],[141.45,43.1],[141.4375,43.1],[141.4375,43.09166666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64415315"}}, + {"geometry":{"coordinates":[141.24375,43.0375],"type":"Point"},"type":"Feature","properties":{"path":"64414149_bldg_6697_op.zip","id":"64414149","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2375,43.03333333333333],[141.25,43.03333333333333],[141.25,43.041666666666664],[141.2375,43.041666666666664],[141.2375,43.03333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414149"}}, + {"geometry":{"coordinates":[141.26874999999998,43.020833333333336],"type":"Point"},"type":"Feature","properties":{"path":"64414221_bldg_6697_op.zip","id":"64414221","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2625,43.016666666666666],[141.27499999999998,43.016666666666666],[141.27499999999998,43.025],[141.2625,43.025],[141.2625,43.016666666666666]],"type":"LineString"},"type":"Feature","properties":{"id":"64414221"}}, + {"geometry":{"coordinates":[141.36875,43.12083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64415249_bldg_6697_op.zip","id":"64415249","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3625,43.11666666666667],[141.375,43.11666666666667],[141.375,43.125],[141.3625,43.125],[141.3625,43.11666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64415249"}}, + {"geometry":{"coordinates":[141.41875,43.145833333333336],"type":"Point"},"type":"Feature","properties":{"path":"64415373_bldg_6697_op.zip","id":"64415373","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4125,43.141666666666666],[141.42499999999998,43.141666666666666],[141.42499999999998,43.15],[141.4125,43.15],[141.4125,43.141666666666666]],"type":"LineString"},"type":"Feature","properties":{"id":"64415373"}}, + {"geometry":{"coordinates":[141.26874999999998,43.0375],"type":"Point"},"type":"Feature","properties":{"path":"64414241_bldg_6697_op.zip","id":"64414241","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2625,43.03333333333333],[141.27499999999998,43.03333333333333],[141.27499999999998,43.041666666666664],[141.2625,43.041666666666664],[141.2625,43.03333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414241"}}, + {"geometry":{"coordinates":[141.29375,42.97916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64413273_bldg_6697_op.zip","id":"64413273","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2875,42.975],[141.29999999999998,42.975],[141.29999999999998,42.983333333333334],[141.2875,42.983333333333334],[141.2875,42.975]],"type":"LineString"},"type":"Feature","properties":{"id":"64413273"}}, + {"geometry":{"coordinates":[141.43125,43.112500000000004],"type":"Point"},"type":"Feature","properties":{"path":"64415334_bldg_6697_op.zip","id":"64415334","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.425,43.108333333333334],[141.4375,43.108333333333334],[141.4375,43.11666666666667],[141.425,43.11666666666667],[141.425,43.108333333333334]],"type":"LineString"},"type":"Feature","properties":{"id":"64415334"}}, + {"geometry":{"coordinates":[141.25625,42.94583333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413230_bldg_6697_op.zip","id":"64413230","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.25,42.94166666666667],[141.2625,42.94166666666667],[141.2625,42.95],[141.25,42.95],[141.25,42.94166666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64413230"}}, + {"geometry":{"coordinates":[141.35625,43.0625],"type":"Point"},"type":"Feature","properties":{"path":"64414278_bldg_6697_op.zip","id":"64414278","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.35,43.05833333333333],[141.36249999999998,43.05833333333333],[141.36249999999998,43.06666666666666],[141.35,43.06666666666666],[141.35,43.05833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414278"}}, + {"geometry":{"coordinates":[141.24375,43.1375],"type":"Point"},"type":"Feature","properties":{"path":"64415169_bldg_6697_op.zip","id":"64415169","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2375,43.13333333333333],[141.25,43.13333333333333],[141.25,43.141666666666666],[141.2375,43.141666666666666],[141.2375,43.13333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64415169"}}, + {"geometry":{"coordinates":[141.38125,43.112500000000004],"type":"Point"},"type":"Feature","properties":{"path":"64415330_bldg_6697_op.zip","id":"64415330","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.375,43.108333333333334],[141.3875,43.108333333333334],[141.3875,43.11666666666667],[141.375,43.11666666666667],[141.375,43.108333333333334]],"type":"LineString"},"type":"Feature","properties":{"id":"64415330"}}, + {"geometry":{"coordinates":[141.29375,42.9375],"type":"Point"},"type":"Feature","properties":{"path":"64413223_bldg_6697_op.zip","id":"64413223","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2875,42.93333333333333],[141.29999999999998,42.93333333333333],[141.29999999999998,42.94166666666666],[141.2875,42.94166666666666],[141.2875,42.93333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64413223"}}, + {"geometry":{"coordinates":[141.35625,42.9125],"type":"Point"},"type":"Feature","properties":{"path":"64412298_bldg_6697_op.zip","id":"64412298","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.35,42.90833333333333],[141.36249999999998,42.90833333333333],[141.36249999999998,42.916666666666664],[141.35,42.916666666666664],[141.35,42.90833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64412298"}}, + {"geometry":{"coordinates":[141.41875,42.92916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64413313_bldg_6697_op.zip","id":"64413313","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4125,42.925],[141.42499999999998,42.925],[141.42499999999998,42.93333333333333],[141.4125,42.93333333333333],[141.4125,42.925]],"type":"LineString"},"type":"Feature","properties":{"id":"64413313"}}, + {"geometry":{"coordinates":[141.38125,43.07083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64414380_bldg_6697_op.zip","id":"64414380","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.375,43.06666666666667],[141.3875,43.06666666666667],[141.3875,43.075],[141.375,43.075],[141.375,43.06666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64414380"}}, + {"geometry":{"coordinates":[141.30625,43.087500000000006],"type":"Point"},"type":"Feature","properties":{"path":"64415204_bldg_6697_op.zip","id":"64415204","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3,43.083333333333336],[141.3125,43.083333333333336],[141.3125,43.09166666666667],[141.3,43.09166666666667],[141.3,43.083333333333336]],"type":"LineString"},"type":"Feature","properties":{"id":"64415204"}}, + {"geometry":{"coordinates":[141.31875,42.99583333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413295_bldg_6697_op.zip","id":"64413295","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3125,42.99166666666667],[141.325,42.99166666666667],[141.325,43],[141.3125,43],[141.3125,42.99166666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64413295"}}, + {"geometry":{"coordinates":[141.35625,43.00416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414208_bldg_6697_op.zip","id":"64414208","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.35,43],[141.36249999999998,43],[141.36249999999998,43.00833333333333],[141.35,43.00833333333333],[141.35,43]],"type":"LineString"},"type":"Feature","properties":{"id":"64414208"}}, + {"geometry":{"coordinates":[141.45624999999998,43.07916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414396_bldg_6697_op.zip","id":"64414396","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.45,43.075],[141.46249999999998,43.075],[141.46249999999998,43.083333333333336],[141.45,43.083333333333336],[141.45,43.075]],"type":"LineString"},"type":"Feature","properties":{"id":"64414396"}}, + {"geometry":{"coordinates":[141.30625,43.07083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64414284_bldg_6697_op.zip","id":"64414284","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3,43.06666666666667],[141.3125,43.06666666666667],[141.3125,43.075],[141.3,43.075],[141.3,43.06666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64414284"}}, + {"geometry":{"coordinates":[141.28125,43.12916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64415252_bldg_6697_op.zip","id":"64415252","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.275,43.125],[141.2875,43.125],[141.2875,43.13333333333333],[141.275,43.13333333333333],[141.275,43.125]],"type":"LineString"},"type":"Feature","properties":{"id":"64415252"}}, + {"geometry":{"coordinates":[141.46875,43.00416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414307_bldg_6697_op.zip","id":"64414307","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4625,43],[141.475,43],[141.475,43.00833333333333],[141.4625,43.00833333333333],[141.4625,43]],"type":"LineString"},"type":"Feature","properties":{"id":"64414307"}}, + {"geometry":{"coordinates":[141.38125,43.045833333333334],"type":"Point"},"type":"Feature","properties":{"path":"64414350_bldg_6697_op.zip","id":"64414350","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.375,43.041666666666664],[141.3875,43.041666666666664],[141.3875,43.05],[141.375,43.05],[141.375,43.041666666666664]],"type":"LineString"},"type":"Feature","properties":{"id":"64414350"}}, + {"geometry":{"coordinates":[141.15625,42.95416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64413142_bldg_6697_op.zip","id":"64413142","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.15,42.95],[141.1625,42.95],[141.1625,42.958333333333336],[141.15,42.958333333333336],[141.15,42.95]],"type":"LineString"},"type":"Feature","properties":{"id":"64413142"}}, + {"geometry":{"coordinates":[141.44375,43.12083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64415345_bldg_6697_op.zip","id":"64415345","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4375,43.11666666666667],[141.45,43.11666666666667],[141.45,43.125],[141.4375,43.125],[141.4375,43.11666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64415345"}}, + {"geometry":{"coordinates":[141.23125,43.0625],"type":"Point"},"type":"Feature","properties":{"path":"64414178_bldg_6697_op.zip","id":"64414178","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.225,43.05833333333333],[141.23749999999998,43.05833333333333],[141.23749999999998,43.06666666666666],[141.225,43.06666666666666],[141.225,43.05833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414178"}}, + {"geometry":{"coordinates":[141.43125,42.95416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64413344_bldg_6697_op.zip","id":"64413344","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.425,42.95],[141.4375,42.95],[141.4375,42.958333333333336],[141.425,42.958333333333336],[141.425,42.95]],"type":"LineString"},"type":"Feature","properties":{"id":"64413344"}}, + {"geometry":{"coordinates":[141.33124999999998,42.987500000000004],"type":"Point"},"type":"Feature","properties":{"path":"64413286_bldg_6697_op.zip","id":"64413286","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.325,42.983333333333334],[141.33749999999998,42.983333333333334],[141.33749999999998,42.99166666666667],[141.325,42.99166666666667],[141.325,42.983333333333334]],"type":"LineString"},"type":"Feature","properties":{"id":"64413286"}}, + {"geometry":{"coordinates":[141.39374999999998,42.97083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413361_bldg_6697_op.zip","id":"64413361","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3875,42.96666666666667],[141.39999999999998,42.96666666666667],[141.39999999999998,42.975],[141.3875,42.975],[141.3875,42.96666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64413361"}}, + {"geometry":{"coordinates":[141.36875,42.9125],"type":"Point"},"type":"Feature","properties":{"path":"64412299_bldg_6697_op.zip","id":"64412299","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3625,42.90833333333333],[141.375,42.90833333333333],[141.375,42.916666666666664],[141.3625,42.916666666666664],[141.3625,42.90833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64412299"}}, + {"geometry":{"coordinates":[141.45624999999998,43.00416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414306_bldg_6697_op.zip","id":"64414306","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.45,43],[141.46249999999998,43],[141.46249999999998,43.00833333333333],[141.45,43.00833333333333],[141.45,43]],"type":"LineString"},"type":"Feature","properties":{"id":"64414306"}}, + {"geometry":{"coordinates":[141.31875,43.12916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64415255_bldg_6697_op.zip","id":"64415255","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3125,43.125],[141.325,43.125],[141.325,43.13333333333333],[141.3125,43.13333333333333],[141.3125,43.125]],"type":"LineString"},"type":"Feature","properties":{"id":"64415255"}}, + {"geometry":{"coordinates":[141.29375,43.05416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414263_bldg_6697_op.zip","id":"64414263","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2875,43.05],[141.29999999999998,43.05],[141.29999999999998,43.05833333333333],[141.2875,43.05833333333333],[141.2875,43.05]],"type":"LineString"},"type":"Feature","properties":{"id":"64414263"}}, + {"geometry":{"coordinates":[141.36875,43.12916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64415259_bldg_6697_op.zip","id":"64415259","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3625,43.125],[141.375,43.125],[141.375,43.13333333333333],[141.3625,43.13333333333333],[141.3625,43.125]],"type":"LineString"},"type":"Feature","properties":{"id":"64415259"}}, + {"geometry":{"coordinates":[141.26874999999998,43.112500000000004],"type":"Point"},"type":"Feature","properties":{"path":"64415231_bldg_6697_op.zip","id":"64415231","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2625,43.108333333333334],[141.27499999999998,43.108333333333334],[141.27499999999998,43.11666666666667],[141.2625,43.11666666666667],[141.2625,43.108333333333334]],"type":"LineString"},"type":"Feature","properties":{"id":"64415231"}}, + {"geometry":{"coordinates":[141.41875,42.987500000000004],"type":"Point"},"type":"Feature","properties":{"path":"64413383_bldg_6697_op.zip","id":"64413383","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4125,42.983333333333334],[141.42499999999998,42.983333333333334],[141.42499999999998,42.99166666666667],[141.4125,42.99166666666667],[141.4125,42.983333333333334]],"type":"LineString"},"type":"Feature","properties":{"id":"64413383"}}, + {"geometry":{"coordinates":[141.46875,43.09583333333334],"type":"Point"},"type":"Feature","properties":{"path":"64415317_bldg_6697_op.zip","id":"64415317","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4625,43.09166666666667],[141.475,43.09166666666667],[141.475,43.1],[141.4625,43.1],[141.4625,43.09166666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64415317"}}, + {"geometry":{"coordinates":[141.43125,43.045833333333334],"type":"Point"},"type":"Feature","properties":{"path":"64414354_bldg_6697_op.zip","id":"64414354","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.425,43.041666666666664],[141.4375,43.041666666666664],[141.4375,43.05],[141.425,43.05],[141.425,43.041666666666664]],"type":"LineString"},"type":"Feature","properties":{"id":"64414354"}}, + {"geometry":{"coordinates":[141.31875,43.09583333333334],"type":"Point"},"type":"Feature","properties":{"path":"64415215_bldg_6697_op.zip","id":"64415215","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3125,43.09166666666667],[141.325,43.09166666666667],[141.325,43.1],[141.3125,43.1],[141.3125,43.09166666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64415215"}}, + {"geometry":{"coordinates":[141.24375,43.02916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414139_bldg_6697_op.zip","id":"64414139","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2375,43.025],[141.25,43.025],[141.25,43.03333333333333],[141.2375,43.03333333333333],[141.2375,43.025]],"type":"LineString"},"type":"Feature","properties":{"id":"64414139"}}, + {"geometry":{"coordinates":[141.36875,43.09583333333334],"type":"Point"},"type":"Feature","properties":{"path":"64415219_bldg_6697_op.zip","id":"64415219","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3625,43.09166666666667],[141.375,43.09166666666667],[141.375,43.1],[141.3625,43.1],[141.3625,43.09166666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64415219"}}, + {"geometry":{"coordinates":[141.20624999999998,43.12916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64415156_bldg_6697_op.zip","id":"64415156","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2,43.125],[141.21249999999998,43.125],[141.21249999999998,43.13333333333333],[141.2,43.13333333333333],[141.2,43.125]],"type":"LineString"},"type":"Feature","properties":{"id":"64415156"}}, + {"geometry":{"coordinates":[141.30625,43.0625],"type":"Point"},"type":"Feature","properties":{"path":"64414274_bldg_6697_op.zip","id":"64414274","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3,43.05833333333333],[141.3125,43.05833333333333],[141.3125,43.06666666666666],[141.3,43.06666666666666],[141.3,43.05833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414274"}}, + {"geometry":{"coordinates":[141.25625,42.920833333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413200_bldg_6697_op.zip","id":"64413200","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.25,42.916666666666664],[141.2625,42.916666666666664],[141.2625,42.925],[141.25,42.925],[141.25,42.916666666666664]],"type":"LineString"},"type":"Feature","properties":{"id":"64413200"}}, + {"geometry":{"coordinates":[141.46875,43.020833333333336],"type":"Point"},"type":"Feature","properties":{"path":"64414327_bldg_6697_op.zip","id":"64414327","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4625,43.016666666666666],[141.475,43.016666666666666],[141.475,43.025],[141.4625,43.025],[141.4625,43.016666666666666]],"type":"LineString"},"type":"Feature","properties":{"id":"64414327"}}, + {"geometry":{"coordinates":[141.28125,42.97916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64413272_bldg_6697_op.zip","id":"64413272","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.275,42.975],[141.2875,42.975],[141.2875,42.983333333333334],[141.275,42.983333333333334],[141.275,42.975]],"type":"LineString"},"type":"Feature","properties":{"id":"64413272"}}, + {"geometry":{"coordinates":[141.34375,42.9375],"type":"Point"},"type":"Feature","properties":{"path":"64413227_bldg_6697_op.zip","id":"64413227","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3375,42.93333333333333],[141.35,42.93333333333333],[141.35,42.94166666666666],[141.3375,42.94166666666666],[141.3375,42.93333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64413227"}}, + {"geometry":{"coordinates":[141.21875,42.97083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413167_bldg_6697_op.zip","id":"64413167","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2125,42.96666666666667],[141.225,42.96666666666667],[141.225,42.975],[141.2125,42.975],[141.2125,42.96666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64413167"}}, + {"geometry":{"coordinates":[141.44375,43.0125],"type":"Point"},"type":"Feature","properties":{"path":"64414315_bldg_6697_op.zip","id":"64414315","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4375,43.00833333333333],[141.45,43.00833333333333],[141.45,43.016666666666666],[141.4375,43.016666666666666],[141.4375,43.00833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414315"}}, + {"geometry":{"coordinates":[141.31875,42.962500000000006],"type":"Point"},"type":"Feature","properties":{"path":"64413255_bldg_6697_op.zip","id":"64413255","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3125,42.958333333333336],[141.325,42.958333333333336],[141.325,42.96666666666667],[141.3125,42.96666666666667],[141.3125,42.958333333333336]],"type":"LineString"},"type":"Feature","properties":{"id":"64413255"}}, + {"geometry":{"coordinates":[141.36875,42.95416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64413249_bldg_6697_op.zip","id":"64413249","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3625,42.95],[141.375,42.95],[141.375,42.958333333333336],[141.3625,42.958333333333336],[141.3625,42.95]],"type":"LineString"},"type":"Feature","properties":{"id":"64413249"}}, + {"geometry":{"coordinates":[141.30625,43.1375],"type":"Point"},"type":"Feature","properties":{"path":"64415264_bldg_6697_op.zip","id":"64415264","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3,43.13333333333333],[141.3125,43.13333333333333],[141.3125,43.141666666666666],[141.3,43.141666666666666],[141.3,43.13333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64415264"}}, + {"geometry":{"coordinates":[141.46875,42.987500000000004],"type":"Point"},"type":"Feature","properties":{"path":"64413387_bldg_6697_op.zip","id":"64413387","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4625,42.983333333333334],[141.475,42.983333333333334],[141.475,42.99166666666667],[141.4625,42.99166666666667],[141.4625,42.983333333333334]],"type":"LineString"},"type":"Feature","properties":{"id":"64413387"}}, + {"geometry":{"coordinates":[141.23125,42.97083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413168_bldg_6697_op.zip","id":"64413168","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.225,42.96666666666667],[141.23749999999998,42.96666666666667],[141.23749999999998,42.975],[141.225,42.975],[141.225,42.96666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64413168"}}, + {"geometry":{"coordinates":[141.35625,42.962500000000006],"type":"Point"},"type":"Feature","properties":{"path":"64413258_bldg_6697_op.zip","id":"64413258","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.35,42.958333333333336],[141.36249999999998,42.958333333333336],[141.36249999999998,42.96666666666667],[141.35,42.96666666666667],[141.35,42.958333333333336]],"type":"LineString"},"type":"Feature","properties":{"id":"64413258"}}, + {"geometry":{"coordinates":[141.46875,43.0375],"type":"Point"},"type":"Feature","properties":{"path":"64414347_bldg_6697_op.zip","id":"64414347","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4625,43.03333333333333],[141.475,43.03333333333333],[141.475,43.041666666666664],[141.4625,43.041666666666664],[141.4625,43.03333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414347"}}, + {"geometry":{"coordinates":[141.39374999999998,43.045833333333334],"type":"Point"},"type":"Feature","properties":{"path":"64414351_bldg_6697_op.zip","id":"64414351","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3875,43.041666666666664],[141.39999999999998,43.041666666666664],[141.39999999999998,43.05],[141.3875,43.05],[141.3875,43.041666666666664]],"type":"LineString"},"type":"Feature","properties":{"id":"64414351"}}, + {"geometry":{"coordinates":[141.39374999999998,42.92916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64413311_bldg_6697_op.zip","id":"64413311","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3875,42.925],[141.39999999999998,42.925],[141.39999999999998,42.93333333333333],[141.3875,42.93333333333333],[141.3875,42.925]],"type":"LineString"},"type":"Feature","properties":{"id":"64413311"}}, + {"geometry":{"coordinates":[141.24375,43.09583333333334],"type":"Point"},"type":"Feature","properties":{"path":"64415119_bldg_6697_op.zip","id":"64415119","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2375,43.09166666666667],[141.25,43.09166666666667],[141.25,43.1],[141.2375,43.1],[141.2375,43.09166666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64415119"}}, + {"geometry":{"coordinates":[141.44375,42.94583333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413335_bldg_6697_op.zip","id":"64413335","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4375,42.94166666666667],[141.45,42.94166666666667],[141.45,42.95],[141.4375,42.95],[141.4375,42.94166666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64413335"}}, + {"geometry":{"coordinates":[141.40625,43.1875],"type":"Point"},"type":"Feature","properties":{"path":"64416322_bldg_6697_op.zip","id":"64416322","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4,43.18333333333333],[141.4125,43.18333333333333],[141.4125,43.19166666666666],[141.4,43.19166666666666],[141.4,43.18333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64416322"}}, + {"geometry":{"coordinates":[141.34375,43.00416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414207_bldg_6697_op.zip","id":"64414207","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3375,43],[141.35,43],[141.35,43.00833333333333],[141.3375,43.00833333333333],[141.3375,43]],"type":"LineString"},"type":"Feature","properties":{"id":"64414207"}}, + {"geometry":{"coordinates":[141.24375,42.962500000000006],"type":"Point"},"type":"Feature","properties":{"path":"64413159_bldg_6697_op.zip","id":"64413159","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2375,42.958333333333336],[141.25,42.958333333333336],[141.25,42.96666666666667],[141.2375,42.96666666666667],[141.2375,42.958333333333336]],"type":"LineString"},"type":"Feature","properties":{"id":"64413159"}}, + {"geometry":{"coordinates":[141.13125,42.95416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64413140_bldg_6697_op.zip","id":"64413140","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.125,42.95],[141.1375,42.95],[141.1375,42.958333333333336],[141.125,42.958333333333336],[141.125,42.95]],"type":"LineString"},"type":"Feature","properties":{"id":"64413140"}}, + {"geometry":{"coordinates":[141.24375,43.12916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64415159_bldg_6697_op.zip","id":"64415159","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2375,43.125],[141.25,43.125],[141.25,43.13333333333333],[141.2375,43.13333333333333],[141.2375,43.125]],"type":"LineString"},"type":"Feature","properties":{"id":"64415159"}}, + {"geometry":{"coordinates":[141.24375,43.15416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64415189_bldg_6697_op.zip","id":"64415189","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2375,43.15],[141.25,43.15],[141.25,43.15833333333333],[141.2375,43.15833333333333],[141.2375,43.15]],"type":"LineString"},"type":"Feature","properties":{"id":"64415189"}}, + {"geometry":{"coordinates":[141.48125,43.045833333333334],"type":"Point"},"type":"Feature","properties":{"path":"64414358_bldg_6697_op.zip","id":"64414358","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.475,43.041666666666664],[141.48749999999998,43.041666666666664],[141.48749999999998,43.05],[141.475,43.05],[141.475,43.041666666666664]],"type":"LineString"},"type":"Feature","properties":{"id":"64414358"}}, + {"geometry":{"coordinates":[141.25625,43.10416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64415220_bldg_6697_op.zip","id":"64415220","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.25,43.1],[141.2625,43.1],[141.2625,43.108333333333334],[141.25,43.108333333333334],[141.25,43.1]],"type":"LineString"},"type":"Feature","properties":{"id":"64415220"}}, + {"geometry":{"coordinates":[141.40625,43.087500000000006],"type":"Point"},"type":"Feature","properties":{"path":"64415302_bldg_6697_op.zip","id":"64415302","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4,43.083333333333336],[141.4125,43.083333333333336],[141.4125,43.09166666666667],[141.4,43.09166666666667],[141.4,43.083333333333336]],"type":"LineString"},"type":"Feature","properties":{"id":"64415302"}}, + {"geometry":{"coordinates":[141.34375,42.920833333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413207_bldg_6697_op.zip","id":"64413207","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3375,42.916666666666664],[141.35,42.916666666666664],[141.35,42.925],[141.3375,42.925],[141.3375,42.916666666666664]],"type":"LineString"},"type":"Feature","properties":{"id":"64413207"}}, + {"geometry":{"coordinates":[141.29375,43.1375],"type":"Point"},"type":"Feature","properties":{"path":"64415263_bldg_6697_op.zip","id":"64415263","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2875,43.13333333333333],[141.29999999999998,43.13333333333333],[141.29999999999998,43.141666666666666],[141.2875,43.141666666666666],[141.2875,43.13333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64415263"}}, + {"geometry":{"coordinates":[141.13125,42.94583333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413130_bldg_6697_op.zip","id":"64413130","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.125,42.94166666666667],[141.1375,42.94166666666667],[141.1375,42.95],[141.125,42.95],[141.125,42.94166666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64413130"}}, + {"geometry":{"coordinates":[141.35625,43.05416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414268_bldg_6697_op.zip","id":"64414268","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.35,43.05],[141.36249999999998,43.05],[141.36249999999998,43.05833333333333],[141.35,43.05833333333333],[141.35,43.05]],"type":"LineString"},"type":"Feature","properties":{"id":"64414268"}}, + {"geometry":{"coordinates":[141.25625,43.07916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414290_bldg_6697_op.zip","id":"64414290","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.25,43.075],[141.2625,43.075],[141.2625,43.083333333333336],[141.25,43.083333333333336],[141.25,43.075]],"type":"LineString"},"type":"Feature","properties":{"id":"64414290"}}, + {"geometry":{"coordinates":[141.45624999999998,42.987500000000004],"type":"Point"},"type":"Feature","properties":{"path":"64413386_bldg_6697_op.zip","id":"64413386","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.45,42.983333333333334],[141.46249999999998,42.983333333333334],[141.46249999999998,42.99166666666667],[141.45,42.99166666666667],[141.45,42.983333333333334]],"type":"LineString"},"type":"Feature","properties":{"id":"64413386"}}, + {"geometry":{"coordinates":[141.30625,43.0125],"type":"Point"},"type":"Feature","properties":{"path":"64414214_bldg_6697_op.zip","id":"64414214","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3,43.00833333333333],[141.3125,43.00833333333333],[141.3125,43.016666666666666],[141.3,43.016666666666666],[141.3,43.00833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414214"}}, + {"geometry":{"coordinates":[141.21875,43.07083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64414187_bldg_6697_op.zip","id":"64414187","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2125,43.06666666666667],[141.225,43.06666666666667],[141.225,43.075],[141.2125,43.075],[141.2125,43.06666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64414187"}}, + {"geometry":{"coordinates":[141.35625,43.09583333333334],"type":"Point"},"type":"Feature","properties":{"path":"64415218_bldg_6697_op.zip","id":"64415218","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.35,43.09166666666667],[141.36249999999998,43.09166666666667],[141.36249999999998,43.1],[141.35,43.1],[141.35,43.09166666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64415218"}}, + {"geometry":{"coordinates":[141.33124999999998,43.112500000000004],"type":"Point"},"type":"Feature","properties":{"path":"64415236_bldg_6697_op.zip","id":"64415236","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.325,43.108333333333334],[141.33749999999998,43.108333333333334],[141.33749999999998,43.11666666666667],[141.325,43.11666666666667],[141.325,43.108333333333334]],"type":"LineString"},"type":"Feature","properties":{"id":"64415236"}}, + {"geometry":{"coordinates":[141.25625,43.0625],"type":"Point"},"type":"Feature","properties":{"path":"64414270_bldg_6697_op.zip","id":"64414270","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.25,43.05833333333333],[141.2625,43.05833333333333],[141.2625,43.06666666666666],[141.25,43.06666666666666],[141.25,43.05833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414270"}}, + {"geometry":{"coordinates":[141.19375,43.087500000000006],"type":"Point"},"type":"Feature","properties":{"path":"64415105_bldg_6697_op.zip","id":"64415105","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.1875,43.083333333333336],[141.2,43.083333333333336],[141.2,43.09166666666667],[141.1875,43.09166666666667],[141.1875,43.083333333333336]],"type":"LineString"},"type":"Feature","properties":{"id":"64415105"}}, + {"geometry":{"coordinates":[141.43125,43.020833333333336],"type":"Point"},"type":"Feature","properties":{"path":"64414324_bldg_6697_op.zip","id":"64414324","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.425,43.016666666666666],[141.4375,43.016666666666666],[141.4375,43.025],[141.425,43.025],[141.425,43.016666666666666]],"type":"LineString"},"type":"Feature","properties":{"id":"64414324"}}, + {"geometry":{"coordinates":[141.40625,42.920833333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413302_bldg_6697_op.zip","id":"64413302","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4,42.916666666666664],[141.4125,42.916666666666664],[141.4125,42.925],[141.4,42.925],[141.4,42.916666666666664]],"type":"LineString"},"type":"Feature","properties":{"id":"64413302"}}, + {"geometry":{"coordinates":[141.26874999999998,43.0625],"type":"Point"},"type":"Feature","properties":{"path":"64414271_bldg_6697_op.zip","id":"64414271","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2625,43.05833333333333],[141.27499999999998,43.05833333333333],[141.27499999999998,43.06666666666666],[141.2625,43.06666666666666],[141.2625,43.05833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414271"}}, + {"geometry":{"coordinates":[141.44375,43.0625],"type":"Point"},"type":"Feature","properties":{"path":"64414375_bldg_6697_op.zip","id":"64414375","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4375,43.05833333333333],[141.45,43.05833333333333],[141.45,43.06666666666666],[141.4375,43.06666666666666],[141.4375,43.05833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414375"}}, + {"geometry":{"coordinates":[141.38125,42.9125],"type":"Point"},"type":"Feature","properties":{"path":"64412390_bldg_6697_op.zip","id":"64412390","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.375,42.90833333333333],[141.3875,42.90833333333333],[141.3875,42.916666666666664],[141.375,42.916666666666664],[141.375,42.90833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64412390"}}, + {"geometry":{"coordinates":[141.15625,42.92916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64413112_bldg_6697_op.zip","id":"64413112","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.15,42.925],[141.1625,42.925],[141.1625,42.93333333333333],[141.15,42.93333333333333],[141.15,42.925]],"type":"LineString"},"type":"Feature","properties":{"id":"64413112"}}, + {"geometry":{"coordinates":[141.45624999999998,43.12916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64415356_bldg_6697_op.zip","id":"64415356","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.45,43.125],[141.46249999999998,43.125],[141.46249999999998,43.13333333333333],[141.45,43.13333333333333],[141.45,43.125]],"type":"LineString"},"type":"Feature","properties":{"id":"64415356"}}, + {"geometry":{"coordinates":[141.40625,43.1375],"type":"Point"},"type":"Feature","properties":{"path":"64415362_bldg_6697_op.zip","id":"64415362","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4,43.13333333333333],[141.4125,43.13333333333333],[141.4125,43.141666666666666],[141.4,43.141666666666666],[141.4,43.13333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64415362"}}, + {"geometry":{"coordinates":[141.28125,43.02916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414232_bldg_6697_op.zip","id":"64414232","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.275,43.025],[141.2875,43.025],[141.2875,43.03333333333333],[141.275,43.03333333333333],[141.275,43.025]],"type":"LineString"},"type":"Feature","properties":{"id":"64414232"}}, + {"geometry":{"coordinates":[141.30625,42.987500000000004],"type":"Point"},"type":"Feature","properties":{"path":"64413284_bldg_6697_op.zip","id":"64413284","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3,42.983333333333334],[141.3125,42.983333333333334],[141.3125,42.99166666666667],[141.3,42.99166666666667],[141.3,42.983333333333334]],"type":"LineString"},"type":"Feature","properties":{"id":"64413284"}}, + {"geometry":{"coordinates":[141.31875,42.92916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64413215_bldg_6697_op.zip","id":"64413215","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3125,42.925],[141.325,42.925],[141.325,42.93333333333333],[141.3125,42.93333333333333],[141.3125,42.925]],"type":"LineString"},"type":"Feature","properties":{"id":"64413215"}}, + {"geometry":{"coordinates":[141.39374999999998,42.99583333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413391_bldg_6697_op.zip","id":"64413391","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3875,42.99166666666667],[141.39999999999998,42.99166666666667],[141.39999999999998,43],[141.3875,43],[141.3875,42.99166666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64413391"}}, + {"geometry":{"coordinates":[141.24375,43.112500000000004],"type":"Point"},"type":"Feature","properties":{"path":"64415139_bldg_6697_op.zip","id":"64415139","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2375,43.108333333333334],[141.25,43.108333333333334],[141.25,43.11666666666667],[141.2375,43.11666666666667],[141.2375,43.108333333333334]],"type":"LineString"},"type":"Feature","properties":{"id":"64415139"}}, + {"geometry":{"coordinates":[141.28125,43.112500000000004],"type":"Point"},"type":"Feature","properties":{"path":"64415232_bldg_6697_op.zip","id":"64415232","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.275,43.108333333333334],[141.2875,43.108333333333334],[141.2875,43.11666666666667],[141.275,43.11666666666667],[141.275,43.108333333333334]],"type":"LineString"},"type":"Feature","properties":{"id":"64415232"}}, + {"geometry":{"coordinates":[141.40625,43.17916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64416312_bldg_6697_op.zip","id":"64416312","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4,43.175],[141.4125,43.175],[141.4125,43.18333333333333],[141.4,43.18333333333333],[141.4,43.175]],"type":"LineString"},"type":"Feature","properties":{"id":"64416312"}}, + {"geometry":{"coordinates":[141.45624999999998,43.087500000000006],"type":"Point"},"type":"Feature","properties":{"path":"64415306_bldg_6697_op.zip","id":"64415306","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.45,43.083333333333336],[141.46249999999998,43.083333333333336],[141.46249999999998,43.09166666666667],[141.45,43.09166666666667],[141.45,43.083333333333336]],"type":"LineString"},"type":"Feature","properties":{"id":"64415306"}}, + {"geometry":{"coordinates":[141.30625,42.962500000000006],"type":"Point"},"type":"Feature","properties":{"path":"64413254_bldg_6697_op.zip","id":"64413254","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3,42.958333333333336],[141.3125,42.958333333333336],[141.3125,42.96666666666667],[141.3,42.96666666666667],[141.3,42.958333333333336]],"type":"LineString"},"type":"Feature","properties":{"id":"64413254"}}, + {"geometry":{"coordinates":[141.35625,43.0125],"type":"Point"},"type":"Feature","properties":{"path":"64414218_bldg_6697_op.zip","id":"64414218","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.35,43.00833333333333],[141.36249999999998,43.00833333333333],[141.36249999999998,43.016666666666666],[141.35,43.016666666666666],[141.35,43.00833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414218"}}, + {"geometry":{"coordinates":[141.43125,43.12916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64415354_bldg_6697_op.zip","id":"64415354","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.425,43.125],[141.4375,43.125],[141.4375,43.13333333333333],[141.425,43.13333333333333],[141.425,43.125]],"type":"LineString"},"type":"Feature","properties":{"id":"64415354"}}, + {"geometry":{"coordinates":[141.35625,42.97083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413268_bldg_6697_op.zip","id":"64413268","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.35,42.96666666666667],[141.36249999999998,42.96666666666667],[141.36249999999998,42.975],[141.35,42.975],[141.35,42.96666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64413268"}}, + {"geometry":{"coordinates":[141.30625,42.9375],"type":"Point"},"type":"Feature","properties":{"path":"64413224_bldg_6697_op.zip","id":"64413224","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3,42.93333333333333],[141.3125,42.93333333333333],[141.3125,42.94166666666666],[141.3,42.94166666666666],[141.3,42.93333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64413224"}}, + {"geometry":{"coordinates":[141.19375,43.10416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64415125_bldg_6697_op.zip","id":"64415125","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.1875,43.1],[141.2,43.1],[141.2,43.108333333333334],[141.1875,43.108333333333334],[141.1875,43.1]],"type":"LineString"},"type":"Feature","properties":{"id":"64415125"}}, + {"geometry":{"coordinates":[141.40625,43.12083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64415342_bldg_6697_op.zip","id":"64415342","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4,43.11666666666667],[141.4125,43.11666666666667],[141.4125,43.125],[141.4,43.125],[141.4,43.11666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64415342"}}, + {"geometry":{"coordinates":[141.41875,43.0625],"type":"Point"},"type":"Feature","properties":{"path":"64414373_bldg_6697_op.zip","id":"64414373","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4125,43.05833333333333],[141.42499999999998,43.05833333333333],[141.42499999999998,43.06666666666666],[141.4125,43.06666666666666],[141.4125,43.05833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414373"}}, + {"geometry":{"coordinates":[141.15625,42.97916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64413172_bldg_6697_op.zip","id":"64413172","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.15,42.975],[141.1625,42.975],[141.1625,42.983333333333334],[141.15,42.983333333333334],[141.15,42.975]],"type":"LineString"},"type":"Feature","properties":{"id":"64413172"}}, + {"geometry":{"coordinates":[141.25625,43.112500000000004],"type":"Point"},"type":"Feature","properties":{"path":"64415230_bldg_6697_op.zip","id":"64415230","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.25,43.108333333333334],[141.2625,43.108333333333334],[141.2625,43.11666666666667],[141.25,43.11666666666667],[141.25,43.108333333333334]],"type":"LineString"},"type":"Feature","properties":{"id":"64415230"}}, + {"geometry":{"coordinates":[141.31875,43.05416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414265_bldg_6697_op.zip","id":"64414265","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3125,43.05],[141.325,43.05],[141.325,43.05833333333333],[141.3125,43.05833333333333],[141.3125,43.05]],"type":"LineString"},"type":"Feature","properties":{"id":"64414265"}}, + {"geometry":{"coordinates":[141.30625,43.10416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64415224_bldg_6697_op.zip","id":"64415224","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3,43.1],[141.3125,43.1],[141.3125,43.108333333333334],[141.3,43.108333333333334],[141.3,43.1]],"type":"LineString"},"type":"Feature","properties":{"id":"64415224"}}, + {"geometry":{"coordinates":[141.33124999999998,42.99583333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413296_bldg_6697_op.zip","id":"64413296","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.325,42.99166666666667],[141.33749999999998,42.99166666666667],[141.33749999999998,43],[141.325,43],[141.325,42.99166666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64413296"}}, + {"geometry":{"coordinates":[141.48125,42.99583333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413398_bldg_6697_op.zip","id":"64413398","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.475,42.99166666666667],[141.48749999999998,42.99166666666667],[141.48749999999998,43],[141.475,43],[141.475,42.99166666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64413398"}}, + {"geometry":{"coordinates":[141.13125,42.97916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64413170_bldg_6697_op.zip","id":"64413170","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.125,42.975],[141.1375,42.975],[141.1375,42.983333333333334],[141.125,42.983333333333334],[141.125,42.975]],"type":"LineString"},"type":"Feature","properties":{"id":"64413170"}}, + {"geometry":{"coordinates":[141.39374999999998,43.170833333333334],"type":"Point"},"type":"Feature","properties":{"path":"64416301_bldg_6697_op.zip","id":"64416301","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3875,43.166666666666664],[141.39999999999998,43.166666666666664],[141.39999999999998,43.175],[141.3875,43.175],[141.3875,43.166666666666664]],"type":"LineString"},"type":"Feature","properties":{"id":"64416301"}}, + {"geometry":{"coordinates":[141.34375,42.9125],"type":"Point"},"type":"Feature","properties":{"path":"64412297_bldg_6697_op.zip","id":"64412297","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3375,42.90833333333333],[141.35,42.90833333333333],[141.35,42.916666666666664],[141.3375,42.916666666666664],[141.3375,42.90833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64412297"}}, + {"geometry":{"coordinates":[141.36875,43.10416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64415229_bldg_6697_op.zip","id":"64415229","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3625,43.1],[141.375,43.1],[141.375,43.108333333333334],[141.3625,43.108333333333334],[141.3625,43.1]],"type":"LineString"},"type":"Feature","properties":{"id":"64415229"}}, + {"geometry":{"coordinates":[141.24375,43.145833333333336],"type":"Point"},"type":"Feature","properties":{"path":"64415179_bldg_6697_op.zip","id":"64415179","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2375,43.141666666666666],[141.25,43.141666666666666],[141.25,43.15],[141.2375,43.15],[141.2375,43.141666666666666]],"type":"LineString"},"type":"Feature","properties":{"id":"64415179"}}, + {"geometry":{"coordinates":[141.26874999999998,43.1375],"type":"Point"},"type":"Feature","properties":{"path":"64415261_bldg_6697_op.zip","id":"64415261","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2625,43.13333333333333],[141.27499999999998,43.13333333333333],[141.27499999999998,43.141666666666666],[141.2625,43.141666666666666],[141.2625,43.13333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64415261"}}, + {"geometry":{"coordinates":[141.38125,43.145833333333336],"type":"Point"},"type":"Feature","properties":{"path":"64415370_bldg_6697_op.zip","id":"64415370","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.375,43.141666666666666],[141.3875,43.141666666666666],[141.3875,43.15],[141.375,43.15],[141.375,43.141666666666666]],"type":"LineString"},"type":"Feature","properties":{"id":"64415370"}}, + {"geometry":{"coordinates":[141.26874999999998,43.09583333333334],"type":"Point"},"type":"Feature","properties":{"path":"64415211_bldg_6697_op.zip","id":"64415211","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2625,43.09166666666667],[141.27499999999998,43.09166666666667],[141.27499999999998,43.1],[141.2625,43.1],[141.2625,43.09166666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64415211"}}, + {"geometry":{"coordinates":[141.44375,43.087500000000006],"type":"Point"},"type":"Feature","properties":{"path":"64415305_bldg_6697_op.zip","id":"64415305","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4375,43.083333333333336],[141.45,43.083333333333336],[141.45,43.09166666666667],[141.4375,43.09166666666667],[141.4375,43.083333333333336]],"type":"LineString"},"type":"Feature","properties":{"id":"64415305"}}, + {"geometry":{"coordinates":[141.40625,42.97916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64413372_bldg_6697_op.zip","id":"64413372","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4,42.975],[141.4125,42.975],[141.4125,42.983333333333334],[141.4,42.983333333333334],[141.4,42.975]],"type":"LineString"},"type":"Feature","properties":{"id":"64413372"}}, + {"geometry":{"coordinates":[141.48125,43.00416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414308_bldg_6697_op.zip","id":"64414308","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.475,43],[141.48749999999998,43],[141.48749999999998,43.00833333333333],[141.475,43.00833333333333],[141.475,43]],"type":"LineString"},"type":"Feature","properties":{"id":"64414308"}}, + {"geometry":{"coordinates":[141.44375,43.05416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414365_bldg_6697_op.zip","id":"64414365","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4375,43.05],[141.45,43.05],[141.45,43.05833333333333],[141.4375,43.05833333333333],[141.4375,43.05]],"type":"LineString"},"type":"Feature","properties":{"id":"64414365"}}, + {"geometry":{"coordinates":[141.44375,42.97916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64413375_bldg_6697_op.zip","id":"64413375","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4375,42.975],[141.45,42.975],[141.45,42.983333333333334],[141.4375,42.983333333333334],[141.4375,42.975]],"type":"LineString"},"type":"Feature","properties":{"id":"64413375"}}, + {"geometry":{"coordinates":[141.19375,43.12916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64415155_bldg_6697_op.zip","id":"64415155","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.1875,43.125],[141.2,43.125],[141.2,43.13333333333333],[141.1875,43.13333333333333],[141.1875,43.125]],"type":"LineString"},"type":"Feature","properties":{"id":"64415155"}}, + {"geometry":{"coordinates":[141.34375,43.10416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64415227_bldg_6697_op.zip","id":"64415227","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3375,43.1],[141.35,43.1],[141.35,43.108333333333334],[141.3375,43.108333333333334],[141.3375,43.1]],"type":"LineString"},"type":"Feature","properties":{"id":"64415227"}}, + {"geometry":{"coordinates":[141.34375,43.112500000000004],"type":"Point"},"type":"Feature","properties":{"path":"64415237_bldg_6697_op.zip","id":"64415237","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3375,43.108333333333334],[141.35,43.108333333333334],[141.35,43.11666666666667],[141.3375,43.11666666666667],[141.3375,43.108333333333334]],"type":"LineString"},"type":"Feature","properties":{"id":"64415237"}}, + {"geometry":{"coordinates":[141.26874999999998,42.94583333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413231_bldg_6697_op.zip","id":"64413231","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2625,42.94166666666667],[141.27499999999998,42.94166666666667],[141.27499999999998,42.95],[141.2625,42.95],[141.2625,42.94166666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64413231"}}, + {"geometry":{"coordinates":[141.33124999999998,43.12083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64415246_bldg_6697_op.zip","id":"64415246","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.325,43.11666666666667],[141.33749999999998,43.11666666666667],[141.33749999999998,43.125],[141.325,43.125],[141.325,43.11666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64415246"}}, + {"geometry":{"coordinates":[141.36875,43.0125],"type":"Point"},"type":"Feature","properties":{"path":"64414219_bldg_6697_op.zip","id":"64414219","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3625,43.00833333333333],[141.375,43.00833333333333],[141.375,43.016666666666666],[141.3625,43.016666666666666],[141.3625,43.00833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414219"}}, + {"geometry":{"coordinates":[141.36875,43.07083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64414289_bldg_6697_op.zip","id":"64414289","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3625,43.06666666666667],[141.375,43.06666666666667],[141.375,43.075],[141.3625,43.075],[141.3625,43.06666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64414289"}}, + {"geometry":{"coordinates":[141.40625,43.05416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414362_bldg_6697_op.zip","id":"64414362","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4,43.05],[141.4125,43.05],[141.4125,43.05833333333333],[141.4,43.05833333333333],[141.4,43.05]],"type":"LineString"},"type":"Feature","properties":{"id":"64414362"}}, + {"geometry":{"coordinates":[141.35625,43.12916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64415258_bldg_6697_op.zip","id":"64415258","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.35,43.125],[141.36249999999998,43.125],[141.36249999999998,43.13333333333333],[141.35,43.13333333333333],[141.35,43.125]],"type":"LineString"},"type":"Feature","properties":{"id":"64415258"}}, + {"geometry":{"coordinates":[141.43125,43.0625],"type":"Point"},"type":"Feature","properties":{"path":"64414374_bldg_6697_op.zip","id":"64414374","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.425,43.05833333333333],[141.4375,43.05833333333333],[141.4375,43.06666666666666],[141.425,43.06666666666666],[141.425,43.05833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414374"}}, + {"geometry":{"coordinates":[141.20624999999998,43.10416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64415126_bldg_6697_op.zip","id":"64415126","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2,43.1],[141.21249999999998,43.1],[141.21249999999998,43.108333333333334],[141.2,43.108333333333334],[141.2,43.1]],"type":"LineString"},"type":"Feature","properties":{"id":"64415126"}}, + {"geometry":{"coordinates":[141.29375,42.987500000000004],"type":"Point"},"type":"Feature","properties":{"path":"64413283_bldg_6697_op.zip","id":"64413283","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2875,42.983333333333334],[141.29999999999998,42.983333333333334],[141.29999999999998,42.99166666666667],[141.2875,42.99166666666667],[141.2875,42.983333333333334]],"type":"LineString"},"type":"Feature","properties":{"id":"64413283"}}, + {"geometry":{"coordinates":[141.43125,43.10416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64415324_bldg_6697_op.zip","id":"64415324","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.425,43.1],[141.4375,43.1],[141.4375,43.108333333333334],[141.425,43.108333333333334],[141.425,43.1]],"type":"LineString"},"type":"Feature","properties":{"id":"64415324"}}, + {"geometry":{"coordinates":[141.35625,43.1375],"type":"Point"},"type":"Feature","properties":{"path":"64415268_bldg_6697_op.zip","id":"64415268","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.35,43.13333333333333],[141.36249999999998,43.13333333333333],[141.36249999999998,43.141666666666666],[141.35,43.141666666666666],[141.35,43.13333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64415268"}}, + {"geometry":{"coordinates":[141.20624999999998,43.07083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64414186_bldg_6697_op.zip","id":"64414186","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2,43.06666666666667],[141.21249999999998,43.06666666666667],[141.21249999999998,43.075],[141.2,43.075],[141.2,43.06666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64414186"}}, + {"geometry":{"coordinates":[141.38125,42.92916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64413310_bldg_6697_op.zip","id":"64413310","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.375,42.925],[141.3875,42.925],[141.3875,42.93333333333333],[141.375,42.93333333333333],[141.375,42.925]],"type":"LineString"},"type":"Feature","properties":{"id":"64413310"}}, + {"geometry":{"coordinates":[141.33124999999998,42.95416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64413246_bldg_6697_op.zip","id":"64413246","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.325,42.95],[141.33749999999998,42.95],[141.33749999999998,42.958333333333336],[141.325,42.958333333333336],[141.325,42.95]],"type":"LineString"},"type":"Feature","properties":{"id":"64413246"}}, + {"geometry":{"coordinates":[141.36875,42.97083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413269_bldg_6697_op.zip","id":"64413269","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3625,42.96666666666667],[141.375,42.96666666666667],[141.375,42.975],[141.3625,42.975],[141.3625,42.96666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64413269"}}, + {"geometry":{"coordinates":[141.44375,43.07916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414395_bldg_6697_op.zip","id":"64414395","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4375,43.075],[141.45,43.075],[141.45,43.083333333333336],[141.4375,43.083333333333336],[141.4375,43.075]],"type":"LineString"},"type":"Feature","properties":{"id":"64414395"}}, + {"geometry":{"coordinates":[141.35625,42.987500000000004],"type":"Point"},"type":"Feature","properties":{"path":"64413288_bldg_6697_op.zip","id":"64413288","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.35,42.983333333333334],[141.36249999999998,42.983333333333334],[141.36249999999998,42.99166666666667],[141.35,42.99166666666667],[141.35,42.983333333333334]],"type":"LineString"},"type":"Feature","properties":{"id":"64413288"}}, + {"geometry":{"coordinates":[141.25625,43.07083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64414280_bldg_6697_op.zip","id":"64414280","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.25,43.06666666666667],[141.2625,43.06666666666667],[141.2625,43.075],[141.25,43.075],[141.25,43.06666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64414280"}}, + {"geometry":{"coordinates":[141.25625,43.12916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64415250_bldg_6697_op.zip","id":"64415250","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.25,43.125],[141.2625,43.125],[141.2625,43.13333333333333],[141.25,43.13333333333333],[141.25,43.125]],"type":"LineString"},"type":"Feature","properties":{"id":"64415250"}}, + {"geometry":{"coordinates":[141.41875,43.1625],"type":"Point"},"type":"Feature","properties":{"path":"64415393_bldg_6697_op.zip","id":"64415393","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4125,43.15833333333333],[141.42499999999998,43.15833333333333],[141.42499999999998,43.166666666666664],[141.4125,43.166666666666664],[141.4125,43.15833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64415393"}}, + {"geometry":{"coordinates":[141.39374999999998,43.145833333333336],"type":"Point"},"type":"Feature","properties":{"path":"64415371_bldg_6697_op.zip","id":"64415371","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3875,43.141666666666666],[141.39999999999998,43.141666666666666],[141.39999999999998,43.15],[141.3875,43.15],[141.3875,43.141666666666666]],"type":"LineString"},"type":"Feature","properties":{"id":"64415371"}}, + {"geometry":{"coordinates":[141.35625,42.895833333333336],"type":"Point"},"type":"Feature","properties":{"path":"64412278_bldg_6697_op.zip","id":"64412278","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.35,42.891666666666666],[141.36249999999998,42.891666666666666],[141.36249999999998,42.9],[141.35,42.9],[141.35,42.891666666666666]],"type":"LineString"},"type":"Feature","properties":{"id":"64412278"}}, + {"geometry":{"coordinates":[141.36875,43.112500000000004],"type":"Point"},"type":"Feature","properties":{"path":"64415239_bldg_6697_op.zip","id":"64415239","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3625,43.108333333333334],[141.375,43.108333333333334],[141.375,43.11666666666667],[141.3625,43.11666666666667],[141.3625,43.108333333333334]],"type":"LineString"},"type":"Feature","properties":{"id":"64415239"}}, + {"geometry":{"coordinates":[141.25625,43.02916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414230_bldg_6697_op.zip","id":"64414230","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.25,43.025],[141.2625,43.025],[141.2625,43.03333333333333],[141.25,43.03333333333333],[141.25,43.025]],"type":"LineString"},"type":"Feature","properties":{"id":"64414230"}}, + {"geometry":{"coordinates":[141.26874999999998,43.07083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64414281_bldg_6697_op.zip","id":"64414281","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2625,43.06666666666667],[141.27499999999998,43.06666666666667],[141.27499999999998,43.075],[141.2625,43.075],[141.2625,43.06666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64414281"}}, + {"geometry":{"coordinates":[141.38125,43.02916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414330_bldg_6697_op.zip","id":"64414330","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.375,43.025],[141.3875,43.025],[141.3875,43.03333333333333],[141.375,43.03333333333333],[141.375,43.025]],"type":"LineString"},"type":"Feature","properties":{"id":"64414330"}}, + {"geometry":{"coordinates":[141.40625,43.0125],"type":"Point"},"type":"Feature","properties":{"path":"64414312_bldg_6697_op.zip","id":"64414312","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4,43.00833333333333],[141.4125,43.00833333333333],[141.4125,43.016666666666666],[141.4,43.016666666666666],[141.4,43.00833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414312"}}, + {"geometry":{"coordinates":[141.43125,43.05416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414364_bldg_6697_op.zip","id":"64414364","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.425,43.05],[141.4375,43.05],[141.4375,43.05833333333333],[141.425,43.05833333333333],[141.425,43.05]],"type":"LineString"},"type":"Feature","properties":{"id":"64414364"}}, + {"geometry":{"coordinates":[141.21875,43.12083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64415147_bldg_6697_op.zip","id":"64415147","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2125,43.11666666666667],[141.225,43.11666666666667],[141.225,43.125],[141.2125,43.125],[141.2125,43.11666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64415147"}}, + {"geometry":{"coordinates":[141.28125,42.95416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64413242_bldg_6697_op.zip","id":"64413242","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.275,42.95],[141.2875,42.95],[141.2875,42.958333333333336],[141.275,42.958333333333336],[141.275,42.95]],"type":"LineString"},"type":"Feature","properties":{"id":"64413242"}}, + {"geometry":{"coordinates":[141.41875,43.087500000000006],"type":"Point"},"type":"Feature","properties":{"path":"64415303_bldg_6697_op.zip","id":"64415303","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4125,43.083333333333336],[141.42499999999998,43.083333333333336],[141.42499999999998,43.09166666666667],[141.4125,43.09166666666667],[141.4125,43.083333333333336]],"type":"LineString"},"type":"Feature","properties":{"id":"64415303"}}, + {"geometry":{"coordinates":[141.30625,43.045833333333334],"type":"Point"},"type":"Feature","properties":{"path":"64414254_bldg_6697_op.zip","id":"64414254","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3,43.041666666666664],[141.3125,43.041666666666664],[141.3125,43.05],[141.3,43.05],[141.3,43.041666666666664]],"type":"LineString"},"type":"Feature","properties":{"id":"64414254"}}, + {"geometry":{"coordinates":[141.50625,43.02916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414430_bldg_6697_op.zip","id":"64414430","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.5,43.025],[141.5125,43.025],[141.5125,43.03333333333333],[141.5,43.03333333333333],[141.5,43.025]],"type":"LineString"},"type":"Feature","properties":{"id":"64414430"}}, + {"geometry":{"coordinates":[141.40625,43.00416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414302_bldg_6697_op.zip","id":"64414302","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4,43],[141.4125,43],[141.4125,43.00833333333333],[141.4,43.00833333333333],[141.4,43]],"type":"LineString"},"type":"Feature","properties":{"id":"64414302"}}, + {"geometry":{"coordinates":[141.29375,43.07083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64414283_bldg_6697_op.zip","id":"64414283","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2875,43.06666666666667],[141.29999999999998,43.06666666666667],[141.29999999999998,43.075],[141.2875,43.075],[141.2875,43.06666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64414283"}}, + {"geometry":{"coordinates":[141.33124999999998,43.145833333333336],"type":"Point"},"type":"Feature","properties":{"path":"64415276_bldg_6697_op.zip","id":"64415276","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.325,43.141666666666666],[141.33749999999998,43.141666666666666],[141.33749999999998,43.15],[141.325,43.15],[141.325,43.141666666666666]],"type":"LineString"},"type":"Feature","properties":{"id":"64415276"}}, + {"geometry":{"coordinates":[141.44375,42.97083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413365_bldg_6697_op.zip","id":"64413365","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4375,42.96666666666667],[141.45,42.96666666666667],[141.45,42.975],[141.4375,42.975],[141.4375,42.96666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64413365"}}, + {"geometry":{"coordinates":[141.43125,42.962500000000006],"type":"Point"},"type":"Feature","properties":{"path":"64413354_bldg_6697_op.zip","id":"64413354","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.425,42.958333333333336],[141.4375,42.958333333333336],[141.4375,42.96666666666667],[141.425,42.96666666666667],[141.425,42.958333333333336]],"type":"LineString"},"type":"Feature","properties":{"id":"64413354"}}, + {"geometry":{"coordinates":[141.34375,42.92916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64413217_bldg_6697_op.zip","id":"64413217","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3375,42.925],[141.35,42.925],[141.35,42.93333333333333],[141.3375,42.93333333333333],[141.3375,42.925]],"type":"LineString"},"type":"Feature","properties":{"id":"64413217"}}, + {"geometry":{"coordinates":[141.24375,42.9375],"type":"Point"},"type":"Feature","properties":{"path":"64413129_bldg_6697_op.zip","id":"64413129","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2375,42.93333333333333],[141.25,42.93333333333333],[141.25,42.94166666666666],[141.2375,42.94166666666666],[141.2375,42.93333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64413129"}}, + {"geometry":{"coordinates":[141.44375,43.02916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414335_bldg_6697_op.zip","id":"64414335","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4375,43.025],[141.45,43.025],[141.45,43.03333333333333],[141.4375,43.03333333333333],[141.4375,43.025]],"type":"LineString"},"type":"Feature","properties":{"id":"64414335"}}, + {"geometry":{"coordinates":[141.28125,42.92916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64413212_bldg_6697_op.zip","id":"64413212","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.275,42.925],[141.2875,42.925],[141.2875,42.93333333333333],[141.275,42.93333333333333],[141.275,42.925]],"type":"LineString"},"type":"Feature","properties":{"id":"64413212"}}, + {"geometry":{"coordinates":[141.35625,43.112500000000004],"type":"Point"},"type":"Feature","properties":{"path":"64415238_bldg_6697_op.zip","id":"64415238","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.35,43.108333333333334],[141.36249999999998,43.108333333333334],[141.36249999999998,43.11666666666667],[141.35,43.11666666666667],[141.35,43.108333333333334]],"type":"LineString"},"type":"Feature","properties":{"id":"64415238"}}, + {"geometry":{"coordinates":[141.23125,43.05416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414168_bldg_6697_op.zip","id":"64414168","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.225,43.05],[141.23749999999998,43.05],[141.23749999999998,43.05833333333333],[141.225,43.05833333333333],[141.225,43.05]],"type":"LineString"},"type":"Feature","properties":{"id":"64414168"}}, + {"geometry":{"coordinates":[141.43125,43.07916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414394_bldg_6697_op.zip","id":"64414394","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.425,43.075],[141.4375,43.075],[141.4375,43.083333333333336],[141.425,43.083333333333336],[141.425,43.075]],"type":"LineString"},"type":"Feature","properties":{"id":"64414394"}}, + {"geometry":{"coordinates":[141.31875,43.020833333333336],"type":"Point"},"type":"Feature","properties":{"path":"64414225_bldg_6697_op.zip","id":"64414225","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3125,43.016666666666666],[141.325,43.016666666666666],[141.325,43.025],[141.3125,43.025],[141.3125,43.016666666666666]],"type":"LineString"},"type":"Feature","properties":{"id":"64414225"}}, + {"geometry":{"coordinates":[141.45624999999998,43.02916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414336_bldg_6697_op.zip","id":"64414336","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.45,43.025],[141.46249999999998,43.025],[141.46249999999998,43.03333333333333],[141.45,43.03333333333333],[141.45,43.025]],"type":"LineString"},"type":"Feature","properties":{"id":"64414336"}}, + {"geometry":{"coordinates":[141.43125,43.0125],"type":"Point"},"type":"Feature","properties":{"path":"64414314_bldg_6697_op.zip","id":"64414314","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.425,43.00833333333333],[141.4375,43.00833333333333],[141.4375,43.016666666666666],[141.425,43.016666666666666],[141.425,43.00833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414314"}}, + {"geometry":{"coordinates":[141.46875,43.07083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64414387_bldg_6697_op.zip","id":"64414387","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4625,43.06666666666667],[141.475,43.06666666666667],[141.475,43.075],[141.4625,43.075],[141.4625,43.06666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64414387"}}, + {"geometry":{"coordinates":[141.38125,43.00416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414300_bldg_6697_op.zip","id":"64414300","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.375,43],[141.3875,43],[141.3875,43.00833333333333],[141.375,43.00833333333333],[141.375,43]],"type":"LineString"},"type":"Feature","properties":{"id":"64414300"}}, + {"geometry":{"coordinates":[141.35625,43.045833333333334],"type":"Point"},"type":"Feature","properties":{"path":"64414258_bldg_6697_op.zip","id":"64414258","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.35,43.041666666666664],[141.36249999999998,43.041666666666664],[141.36249999999998,43.05],[141.35,43.05],[141.35,43.041666666666664]],"type":"LineString"},"type":"Feature","properties":{"id":"64414258"}}, + {"geometry":{"coordinates":[141.45624999999998,43.07083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64414386_bldg_6697_op.zip","id":"64414386","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.45,43.06666666666667],[141.46249999999998,43.06666666666667],[141.46249999999998,43.075],[141.45,43.075],[141.45,43.06666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64414386"}}, + {"geometry":{"coordinates":[141.49375,43.05416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414369_bldg_6697_op.zip","id":"64414369","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4875,43.05],[141.5,43.05],[141.5,43.05833333333333],[141.4875,43.05833333333333],[141.4875,43.05]],"type":"LineString"},"type":"Feature","properties":{"id":"64414369"}}, + {"geometry":{"coordinates":[141.45624999999998,42.94583333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413336_bldg_6697_op.zip","id":"64413336","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.45,42.94166666666667],[141.46249999999998,42.94166666666667],[141.46249999999998,42.95],[141.45,42.95],[141.45,42.94166666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64413336"}}, + {"geometry":{"coordinates":[141.34375,43.02916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414237_bldg_6697_op.zip","id":"64414237","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3375,43.025],[141.35,43.025],[141.35,43.03333333333333],[141.3375,43.03333333333333],[141.3375,43.025]],"type":"LineString"},"type":"Feature","properties":{"id":"64414237"}}, + {"geometry":{"coordinates":[141.35625,43.15416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64415288_bldg_6697_op.zip","id":"64415288","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.35,43.15],[141.36249999999998,43.15],[141.36249999999998,43.15833333333333],[141.35,43.15833333333333],[141.35,43.15]],"type":"LineString"},"type":"Feature","properties":{"id":"64415288"}}, + {"geometry":{"coordinates":[141.36875,42.99583333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413299_bldg_6697_op.zip","id":"64413299","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3625,42.99166666666667],[141.375,42.99166666666667],[141.375,43],[141.3625,43],[141.3625,42.99166666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64413299"}}, + {"geometry":{"coordinates":[141.31875,42.94583333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413235_bldg_6697_op.zip","id":"64413235","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3125,42.94166666666667],[141.325,42.94166666666667],[141.325,42.95],[141.3125,42.95],[141.3125,42.94166666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64413235"}}, + {"geometry":{"coordinates":[141.44375,43.0375],"type":"Point"},"type":"Feature","properties":{"path":"64414345_bldg_6697_op.zip","id":"64414345","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4375,43.03333333333333],[141.45,43.03333333333333],[141.45,43.041666666666664],[141.4375,43.041666666666664],[141.4375,43.03333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414345"}}, + {"geometry":{"coordinates":[141.34375,42.962500000000006],"type":"Point"},"type":"Feature","properties":{"path":"64413257_bldg_6697_op.zip","id":"64413257","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3375,42.958333333333336],[141.35,42.958333333333336],[141.35,42.96666666666667],[141.3375,42.96666666666667],[141.3375,42.958333333333336]],"type":"LineString"},"type":"Feature","properties":{"id":"64413257"}}, + {"geometry":{"coordinates":[141.38125,43.170833333333334],"type":"Point"},"type":"Feature","properties":{"path":"64416300_bldg_6697_op.zip","id":"64416300","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.375,43.166666666666664],[141.3875,43.166666666666664],[141.3875,43.175],[141.375,43.175],[141.375,43.166666666666664]],"type":"LineString"},"type":"Feature","properties":{"id":"64416300"}}, + {"geometry":{"coordinates":[141.28125,43.0125],"type":"Point"},"type":"Feature","properties":{"path":"64414212_bldg_6697_op.zip","id":"64414212","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.275,43.00833333333333],[141.2875,43.00833333333333],[141.2875,43.016666666666666],[141.275,43.016666666666666],[141.275,43.00833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414212"}}, + {"geometry":{"coordinates":[141.19375,43.145833333333336],"type":"Point"},"type":"Feature","properties":{"path":"64415175_bldg_6697_op.zip","id":"64415175","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.1875,43.141666666666666],[141.2,43.141666666666666],[141.2,43.15],[141.1875,43.15],[141.1875,43.141666666666666]],"type":"LineString"},"type":"Feature","properties":{"id":"64415175"}}, + {"geometry":{"coordinates":[141.39374999999998,43.112500000000004],"type":"Point"},"type":"Feature","properties":{"path":"64415331_bldg_6697_op.zip","id":"64415331","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3875,43.108333333333334],[141.39999999999998,43.108333333333334],[141.39999999999998,43.11666666666667],[141.3875,43.11666666666667],[141.3875,43.108333333333334]],"type":"LineString"},"type":"Feature","properties":{"id":"64415331"}}, + {"geometry":{"coordinates":[141.26874999999998,42.95416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64413241_bldg_6697_op.zip","id":"64413241","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2625,42.95],[141.27499999999998,42.95],[141.27499999999998,42.958333333333336],[141.2625,42.958333333333336],[141.2625,42.95]],"type":"LineString"},"type":"Feature","properties":{"id":"64413241"}}, + {"geometry":{"coordinates":[141.38125,42.97916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64413370_bldg_6697_op.zip","id":"64413370","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.375,42.975],[141.3875,42.975],[141.3875,42.983333333333334],[141.375,42.983333333333334],[141.375,42.975]],"type":"LineString"},"type":"Feature","properties":{"id":"64413370"}}, + {"geometry":{"coordinates":[141.31875,43.07916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414295_bldg_6697_op.zip","id":"64414295","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3125,43.075],[141.325,43.075],[141.325,43.083333333333336],[141.3125,43.083333333333336],[141.3125,43.075]],"type":"LineString"},"type":"Feature","properties":{"id":"64414295"}}, + {"geometry":{"coordinates":[141.35625,42.9375],"type":"Point"},"type":"Feature","properties":{"path":"64413228_bldg_6697_op.zip","id":"64413228","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.35,42.93333333333333],[141.36249999999998,42.93333333333333],[141.36249999999998,42.94166666666666],[141.35,42.94166666666666],[141.35,42.93333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64413228"}}, + {"geometry":{"coordinates":[141.11875,42.987500000000004],"type":"Point"},"type":"Feature","properties":{"path":"64413089_bldg_6697_op.zip","id":"64413089","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.1125,42.983333333333334],[141.125,42.983333333333334],[141.125,42.99166666666667],[141.1125,42.99166666666667],[141.1125,42.983333333333334]],"type":"LineString"},"type":"Feature","properties":{"id":"64413089"}}, + {"geometry":{"coordinates":[141.40625,43.0625],"type":"Point"},"type":"Feature","properties":{"path":"64414372_bldg_6697_op.zip","id":"64414372","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4,43.05833333333333],[141.4125,43.05833333333333],[141.4125,43.06666666666666],[141.4,43.06666666666666],[141.4,43.05833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414372"}}, + {"geometry":{"coordinates":[141.49375,43.02916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414339_bldg_6697_op.zip","id":"64414339","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4875,43.025],[141.5,43.025],[141.5,43.03333333333333],[141.4875,43.03333333333333],[141.4875,43.025]],"type":"LineString"},"type":"Feature","properties":{"id":"64414339"}}, + {"geometry":{"coordinates":[141.35625,43.02916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414238_bldg_6697_op.zip","id":"64414238","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.35,43.025],[141.36249999999998,43.025],[141.36249999999998,43.03333333333333],[141.35,43.03333333333333],[141.35,43.025]],"type":"LineString"},"type":"Feature","properties":{"id":"64414238"}}, + {"geometry":{"coordinates":[141.35625,42.95416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64413248_bldg_6697_op.zip","id":"64413248","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.35,42.95],[141.36249999999998,42.95],[141.36249999999998,42.958333333333336],[141.35,42.958333333333336],[141.35,42.95]],"type":"LineString"},"type":"Feature","properties":{"id":"64413248"}}, + {"geometry":{"coordinates":[141.43125,43.07083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64414384_bldg_6697_op.zip","id":"64414384","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.425,43.06666666666667],[141.4375,43.06666666666667],[141.4375,43.075],[141.425,43.075],[141.425,43.06666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64414384"}}, + {"geometry":{"coordinates":[141.40625,43.145833333333336],"type":"Point"},"type":"Feature","properties":{"path":"64415372_bldg_6697_op.zip","id":"64415372","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4,43.141666666666666],[141.4125,43.141666666666666],[141.4125,43.15],[141.4,43.15],[141.4,43.141666666666666]],"type":"LineString"},"type":"Feature","properties":{"id":"64415372"}}, + {"geometry":{"coordinates":[141.39374999999998,43.02916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414331_bldg_6697_op.zip","id":"64414331","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3875,43.025],[141.39999999999998,43.025],[141.39999999999998,43.03333333333333],[141.3875,43.03333333333333],[141.3875,43.025]],"type":"LineString"},"type":"Feature","properties":{"id":"64414331"}}, + {"geometry":{"coordinates":[141.30625,43.145833333333336],"type":"Point"},"type":"Feature","properties":{"path":"64415274_bldg_6697_op.zip","id":"64415274","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3,43.141666666666666],[141.3125,43.141666666666666],[141.3125,43.15],[141.3,43.15],[141.3,43.141666666666666]],"type":"LineString"},"type":"Feature","properties":{"id":"64415274"}}, + {"geometry":{"coordinates":[141.40625,43.045833333333334],"type":"Point"},"type":"Feature","properties":{"path":"64414352_bldg_6697_op.zip","id":"64414352","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4,43.041666666666664],[141.4125,43.041666666666664],[141.4125,43.05],[141.4,43.05],[141.4,43.041666666666664]],"type":"LineString"},"type":"Feature","properties":{"id":"64414352"}}, + {"geometry":{"coordinates":[141.31875,43.00416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414205_bldg_6697_op.zip","id":"64414205","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3125,43],[141.325,43],[141.325,43.00833333333333],[141.3125,43.00833333333333],[141.3125,43]],"type":"LineString"},"type":"Feature","properties":{"id":"64414205"}}, + {"geometry":{"coordinates":[141.41875,43.170833333333334],"type":"Point"},"type":"Feature","properties":{"path":"64416303_bldg_6697_op.zip","id":"64416303","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4125,43.166666666666664],[141.42499999999998,43.166666666666664],[141.42499999999998,43.175],[141.4125,43.175],[141.4125,43.166666666666664]],"type":"LineString"},"type":"Feature","properties":{"id":"64416303"}}, + {"geometry":{"coordinates":[141.41875,43.07083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64414383_bldg_6697_op.zip","id":"64414383","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4125,43.06666666666667],[141.42499999999998,43.06666666666667],[141.42499999999998,43.075],[141.4125,43.075],[141.4125,43.06666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64414383"}}, + {"geometry":{"coordinates":[141.38125,43.09583333333334],"type":"Point"},"type":"Feature","properties":{"path":"64415310_bldg_6697_op.zip","id":"64415310","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.375,43.09166666666667],[141.3875,43.09166666666667],[141.3875,43.1],[141.375,43.1],[141.375,43.09166666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64415310"}}, + {"geometry":{"coordinates":[141.36875,43.02916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414239_bldg_6697_op.zip","id":"64414239","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3625,43.025],[141.375,43.025],[141.375,43.03333333333333],[141.3625,43.03333333333333],[141.3625,43.025]],"type":"LineString"},"type":"Feature","properties":{"id":"64414239"}}, + {"geometry":{"coordinates":[141.14374999999998,42.95416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64413141_bldg_6697_op.zip","id":"64413141","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.1375,42.95],[141.14999999999998,42.95],[141.14999999999998,42.958333333333336],[141.1375,42.958333333333336],[141.1375,42.95]],"type":"LineString"},"type":"Feature","properties":{"id":"64413141"}}, + {"geometry":{"coordinates":[141.19375,42.97083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413165_bldg_6697_op.zip","id":"64413165","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.1875,42.96666666666667],[141.2,42.96666666666667],[141.2,42.975],[141.1875,42.975],[141.1875,42.96666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64413165"}}, + {"geometry":{"coordinates":[141.33124999999998,42.97916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64413276_bldg_6697_op.zip","id":"64413276","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.325,42.975],[141.33749999999998,42.975],[141.33749999999998,42.983333333333334],[141.325,42.983333333333334],[141.325,42.975]],"type":"LineString"},"type":"Feature","properties":{"id":"64413276"}}, + {"geometry":{"coordinates":[141.33124999999998,42.97083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413266_bldg_6697_op.zip","id":"64413266","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.325,42.96666666666667],[141.33749999999998,42.96666666666667],[141.33749999999998,42.975],[141.325,42.975],[141.325,42.96666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64413266"}}, + {"geometry":{"coordinates":[141.30625,42.9125],"type":"Point"},"type":"Feature","properties":{"path":"64412294_bldg_6697_op.zip","id":"64412294","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3,42.90833333333333],[141.3125,42.90833333333333],[141.3125,42.916666666666664],[141.3,42.916666666666664],[141.3,42.90833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64412294"}}, + {"geometry":{"coordinates":[141.40625,43.09583333333334],"type":"Point"},"type":"Feature","properties":{"path":"64415312_bldg_6697_op.zip","id":"64415312","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4,43.09166666666667],[141.4125,43.09166666666667],[141.4125,43.1],[141.4,43.1],[141.4,43.09166666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64415312"}}, + {"geometry":{"coordinates":[141.33124999999998,42.92916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64413216_bldg_6697_op.zip","id":"64413216","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.325,42.925],[141.33749999999998,42.925],[141.33749999999998,42.93333333333333],[141.325,42.93333333333333],[141.325,42.925]],"type":"LineString"},"type":"Feature","properties":{"id":"64413216"}}, + {"geometry":{"coordinates":[141.38125,43.15416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64415380_bldg_6697_op.zip","id":"64415380","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.375,43.15],[141.3875,43.15],[141.3875,43.15833333333333],[141.375,43.15833333333333],[141.375,43.15]],"type":"LineString"},"type":"Feature","properties":{"id":"64415380"}}, + {"geometry":{"coordinates":[141.35625,43.145833333333336],"type":"Point"},"type":"Feature","properties":{"path":"64415278_bldg_6697_op.zip","id":"64415278","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.35,43.141666666666666],[141.36249999999998,43.141666666666666],[141.36249999999998,43.15],[141.35,43.15],[141.35,43.141666666666666]],"type":"LineString"},"type":"Feature","properties":{"id":"64415278"}}, + {"geometry":{"coordinates":[141.45624999999998,43.05416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414366_bldg_6697_op.zip","id":"64414366","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.45,43.05],[141.46249999999998,43.05],[141.46249999999998,43.05833333333333],[141.45,43.05833333333333],[141.45,43.05]],"type":"LineString"},"type":"Feature","properties":{"id":"64414366"}}, + {"geometry":{"coordinates":[141.36875,43.07916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414299_bldg_6697_op.zip","id":"64414299","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3625,43.075],[141.375,43.075],[141.375,43.083333333333336],[141.3625,43.083333333333336],[141.3625,43.075]],"type":"LineString"},"type":"Feature","properties":{"id":"64414299"}}, + {"geometry":{"coordinates":[141.30625,42.92916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64413214_bldg_6697_op.zip","id":"64413214","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3,42.925],[141.3125,42.925],[141.3125,42.93333333333333],[141.3,42.93333333333333],[141.3,42.925]],"type":"LineString"},"type":"Feature","properties":{"id":"64413214"}}, + {"geometry":{"coordinates":[141.28125,43.12083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64415242_bldg_6697_op.zip","id":"64415242","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.275,43.11666666666667],[141.2875,43.11666666666667],[141.2875,43.125],[141.275,43.125],[141.275,43.11666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64415242"}}, + {"geometry":{"coordinates":[141.21875,43.15416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64415187_bldg_6697_op.zip","id":"64415187","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2125,43.15],[141.225,43.15],[141.225,43.15833333333333],[141.2125,43.15833333333333],[141.2125,43.15]],"type":"LineString"},"type":"Feature","properties":{"id":"64415187"}}, + {"geometry":{"coordinates":[141.29375,43.020833333333336],"type":"Point"},"type":"Feature","properties":{"path":"64414223_bldg_6697_op.zip","id":"64414223","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2875,43.016666666666666],[141.29999999999998,43.016666666666666],[141.29999999999998,43.025],[141.2875,43.025],[141.2875,43.016666666666666]],"type":"LineString"},"type":"Feature","properties":{"id":"64414223"}}, + {"geometry":{"coordinates":[141.36875,43.15416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64415289_bldg_6697_op.zip","id":"64415289","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3625,43.15],[141.375,43.15],[141.375,43.15833333333333],[141.3625,43.15833333333333],[141.3625,43.15]],"type":"LineString"},"type":"Feature","properties":{"id":"64415289"}}, + {"geometry":{"coordinates":[141.35625,43.10416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64415228_bldg_6697_op.zip","id":"64415228","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.35,43.1],[141.36249999999998,43.1],[141.36249999999998,43.108333333333334],[141.35,43.108333333333334],[141.35,43.1]],"type":"LineString"},"type":"Feature","properties":{"id":"64415228"}}, + {"geometry":{"coordinates":[141.45624999999998,43.020833333333336],"type":"Point"},"type":"Feature","properties":{"path":"64414326_bldg_6697_op.zip","id":"64414326","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.45,43.016666666666666],[141.46249999999998,43.016666666666666],[141.46249999999998,43.025],[141.45,43.025],[141.45,43.016666666666666]],"type":"LineString"},"type":"Feature","properties":{"id":"64414326"}}, + {"geometry":{"coordinates":[141.41875,42.9375],"type":"Point"},"type":"Feature","properties":{"path":"64413323_bldg_6697_op.zip","id":"64413323","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4125,42.93333333333333],[141.42499999999998,42.93333333333333],[141.42499999999998,42.94166666666666],[141.4125,42.94166666666666],[141.4125,42.93333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64413323"}}, + {"geometry":{"coordinates":[141.28125,43.05416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414262_bldg_6697_op.zip","id":"64414262","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.275,43.05],[141.2875,43.05],[141.2875,43.05833333333333],[141.275,43.05833333333333],[141.275,43.05]],"type":"LineString"},"type":"Feature","properties":{"id":"64414262"}}, + {"geometry":{"coordinates":[141.33124999999998,42.962500000000006],"type":"Point"},"type":"Feature","properties":{"path":"64413256_bldg_6697_op.zip","id":"64413256","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.325,42.958333333333336],[141.33749999999998,42.958333333333336],[141.33749999999998,42.96666666666667],[141.325,42.96666666666667],[141.325,42.958333333333336]],"type":"LineString"},"type":"Feature","properties":{"id":"64413256"}}, + {"geometry":{"coordinates":[141.38125,43.12083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64415340_bldg_6697_op.zip","id":"64415340","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.375,43.11666666666667],[141.3875,43.11666666666667],[141.3875,43.125],[141.375,43.125],[141.375,43.11666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64415340"}}, + {"geometry":{"coordinates":[141.25625,43.05416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414260_bldg_6697_op.zip","id":"64414260","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.25,43.05],[141.2625,43.05],[141.2625,43.05833333333333],[141.25,43.05833333333333],[141.25,43.05]],"type":"LineString"},"type":"Feature","properties":{"id":"64414260"}}, + {"geometry":{"coordinates":[141.35625,43.0375],"type":"Point"},"type":"Feature","properties":{"path":"64414248_bldg_6697_op.zip","id":"64414248","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.35,43.03333333333333],[141.36249999999998,43.03333333333333],[141.36249999999998,43.041666666666664],[141.35,43.041666666666664],[141.35,43.03333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414248"}}, + {"geometry":{"coordinates":[141.33124999999998,42.9375],"type":"Point"},"type":"Feature","properties":{"path":"64413226_bldg_6697_op.zip","id":"64413226","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.325,42.93333333333333],[141.33749999999998,42.93333333333333],[141.33749999999998,42.94166666666666],[141.325,42.94166666666666],[141.325,42.93333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64413226"}}, + {"geometry":{"coordinates":[141.23125,42.95416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64413148_bldg_6697_op.zip","id":"64413148","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.225,42.95],[141.23749999999998,42.95],[141.23749999999998,42.958333333333336],[141.225,42.958333333333336],[141.225,42.95]],"type":"LineString"},"type":"Feature","properties":{"id":"64413148"}}, + {"geometry":{"coordinates":[141.46875,42.962500000000006],"type":"Point"},"type":"Feature","properties":{"path":"64413357_bldg_6697_op.zip","id":"64413357","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4625,42.958333333333336],[141.475,42.958333333333336],[141.475,42.96666666666667],[141.4625,42.96666666666667],[141.4625,42.958333333333336]],"type":"LineString"},"type":"Feature","properties":{"id":"64413357"}}, + {"geometry":{"coordinates":[141.35625,43.020833333333336],"type":"Point"},"type":"Feature","properties":{"path":"64414228_bldg_6697_op.zip","id":"64414228","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.35,43.016666666666666],[141.36249999999998,43.016666666666666],[141.36249999999998,43.025],[141.35,43.025],[141.35,43.016666666666666]],"type":"LineString"},"type":"Feature","properties":{"id":"64414228"}}, + {"geometry":{"coordinates":[141.30625,43.00416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414204_bldg_6697_op.zip","id":"64414204","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3,43],[141.3125,43],[141.3125,43.00833333333333],[141.3,43.00833333333333],[141.3,43]],"type":"LineString"},"type":"Feature","properties":{"id":"64414204"}}, + {"geometry":{"coordinates":[141.24375,43.05416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414169_bldg_6697_op.zip","id":"64414169","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2375,43.05],[141.25,43.05],[141.25,43.05833333333333],[141.2375,43.05833333333333],[141.2375,43.05]],"type":"LineString"},"type":"Feature","properties":{"id":"64414169"}}, + {"geometry":{"coordinates":[141.20624999999998,43.1375],"type":"Point"},"type":"Feature","properties":{"path":"64415166_bldg_6697_op.zip","id":"64415166","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2,43.13333333333333],[141.21249999999998,43.13333333333333],[141.21249999999998,43.141666666666666],[141.2,43.141666666666666],[141.2,43.13333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64415166"}}, + {"geometry":{"coordinates":[141.36875,43.05416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414269_bldg_6697_op.zip","id":"64414269","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3625,43.05],[141.375,43.05],[141.375,43.05833333333333],[141.3625,43.05833333333333],[141.3625,43.05]],"type":"LineString"},"type":"Feature","properties":{"id":"64414269"}}, + {"geometry":{"coordinates":[141.39374999999998,43.12916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64415351_bldg_6697_op.zip","id":"64415351","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3875,43.125],[141.39999999999998,43.125],[141.39999999999998,43.13333333333333],[141.3875,43.13333333333333],[141.3875,43.125]],"type":"LineString"},"type":"Feature","properties":{"id":"64415351"}}, + {"geometry":{"coordinates":[141.34375,43.145833333333336],"type":"Point"},"type":"Feature","properties":{"path":"64415277_bldg_6697_op.zip","id":"64415277","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3375,43.141666666666666],[141.35,43.141666666666666],[141.35,43.15],[141.3375,43.15],[141.3375,43.141666666666666]],"type":"LineString"},"type":"Feature","properties":{"id":"64415277"}}, + {"geometry":{"coordinates":[141.39374999999998,43.07083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64414381_bldg_6697_op.zip","id":"64414381","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3875,43.06666666666667],[141.39999999999998,43.06666666666667],[141.39999999999998,43.075],[141.3875,43.075],[141.3875,43.06666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64414381"}}, + {"geometry":{"coordinates":[141.50625,43.020833333333336],"type":"Point"},"type":"Feature","properties":{"path":"64414420_bldg_6697_op.zip","id":"64414420","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.5,43.016666666666666],[141.5125,43.016666666666666],[141.5125,43.025],[141.5,43.025],[141.5,43.016666666666666]],"type":"LineString"},"type":"Feature","properties":{"id":"64414420"}}, + {"geometry":{"coordinates":[141.45624999999998,43.12083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64415346_bldg_6697_op.zip","id":"64415346","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.45,43.11666666666667],[141.46249999999998,43.11666666666667],[141.46249999999998,43.125],[141.45,43.125],[141.45,43.11666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64415346"}}, + {"geometry":{"coordinates":[141.25625,42.95416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64413240_bldg_6697_op.zip","id":"64413240","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.25,42.95],[141.2625,42.95],[141.2625,42.958333333333336],[141.25,42.958333333333336],[141.25,42.95]],"type":"LineString"},"type":"Feature","properties":{"id":"64413240"}}, + {"geometry":{"coordinates":[141.30625,43.020833333333336],"type":"Point"},"type":"Feature","properties":{"path":"64414224_bldg_6697_op.zip","id":"64414224","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3,43.016666666666666],[141.3125,43.016666666666666],[141.3125,43.025],[141.3,43.025],[141.3,43.016666666666666]],"type":"LineString"},"type":"Feature","properties":{"id":"64414224"}}, + {"geometry":{"coordinates":[141.26874999999998,43.12916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64415251_bldg_6697_op.zip","id":"64415251","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2625,43.125],[141.27499999999998,43.125],[141.27499999999998,43.13333333333333],[141.2625,43.13333333333333],[141.2625,43.125]],"type":"LineString"},"type":"Feature","properties":{"id":"64415251"}}, + {"geometry":{"coordinates":[141.30625,43.07916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414294_bldg_6697_op.zip","id":"64414294","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3,43.075],[141.3125,43.075],[141.3125,43.083333333333336],[141.3,43.083333333333336],[141.3,43.075]],"type":"LineString"},"type":"Feature","properties":{"id":"64414294"}}, + {"geometry":{"coordinates":[141.43125,42.99583333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413394_bldg_6697_op.zip","id":"64413394","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.425,42.99166666666667],[141.4375,42.99166666666667],[141.4375,43],[141.425,43],[141.425,42.99166666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64413394"}}, + {"geometry":{"coordinates":[141.39374999999998,43.0125],"type":"Point"},"type":"Feature","properties":{"path":"64414311_bldg_6697_op.zip","id":"64414311","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3875,43.00833333333333],[141.39999999999998,43.00833333333333],[141.39999999999998,43.016666666666666],[141.3875,43.016666666666666],[141.3875,43.00833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414311"}}, + {"geometry":{"coordinates":[141.39374999999998,42.920833333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413301_bldg_6697_op.zip","id":"64413301","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3875,42.916666666666664],[141.39999999999998,42.916666666666664],[141.39999999999998,42.925],[141.3875,42.925],[141.3875,42.916666666666664]],"type":"LineString"},"type":"Feature","properties":{"id":"64413301"}}, + {"geometry":{"coordinates":[141.20624999999998,43.145833333333336],"type":"Point"},"type":"Feature","properties":{"path":"64415176_bldg_6697_op.zip","id":"64415176","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2,43.141666666666666],[141.21249999999998,43.141666666666666],[141.21249999999998,43.15],[141.2,43.15],[141.2,43.141666666666666]],"type":"LineString"},"type":"Feature","properties":{"id":"64415176"}}, + {"geometry":{"coordinates":[141.36875,43.1375],"type":"Point"},"type":"Feature","properties":{"path":"64415269_bldg_6697_op.zip","id":"64415269","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3625,43.13333333333333],[141.375,43.13333333333333],[141.375,43.141666666666666],[141.3625,43.141666666666666],[141.3625,43.13333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64415269"}}, + {"geometry":{"coordinates":[141.45624999999998,42.962500000000006],"type":"Point"},"type":"Feature","properties":{"path":"64413356_bldg_6697_op.zip","id":"64413356","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.45,42.958333333333336],[141.46249999999998,42.958333333333336],[141.46249999999998,42.96666666666667],[141.45,42.96666666666667],[141.45,42.958333333333336]],"type":"LineString"},"type":"Feature","properties":{"id":"64413356"}}, + {"geometry":{"coordinates":[141.41875,43.10416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64415323_bldg_6697_op.zip","id":"64415323","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4125,43.1],[141.42499999999998,43.1],[141.42499999999998,43.108333333333334],[141.4125,43.108333333333334],[141.4125,43.1]],"type":"LineString"},"type":"Feature","properties":{"id":"64415323"}}, + {"geometry":{"coordinates":[141.31875,43.02916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414235_bldg_6697_op.zip","id":"64414235","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3125,43.025],[141.325,43.025],[141.325,43.03333333333333],[141.3125,43.03333333333333],[141.3125,43.025]],"type":"LineString"},"type":"Feature","properties":{"id":"64414235"}}, + {"geometry":{"coordinates":[141.26874999999998,43.10416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64415221_bldg_6697_op.zip","id":"64415221","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2625,43.1],[141.27499999999998,43.1],[141.27499999999998,43.108333333333334],[141.2625,43.108333333333334],[141.2625,43.1]],"type":"LineString"},"type":"Feature","properties":{"id":"64415221"}}, + {"geometry":{"coordinates":[141.33124999999998,43.0625],"type":"Point"},"type":"Feature","properties":{"path":"64414276_bldg_6697_op.zip","id":"64414276","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.325,43.05833333333333],[141.33749999999998,43.05833333333333],[141.33749999999998,43.06666666666666],[141.325,43.06666666666666],[141.325,43.05833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414276"}}, + {"geometry":{"coordinates":[141.30625,43.12083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64415244_bldg_6697_op.zip","id":"64415244","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3,43.11666666666667],[141.3125,43.11666666666667],[141.3125,43.125],[141.3,43.125],[141.3,43.11666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64415244"}}, + {"geometry":{"coordinates":[141.44375,42.95416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64413345_bldg_6697_op.zip","id":"64413345","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4375,42.95],[141.45,42.95],[141.45,42.958333333333336],[141.4375,42.958333333333336],[141.4375,42.95]],"type":"LineString"},"type":"Feature","properties":{"id":"64413345"}}, + {"geometry":{"coordinates":[141.29375,42.90416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64412283_bldg_6697_op.zip","id":"64412283","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2875,42.9],[141.29999999999998,42.9],[141.29999999999998,42.90833333333333],[141.2875,42.90833333333333],[141.2875,42.9]],"type":"LineString"},"type":"Feature","properties":{"id":"64412283"}}, + {"geometry":{"coordinates":[141.31875,43.12083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64415245_bldg_6697_op.zip","id":"64415245","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3125,43.11666666666667],[141.325,43.11666666666667],[141.325,43.125],[141.3125,43.125],[141.3125,43.11666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64415245"}}, + {"geometry":{"coordinates":[141.45624999999998,43.0625],"type":"Point"},"type":"Feature","properties":{"path":"64414376_bldg_6697_op.zip","id":"64414376","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.45,43.05833333333333],[141.46249999999998,43.05833333333333],[141.46249999999998,43.06666666666666],[141.45,43.06666666666666],[141.45,43.05833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414376"}}, + {"geometry":{"coordinates":[141.23125,43.12916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64415158_bldg_6697_op.zip","id":"64415158","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.225,43.125],[141.23749999999998,43.125],[141.23749999999998,43.13333333333333],[141.225,43.13333333333333],[141.225,43.125]],"type":"LineString"},"type":"Feature","properties":{"id":"64415158"}}, + {"geometry":{"coordinates":[141.23125,43.112500000000004],"type":"Point"},"type":"Feature","properties":{"path":"64415138_bldg_6697_op.zip","id":"64415138","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.225,43.108333333333334],[141.23749999999998,43.108333333333334],[141.23749999999998,43.11666666666667],[141.225,43.11666666666667],[141.225,43.108333333333334]],"type":"LineString"},"type":"Feature","properties":{"id":"64415138"}}, + {"geometry":{"coordinates":[141.31875,43.0125],"type":"Point"},"type":"Feature","properties":{"path":"64414215_bldg_6697_op.zip","id":"64414215","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3125,43.00833333333333],[141.325,43.00833333333333],[141.325,43.016666666666666],[141.3125,43.016666666666666],[141.3125,43.00833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414215"}}, + {"geometry":{"coordinates":[141.39374999999998,43.09583333333334],"type":"Point"},"type":"Feature","properties":{"path":"64415311_bldg_6697_op.zip","id":"64415311","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3875,43.09166666666667],[141.39999999999998,43.09166666666667],[141.39999999999998,43.1],[141.3875,43.1],[141.3875,43.09166666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64415311"}}, + {"geometry":{"coordinates":[141.15625,42.987500000000004],"type":"Point"},"type":"Feature","properties":{"path":"64413182_bldg_6697_op.zip","id":"64413182","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.15,42.983333333333334],[141.1625,42.983333333333334],[141.1625,42.99166666666667],[141.15,42.99166666666667],[141.15,42.983333333333334]],"type":"LineString"},"type":"Feature","properties":{"id":"64413182"}}, + {"geometry":{"coordinates":[141.41875,43.02916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414333_bldg_6697_op.zip","id":"64414333","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4125,43.025],[141.42499999999998,43.025],[141.42499999999998,43.03333333333333],[141.4125,43.03333333333333],[141.4125,43.025]],"type":"LineString"},"type":"Feature","properties":{"id":"64414333"}}, + {"geometry":{"coordinates":[141.46875,43.045833333333334],"type":"Point"},"type":"Feature","properties":{"path":"64414357_bldg_6697_op.zip","id":"64414357","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4625,43.041666666666664],[141.475,43.041666666666664],[141.475,43.05],[141.4625,43.05],[141.4625,43.041666666666664]],"type":"LineString"},"type":"Feature","properties":{"id":"64414357"}}, + {"geometry":{"coordinates":[141.35625,43.07916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414298_bldg_6697_op.zip","id":"64414298","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.35,43.075],[141.36249999999998,43.075],[141.36249999999998,43.083333333333336],[141.35,43.083333333333336],[141.35,43.075]],"type":"LineString"},"type":"Feature","properties":{"id":"64414298"}}, + {"geometry":{"coordinates":[141.34375,43.12083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64415247_bldg_6697_op.zip","id":"64415247","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3375,43.11666666666667],[141.35,43.11666666666667],[141.35,43.125],[141.3375,43.125],[141.3375,43.11666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64415247"}}, + {"geometry":{"coordinates":[141.26874999999998,43.12083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64415241_bldg_6697_op.zip","id":"64415241","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2625,43.11666666666667],[141.27499999999998,43.11666666666667],[141.27499999999998,43.125],[141.2625,43.125],[141.2625,43.11666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64415241"}}, + {"geometry":{"coordinates":[141.48125,43.020833333333336],"type":"Point"},"type":"Feature","properties":{"path":"64414328_bldg_6697_op.zip","id":"64414328","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.475,43.016666666666666],[141.48749999999998,43.016666666666666],[141.48749999999998,43.025],[141.475,43.025],[141.475,43.016666666666666]],"type":"LineString"},"type":"Feature","properties":{"id":"64414328"}}, + {"geometry":{"coordinates":[141.28125,43.09583333333334],"type":"Point"},"type":"Feature","properties":{"path":"64415212_bldg_6697_op.zip","id":"64415212","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.275,43.09166666666667],[141.2875,43.09166666666667],[141.2875,43.1],[141.275,43.1],[141.275,43.09166666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64415212"}}, + {"geometry":{"coordinates":[141.36875,42.920833333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413209_bldg_6697_op.zip","id":"64413209","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3625,42.916666666666664],[141.375,42.916666666666664],[141.375,42.925],[141.3625,42.925],[141.3625,42.916666666666664]],"type":"LineString"},"type":"Feature","properties":{"id":"64413209"}}, + {"geometry":{"coordinates":[141.34375,43.0125],"type":"Point"},"type":"Feature","properties":{"path":"64414217_bldg_6697_op.zip","id":"64414217","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3375,43.00833333333333],[141.35,43.00833333333333],[141.35,43.016666666666666],[141.3375,43.016666666666666],[141.3375,43.00833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414217"}}, + {"geometry":{"coordinates":[141.23125,43.15416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64415188_bldg_6697_op.zip","id":"64415188","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.225,43.15],[141.23749999999998,43.15],[141.23749999999998,43.15833333333333],[141.225,43.15833333333333],[141.225,43.15]],"type":"LineString"},"type":"Feature","properties":{"id":"64415188"}}, + {"geometry":{"coordinates":[141.41875,42.962500000000006],"type":"Point"},"type":"Feature","properties":{"path":"64413353_bldg_6697_op.zip","id":"64413353","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4125,42.958333333333336],[141.42499999999998,42.958333333333336],[141.42499999999998,42.96666666666667],[141.4125,42.96666666666667],[141.4125,42.958333333333336]],"type":"LineString"},"type":"Feature","properties":{"id":"64413353"}}, + {"geometry":{"coordinates":[141.46875,43.02916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414337_bldg_6697_op.zip","id":"64414337","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4625,43.025],[141.475,43.025],[141.475,43.03333333333333],[141.4625,43.03333333333333],[141.4625,43.025]],"type":"LineString"},"type":"Feature","properties":{"id":"64414337"}}, + {"geometry":{"coordinates":[141.41875,42.97916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64413373_bldg_6697_op.zip","id":"64413373","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4125,42.975],[141.42499999999998,42.975],[141.42499999999998,42.983333333333334],[141.4125,42.983333333333334],[141.4125,42.975]],"type":"LineString"},"type":"Feature","properties":{"id":"64413373"}}, + {"geometry":{"coordinates":[141.16875,42.962500000000006],"type":"Point"},"type":"Feature","properties":{"path":"64413153_bldg_6697_op.zip","id":"64413153","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.1625,42.958333333333336],[141.17499999999998,42.958333333333336],[141.17499999999998,42.96666666666667],[141.1625,42.96666666666667],[141.1625,42.958333333333336]],"type":"LineString"},"type":"Feature","properties":{"id":"64413153"}}, + {"geometry":{"coordinates":[141.30625,42.97083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413264_bldg_6697_op.zip","id":"64413264","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3,42.96666666666667],[141.3125,42.96666666666667],[141.3125,42.975],[141.3,42.975],[141.3,42.96666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64413264"}}, + {"geometry":{"coordinates":[141.13125,42.9375],"type":"Point"},"type":"Feature","properties":{"path":"64413120_bldg_6697_op.zip","id":"64413120","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.125,42.93333333333333],[141.1375,42.93333333333333],[141.1375,42.94166666666666],[141.125,42.94166666666666],[141.125,42.93333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64413120"}}, + {"geometry":{"coordinates":[141.34375,43.020833333333336],"type":"Point"},"type":"Feature","properties":{"path":"64414227_bldg_6697_op.zip","id":"64414227","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3375,43.016666666666666],[141.35,43.016666666666666],[141.35,43.025],[141.3375,43.025],[141.3375,43.016666666666666]],"type":"LineString"},"type":"Feature","properties":{"id":"64414227"}}, + {"geometry":{"coordinates":[141.35625,43.12083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64415248_bldg_6697_op.zip","id":"64415248","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.35,43.11666666666667],[141.36249999999998,43.11666666666667],[141.36249999999998,43.125],[141.35,43.125],[141.35,43.11666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64415248"}}, + {"geometry":{"coordinates":[141.33124999999998,43.10416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64415226_bldg_6697_op.zip","id":"64415226","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.325,43.1],[141.33749999999998,43.1],[141.33749999999998,43.108333333333334],[141.325,43.108333333333334],[141.325,43.1]],"type":"LineString"},"type":"Feature","properties":{"id":"64415226"}}, + {"geometry":{"coordinates":[141.44375,43.112500000000004],"type":"Point"},"type":"Feature","properties":{"path":"64415335_bldg_6697_op.zip","id":"64415335","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4375,43.108333333333334],[141.45,43.108333333333334],[141.45,43.11666666666667],[141.4375,43.11666666666667],[141.4375,43.108333333333334]],"type":"LineString"},"type":"Feature","properties":{"id":"64415335"}}, + {"geometry":{"coordinates":[141.40625,43.15416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64415382_bldg_6697_op.zip","id":"64415382","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4,43.15],[141.4125,43.15],[141.4125,43.15833333333333],[141.4,43.15833333333333],[141.4,43.15]],"type":"LineString"},"type":"Feature","properties":{"id":"64415382"}}, + {"geometry":{"coordinates":[141.38125,42.987500000000004],"type":"Point"},"type":"Feature","properties":{"path":"64413380_bldg_6697_op.zip","id":"64413380","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.375,42.983333333333334],[141.3875,42.983333333333334],[141.3875,42.99166666666667],[141.375,42.99166666666667],[141.375,42.983333333333334]],"type":"LineString"},"type":"Feature","properties":{"id":"64413380"}}, + {"geometry":{"coordinates":[141.36875,42.987500000000004],"type":"Point"},"type":"Feature","properties":{"path":"64413289_bldg_6697_op.zip","id":"64413289","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3625,42.983333333333334],[141.375,42.983333333333334],[141.375,42.99166666666667],[141.3625,42.99166666666667],[141.3625,42.983333333333334]],"type":"LineString"},"type":"Feature","properties":{"id":"64413289"}}, + {"geometry":{"coordinates":[141.41875,43.0375],"type":"Point"},"type":"Feature","properties":{"path":"64414343_bldg_6697_op.zip","id":"64414343","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4125,43.03333333333333],[141.42499999999998,43.03333333333333],[141.42499999999998,43.041666666666664],[141.4125,43.041666666666664],[141.4125,43.03333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414343"}}, + {"geometry":{"coordinates":[141.35625,43.07083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64414288_bldg_6697_op.zip","id":"64414288","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.35,43.06666666666667],[141.36249999999998,43.06666666666667],[141.36249999999998,43.075],[141.35,43.075],[141.35,43.06666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64414288"}}, + {"geometry":{"coordinates":[141.50625,43.0375],"type":"Point"},"type":"Feature","properties":{"path":"64414440_bldg_6697_op.zip","id":"64414440","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.5,43.03333333333333],[141.5125,43.03333333333333],[141.5125,43.041666666666664],[141.5,43.041666666666664],[141.5,43.03333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414440"}}, + {"geometry":{"coordinates":[141.39374999999998,43.1625],"type":"Point"},"type":"Feature","properties":{"path":"64415391_bldg_6697_op.zip","id":"64415391","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3875,43.15833333333333],[141.39999999999998,43.15833333333333],[141.39999999999998,43.166666666666664],[141.3875,43.166666666666664],[141.3875,43.15833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64415391"}}, + {"geometry":{"coordinates":[141.38125,43.12916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64415350_bldg_6697_op.zip","id":"64415350","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.375,43.125],[141.3875,43.125],[141.3875,43.13333333333333],[141.375,43.13333333333333],[141.375,43.125]],"type":"LineString"},"type":"Feature","properties":{"id":"64415350"}}, + {"geometry":{"coordinates":[141.36875,43.087500000000006],"type":"Point"},"type":"Feature","properties":{"path":"64415209_bldg_6697_op.zip","id":"64415209","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3625,43.083333333333336],[141.375,43.083333333333336],[141.375,43.09166666666667],[141.3625,43.09166666666667],[141.3625,43.083333333333336]],"type":"LineString"},"type":"Feature","properties":{"id":"64415209"}}, + {"geometry":{"coordinates":[141.49375,43.0375],"type":"Point"},"type":"Feature","properties":{"path":"64414349_bldg_6697_op.zip","id":"64414349","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4875,43.03333333333333],[141.5,43.03333333333333],[141.5,43.041666666666664],[141.4875,43.041666666666664],[141.4875,43.03333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414349"}}, + {"geometry":{"coordinates":[141.34375,43.1375],"type":"Point"},"type":"Feature","properties":{"path":"64415267_bldg_6697_op.zip","id":"64415267","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3375,43.13333333333333],[141.35,43.13333333333333],[141.35,43.141666666666666],[141.3375,43.141666666666666],[141.3375,43.13333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64415267"}}, + {"geometry":{"coordinates":[141.40625,42.987500000000004],"type":"Point"},"type":"Feature","properties":{"path":"64413382_bldg_6697_op.zip","id":"64413382","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4,42.983333333333334],[141.4125,42.983333333333334],[141.4125,42.99166666666667],[141.4,42.99166666666667],[141.4,42.983333333333334]],"type":"LineString"},"type":"Feature","properties":{"id":"64413382"}}, + {"geometry":{"coordinates":[141.48125,43.0375],"type":"Point"},"type":"Feature","properties":{"path":"64414348_bldg_6697_op.zip","id":"64414348","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.475,43.03333333333333],[141.48749999999998,43.03333333333333],[141.48749999999998,43.041666666666664],[141.475,43.041666666666664],[141.475,43.03333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414348"}}, + {"geometry":{"coordinates":[141.36875,42.962500000000006],"type":"Point"},"type":"Feature","properties":{"path":"64413259_bldg_6697_op.zip","id":"64413259","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3625,42.958333333333336],[141.375,42.958333333333336],[141.375,42.96666666666667],[141.3625,42.96666666666667],[141.3625,42.958333333333336]],"type":"LineString"},"type":"Feature","properties":{"id":"64413259"}}, + {"geometry":{"coordinates":[141.24375,43.12083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64415149_bldg_6697_op.zip","id":"64415149","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2375,43.11666666666667],[141.25,43.11666666666667],[141.25,43.125],[141.2375,43.125],[141.2375,43.11666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64415149"}}, + {"geometry":{"coordinates":[141.39374999999998,43.087500000000006],"type":"Point"},"type":"Feature","properties":{"path":"64415301_bldg_6697_op.zip","id":"64415301","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3875,43.083333333333336],[141.39999999999998,43.083333333333336],[141.39999999999998,43.09166666666667],[141.3875,43.09166666666667],[141.3875,43.083333333333336]],"type":"LineString"},"type":"Feature","properties":{"id":"64415301"}}, + {"geometry":{"coordinates":[141.23125,43.12083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64415148_bldg_6697_op.zip","id":"64415148","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.225,43.11666666666667],[141.23749999999998,43.11666666666667],[141.23749999999998,43.125],[141.225,43.125],[141.225,43.11666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64415148"}}, + {"geometry":{"coordinates":[141.19375,43.07083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64414185_bldg_6697_op.zip","id":"64414185","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.1875,43.06666666666667],[141.2,43.06666666666667],[141.2,43.075],[141.1875,43.075],[141.1875,43.06666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64414185"}}, + {"geometry":{"coordinates":[141.45624999999998,42.95416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64413346_bldg_6697_op.zip","id":"64413346","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.45,42.95],[141.46249999999998,42.95],[141.46249999999998,42.958333333333336],[141.45,42.958333333333336],[141.45,42.95]],"type":"LineString"},"type":"Feature","properties":{"id":"64413346"}}, + {"geometry":{"coordinates":[141.33124999999998,43.045833333333334],"type":"Point"},"type":"Feature","properties":{"path":"64414256_bldg_6697_op.zip","id":"64414256","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.325,43.041666666666664],[141.33749999999998,43.041666666666664],[141.33749999999998,43.05],[141.325,43.05],[141.325,43.041666666666664]],"type":"LineString"},"type":"Feature","properties":{"id":"64414256"}}, + {"geometry":{"coordinates":[141.30625,43.112500000000004],"type":"Point"},"type":"Feature","properties":{"path":"64415234_bldg_6697_op.zip","id":"64415234","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3,43.108333333333334],[141.3125,43.108333333333334],[141.3125,43.11666666666667],[141.3,43.11666666666667],[141.3,43.108333333333334]],"type":"LineString"},"type":"Feature","properties":{"id":"64415234"}}, + {"geometry":{"coordinates":[141.34375,43.045833333333334],"type":"Point"},"type":"Feature","properties":{"path":"64414257_bldg_6697_op.zip","id":"64414257","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3375,43.041666666666664],[141.35,43.041666666666664],[141.35,43.05],[141.3375,43.05],[141.3375,43.041666666666664]],"type":"LineString"},"type":"Feature","properties":{"id":"64414257"}}, + {"geometry":{"coordinates":[141.31875,43.045833333333334],"type":"Point"},"type":"Feature","properties":{"path":"64414255_bldg_6697_op.zip","id":"64414255","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3125,43.041666666666664],[141.325,43.041666666666664],[141.325,43.05],[141.3125,43.05],[141.3125,43.041666666666664]],"type":"LineString"},"type":"Feature","properties":{"id":"64414255"}}, + {"geometry":{"coordinates":[141.21875,43.07916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414197_bldg_6697_op.zip","id":"64414197","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2125,43.075],[141.225,43.075],[141.225,43.083333333333336],[141.2125,43.083333333333336],[141.2125,43.075]],"type":"LineString"},"type":"Feature","properties":{"id":"64414197"}}, + {"geometry":{"coordinates":[141.38125,43.10416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64415320_bldg_6697_op.zip","id":"64415320","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.375,43.1],[141.3875,43.1],[141.3875,43.108333333333334],[141.375,43.108333333333334],[141.375,43.1]],"type":"LineString"},"type":"Feature","properties":{"id":"64415320"}}, + {"geometry":{"coordinates":[141.41875,43.09583333333334],"type":"Point"},"type":"Feature","properties":{"path":"64415313_bldg_6697_op.zip","id":"64415313","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4125,43.09166666666667],[141.42499999999998,43.09166666666667],[141.42499999999998,43.1],[141.4125,43.1],[141.4125,43.09166666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64415313"}}, + {"geometry":{"coordinates":[141.26874999999998,43.05416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414261_bldg_6697_op.zip","id":"64414261","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2625,43.05],[141.27499999999998,43.05],[141.27499999999998,43.05833333333333],[141.2625,43.05833333333333],[141.2625,43.05]],"type":"LineString"},"type":"Feature","properties":{"id":"64414261"}}, + {"geometry":{"coordinates":[141.25625,42.9375],"type":"Point"},"type":"Feature","properties":{"path":"64413220_bldg_6697_op.zip","id":"64413220","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.25,42.93333333333333],[141.2625,42.93333333333333],[141.2625,42.94166666666666],[141.25,42.94166666666666],[141.25,42.93333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64413220"}}, + {"geometry":{"coordinates":[141.21875,43.1375],"type":"Point"},"type":"Feature","properties":{"path":"64415167_bldg_6697_op.zip","id":"64415167","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2125,43.13333333333333],[141.225,43.13333333333333],[141.225,43.141666666666666],[141.2125,43.141666666666666],[141.2125,43.13333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64415167"}}, + {"geometry":{"coordinates":[141.30625,43.05416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414264_bldg_6697_op.zip","id":"64414264","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3,43.05],[141.3125,43.05],[141.3125,43.05833333333333],[141.3,43.05833333333333],[141.3,43.05]],"type":"LineString"},"type":"Feature","properties":{"id":"64414264"}}, + {"geometry":{"coordinates":[141.49375,43.045833333333334],"type":"Point"},"type":"Feature","properties":{"path":"64414359_bldg_6697_op.zip","id":"64414359","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4875,43.041666666666664],[141.5,43.041666666666664],[141.5,43.05],[141.4875,43.05],[141.4875,43.041666666666664]],"type":"LineString"},"type":"Feature","properties":{"id":"64414359"}}, + {"geometry":{"coordinates":[141.41875,42.920833333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413303_bldg_6697_op.zip","id":"64413303","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4125,42.916666666666664],[141.42499999999998,42.916666666666664],[141.42499999999998,42.925],[141.4125,42.925],[141.4125,42.916666666666664]],"type":"LineString"},"type":"Feature","properties":{"id":"64413303"}}, + {"geometry":{"coordinates":[141.20624999999998,43.0625],"type":"Point"},"type":"Feature","properties":{"path":"64414176_bldg_6697_op.zip","id":"64414176","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2,43.05833333333333],[141.21249999999998,43.05833333333333],[141.21249999999998,43.06666666666666],[141.2,43.06666666666666],[141.2,43.05833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414176"}}, + {"geometry":{"coordinates":[141.20624999999998,42.97083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413166_bldg_6697_op.zip","id":"64413166","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2,42.96666666666667],[141.21249999999998,42.96666666666667],[141.21249999999998,42.975],[141.2,42.975],[141.2,42.96666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64413166"}}, + {"geometry":{"coordinates":[141.40625,43.1625],"type":"Point"},"type":"Feature","properties":{"path":"64415392_bldg_6697_op.zip","id":"64415392","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4,43.15833333333333],[141.4125,43.15833333333333],[141.4125,43.166666666666664],[141.4,43.166666666666664],[141.4,43.15833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64415392"}}, + {"geometry":{"coordinates":[141.24375,43.1625],"type":"Point"},"type":"Feature","properties":{"path":"64415199_bldg_6697_op.zip","id":"64415199","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2375,43.15833333333333],[141.25,43.15833333333333],[141.25,43.166666666666664],[141.2375,43.166666666666664],[141.2375,43.15833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64415199"}}, + {"geometry":{"coordinates":[141.16875,42.97916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64413173_bldg_6697_op.zip","id":"64413173","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.1625,42.975],[141.17499999999998,42.975],[141.17499999999998,42.983333333333334],[141.1625,42.983333333333334],[141.1625,42.975]],"type":"LineString"},"type":"Feature","properties":{"id":"64413173"}}, + {"geometry":{"coordinates":[141.29375,42.94583333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413233_bldg_6697_op.zip","id":"64413233","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2875,42.94166666666667],[141.29999999999998,42.94166666666667],[141.29999999999998,42.95],[141.2875,42.95],[141.2875,42.94166666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64413233"}}, + {"geometry":{"coordinates":[141.16875,42.97083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413163_bldg_6697_op.zip","id":"64413163","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.1625,42.96666666666667],[141.17499999999998,42.96666666666667],[141.17499999999998,42.975],[141.1625,42.975],[141.1625,42.96666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64413163"}}, + {"geometry":{"coordinates":[141.34375,43.07083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64414287_bldg_6697_op.zip","id":"64414287","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3375,43.06666666666667],[141.35,43.06666666666667],[141.35,43.075],[141.3375,43.075],[141.3375,43.06666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64414287"}}, + {"geometry":{"coordinates":[141.25625,43.12083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64415240_bldg_6697_op.zip","id":"64415240","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.25,43.11666666666667],[141.2625,43.11666666666667],[141.2625,43.125],[141.25,43.125],[141.25,43.11666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64415240"}}, + {"geometry":{"coordinates":[141.38125,42.99583333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413390_bldg_6697_op.zip","id":"64413390","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.375,42.99166666666667],[141.3875,42.99166666666667],[141.3875,43],[141.375,43],[141.375,42.99166666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64413390"}}, + {"geometry":{"coordinates":[141.40625,43.07083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64414382_bldg_6697_op.zip","id":"64414382","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4,43.06666666666667],[141.4125,43.06666666666667],[141.4125,43.075],[141.4,43.075],[141.4,43.06666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64414382"}}, + {"geometry":{"coordinates":[141.24375,43.087500000000006],"type":"Point"},"type":"Feature","properties":{"path":"64415109_bldg_6697_op.zip","id":"64415109","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2375,43.083333333333336],[141.25,43.083333333333336],[141.25,43.09166666666667],[141.2375,43.09166666666667],[141.2375,43.083333333333336]],"type":"LineString"},"type":"Feature","properties":{"id":"64415109"}}, + {"geometry":{"coordinates":[141.35625,43.170833333333334],"type":"Point"},"type":"Feature","properties":{"path":"64416208_bldg_6697_op.zip","id":"64416208","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.35,43.166666666666664],[141.36249999999998,43.166666666666664],[141.36249999999998,43.175],[141.35,43.175],[141.35,43.166666666666664]],"type":"LineString"},"type":"Feature","properties":{"id":"64416208"}}, + {"geometry":{"coordinates":[141.45624999999998,43.09583333333334],"type":"Point"},"type":"Feature","properties":{"path":"64415316_bldg_6697_op.zip","id":"64415316","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.45,43.09166666666667],[141.46249999999998,43.09166666666667],[141.46249999999998,43.1],[141.45,43.1],[141.45,43.09166666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64415316"}}, + {"geometry":{"coordinates":[141.23125,42.94583333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413138_bldg_6697_op.zip","id":"64413138","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.225,42.94166666666667],[141.23749999999998,42.94166666666667],[141.23749999999998,42.95],[141.225,42.95],[141.225,42.94166666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64413138"}}, + {"geometry":{"coordinates":[141.35625,42.99583333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413298_bldg_6697_op.zip","id":"64413298","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.35,42.99166666666667],[141.36249999999998,42.99166666666667],[141.36249999999998,43],[141.35,43],[141.35,42.99166666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64413298"}}, + {"geometry":{"coordinates":[141.41875,43.020833333333336],"type":"Point"},"type":"Feature","properties":{"path":"64414323_bldg_6697_op.zip","id":"64414323","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4125,43.016666666666666],[141.42499999999998,43.016666666666666],[141.42499999999998,43.025],[141.4125,43.025],[141.4125,43.016666666666666]],"type":"LineString"},"type":"Feature","properties":{"id":"64414323"}}, + {"geometry":{"coordinates":[141.25625,43.087500000000006],"type":"Point"},"type":"Feature","properties":{"path":"64415200_bldg_6697_op.zip","id":"64415200","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.25,43.083333333333336],[141.2625,43.083333333333336],[141.2625,43.09166666666667],[141.25,43.09166666666667],[141.25,43.083333333333336]],"type":"LineString"},"type":"Feature","properties":{"id":"64415200"}}, + {"geometry":{"coordinates":[141.23125,43.09583333333334],"type":"Point"},"type":"Feature","properties":{"path":"64415118_bldg_6697_op.zip","id":"64415118","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.225,43.09166666666667],[141.23749999999998,43.09166666666667],[141.23749999999998,43.1],[141.225,43.1],[141.225,43.09166666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64415118"}}, + {"geometry":{"coordinates":[141.38125,43.1625],"type":"Point"},"type":"Feature","properties":{"path":"64415390_bldg_6697_op.zip","id":"64415390","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.375,43.15833333333333],[141.3875,43.15833333333333],[141.3875,43.166666666666664],[141.375,43.166666666666664],[141.375,43.15833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64415390"}}, + {"geometry":{"coordinates":[141.38125,42.920833333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413300_bldg_6697_op.zip","id":"64413300","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.375,42.916666666666664],[141.3875,42.916666666666664],[141.3875,42.925],[141.375,42.925],[141.375,42.916666666666664]],"type":"LineString"},"type":"Feature","properties":{"id":"64413300"}}, + {"geometry":{"coordinates":[141.21875,43.145833333333336],"type":"Point"},"type":"Feature","properties":{"path":"64415177_bldg_6697_op.zip","id":"64415177","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2125,43.141666666666666],[141.225,43.141666666666666],[141.225,43.15],[141.2125,43.15],[141.2125,43.141666666666666]],"type":"LineString"},"type":"Feature","properties":{"id":"64415177"}}, + {"geometry":{"coordinates":[141.38125,43.0125],"type":"Point"},"type":"Feature","properties":{"path":"64414310_bldg_6697_op.zip","id":"64414310","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.375,43.00833333333333],[141.3875,43.00833333333333],[141.3875,43.016666666666666],[141.375,43.016666666666666],[141.375,43.00833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414310"}}, + {"geometry":{"coordinates":[141.26874999999998,43.087500000000006],"type":"Point"},"type":"Feature","properties":{"path":"64415201_bldg_6697_op.zip","id":"64415201","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2625,43.083333333333336],[141.27499999999998,43.083333333333336],[141.27499999999998,43.09166666666667],[141.2625,43.09166666666667],[141.2625,43.083333333333336]],"type":"LineString"},"type":"Feature","properties":{"id":"64415201"}}, + {"geometry":{"coordinates":[141.29375,42.97083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413263_bldg_6697_op.zip","id":"64413263","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2875,42.96666666666667],[141.29999999999998,42.96666666666667],[141.29999999999998,42.975],[141.2875,42.975],[141.2875,42.96666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64413263"}}, + {"geometry":{"coordinates":[141.31875,42.95416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64413245_bldg_6697_op.zip","id":"64413245","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3125,42.95],[141.325,42.95],[141.325,42.958333333333336],[141.3125,42.958333333333336],[141.3125,42.95]],"type":"LineString"},"type":"Feature","properties":{"id":"64413245"}}, + {"geometry":{"coordinates":[141.20624999999998,43.12083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64415146_bldg_6697_op.zip","id":"64415146","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2,43.11666666666667],[141.21249999999998,43.11666666666667],[141.21249999999998,43.125],[141.2,43.125],[141.2,43.11666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64415146"}}, + {"geometry":{"coordinates":[141.39374999999998,42.9125],"type":"Point"},"type":"Feature","properties":{"path":"64412391_bldg_6697_op.zip","id":"64412391","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3875,42.90833333333333],[141.39999999999998,42.90833333333333],[141.39999999999998,42.916666666666664],[141.3875,42.916666666666664],[141.3875,42.90833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64412391"}}, + {"geometry":{"coordinates":[141.38125,43.1375],"type":"Point"},"type":"Feature","properties":{"path":"64415360_bldg_6697_op.zip","id":"64415360","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.375,43.13333333333333],[141.3875,43.13333333333333],[141.3875,43.141666666666666],[141.375,43.141666666666666],[141.375,43.13333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64415360"}}, + {"geometry":{"coordinates":[141.43125,42.920833333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413304_bldg_6697_op.zip","id":"64413304","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.425,42.916666666666664],[141.4375,42.916666666666664],[141.4375,42.925],[141.425,42.925],[141.425,42.916666666666664]],"type":"LineString"},"type":"Feature","properties":{"id":"64413304"}}, + {"geometry":{"coordinates":[141.28125,43.07916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414292_bldg_6697_op.zip","id":"64414292","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.275,43.075],[141.2875,43.075],[141.2875,43.083333333333336],[141.275,43.083333333333336],[141.275,43.075]],"type":"LineString"},"type":"Feature","properties":{"id":"64414292"}}, + {"geometry":{"coordinates":[141.46875,43.0625],"type":"Point"},"type":"Feature","properties":{"path":"64414377_bldg_6697_op.zip","id":"64414377","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4625,43.05833333333333],[141.475,43.05833333333333],[141.475,43.06666666666666],[141.4625,43.06666666666666],[141.4625,43.05833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414377"}}, + {"geometry":{"coordinates":[141.36875,43.00416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414209_bldg_6697_op.zip","id":"64414209","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3625,43],[141.375,43],[141.375,43.00833333333333],[141.3625,43.00833333333333],[141.3625,43]],"type":"LineString"},"type":"Feature","properties":{"id":"64414209"}}, + {"geometry":{"coordinates":[141.31875,42.97916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64413275_bldg_6697_op.zip","id":"64413275","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3125,42.975],[141.325,42.975],[141.325,42.983333333333334],[141.3125,42.983333333333334],[141.3125,42.975]],"type":"LineString"},"type":"Feature","properties":{"id":"64413275"}}, + {"geometry":{"coordinates":[141.30625,42.99583333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413294_bldg_6697_op.zip","id":"64413294","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3,42.99166666666667],[141.3125,42.99166666666667],[141.3125,43],[141.3,43],[141.3,42.99166666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64413294"}}, + {"geometry":{"coordinates":[141.38125,43.05416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414360_bldg_6697_op.zip","id":"64414360","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.375,43.05],[141.3875,43.05],[141.3875,43.05833333333333],[141.375,43.05833333333333],[141.375,43.05]],"type":"LineString"},"type":"Feature","properties":{"id":"64414360"}}, + {"geometry":{"coordinates":[141.40625,42.92916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64413312_bldg_6697_op.zip","id":"64413312","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4,42.925],[141.4125,42.925],[141.4125,42.93333333333333],[141.4,42.93333333333333],[141.4,42.925]],"type":"LineString"},"type":"Feature","properties":{"id":"64413312"}}, + {"geometry":{"coordinates":[141.35625,43.1625],"type":"Point"},"type":"Feature","properties":{"path":"64415298_bldg_6697_op.zip","id":"64415298","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.35,43.15833333333333],[141.36249999999998,43.15833333333333],[141.36249999999998,43.166666666666664],[141.35,43.166666666666664],[141.35,43.15833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64415298"}}, + {"geometry":{"coordinates":[141.33124999999998,43.0125],"type":"Point"},"type":"Feature","properties":{"path":"64414216_bldg_6697_op.zip","id":"64414216","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.325,43.00833333333333],[141.33749999999998,43.00833333333333],[141.33749999999998,43.016666666666666],[141.325,43.016666666666666],[141.325,43.00833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414216"}}, + {"geometry":{"coordinates":[141.39374999999998,42.9375],"type":"Point"},"type":"Feature","properties":{"path":"64413321_bldg_6697_op.zip","id":"64413321","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3875,42.93333333333333],[141.39999999999998,42.93333333333333],[141.39999999999998,42.94166666666666],[141.3875,42.94166666666666],[141.3875,42.93333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64413321"}}, + {"geometry":{"coordinates":[141.34375,42.987500000000004],"type":"Point"},"type":"Feature","properties":{"path":"64413287_bldg_6697_op.zip","id":"64413287","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3375,42.983333333333334],[141.35,42.983333333333334],[141.35,42.99166666666667],[141.3375,42.99166666666667],[141.3375,42.983333333333334]],"type":"LineString"},"type":"Feature","properties":{"id":"64413287"}}, + {"geometry":{"coordinates":[141.34375,43.087500000000006],"type":"Point"},"type":"Feature","properties":{"path":"64415207_bldg_6697_op.zip","id":"64415207","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3375,43.083333333333336],[141.35,43.083333333333336],[141.35,43.09166666666667],[141.3375,43.09166666666667],[141.3375,43.083333333333336]],"type":"LineString"},"type":"Feature","properties":{"id":"64415207"}}, + {"geometry":{"coordinates":[141.24375,42.95416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64413149_bldg_6697_op.zip","id":"64413149","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2375,42.95],[141.25,42.95],[141.25,42.958333333333336],[141.2375,42.958333333333336],[141.2375,42.95]],"type":"LineString"},"type":"Feature","properties":{"id":"64413149"}}, + {"geometry":{"coordinates":[141.36875,43.0625],"type":"Point"},"type":"Feature","properties":{"path":"64414279_bldg_6697_op.zip","id":"64414279","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3625,43.05833333333333],[141.375,43.05833333333333],[141.375,43.06666666666666],[141.3625,43.06666666666666],[141.3625,43.05833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414279"}}, + {"geometry":{"coordinates":[141.29375,43.12083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64415243_bldg_6697_op.zip","id":"64415243","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2875,43.11666666666667],[141.29999999999998,43.11666666666667],[141.29999999999998,43.125],[141.2875,43.125],[141.2875,43.11666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64415243"}}, + {"geometry":{"coordinates":[141.43125,42.97083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413364_bldg_6697_op.zip","id":"64413364","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.425,42.96666666666667],[141.4375,42.96666666666667],[141.4375,42.975],[141.425,42.975],[141.425,42.96666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64413364"}}, + {"geometry":{"coordinates":[141.29375,43.00416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414203_bldg_6697_op.zip","id":"64414203","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2875,43],[141.29999999999998,43],[141.29999999999998,43.00833333333333],[141.2875,43.00833333333333],[141.2875,43]],"type":"LineString"},"type":"Feature","properties":{"id":"64414203"}}, + {"geometry":{"coordinates":[141.39374999999998,42.987500000000004],"type":"Point"},"type":"Feature","properties":{"path":"64413381_bldg_6697_op.zip","id":"64413381","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3875,42.983333333333334],[141.39999999999998,42.983333333333334],[141.39999999999998,42.99166666666667],[141.3875,42.99166666666667],[141.3875,42.983333333333334]],"type":"LineString"},"type":"Feature","properties":{"id":"64413381"}}, + {"geometry":{"coordinates":[141.36875,42.92916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64413219_bldg_6697_op.zip","id":"64413219","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3625,42.925],[141.375,42.925],[141.375,42.93333333333333],[141.3625,42.93333333333333],[141.3625,42.925]],"type":"LineString"},"type":"Feature","properties":{"id":"64413219"}}, + {"geometry":{"coordinates":[141.15625,42.962500000000006],"type":"Point"},"type":"Feature","properties":{"path":"64413152_bldg_6697_op.zip","id":"64413152","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.15,42.958333333333336],[141.1625,42.958333333333336],[141.1625,42.96666666666667],[141.15,42.96666666666667],[141.15,42.958333333333336]],"type":"LineString"},"type":"Feature","properties":{"id":"64413152"}}, + {"geometry":{"coordinates":[141.43125,43.145833333333336],"type":"Point"},"type":"Feature","properties":{"path":"64415374_bldg_6697_op.zip","id":"64415374","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.425,43.141666666666666],[141.4375,43.141666666666666],[141.4375,43.15],[141.425,43.15],[141.425,43.141666666666666]],"type":"LineString"},"type":"Feature","properties":{"id":"64415374"}}, + {"geometry":{"coordinates":[141.36875,43.045833333333334],"type":"Point"},"type":"Feature","properties":{"path":"64414259_bldg_6697_op.zip","id":"64414259","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3625,43.041666666666664],[141.375,43.041666666666664],[141.375,43.05],[141.3625,43.05],[141.3625,43.041666666666664]],"type":"LineString"},"type":"Feature","properties":{"id":"64414259"}}, + {"geometry":{"coordinates":[141.25625,42.962500000000006],"type":"Point"},"type":"Feature","properties":{"path":"64413250_bldg_6697_op.zip","id":"64413250","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.25,42.958333333333336],[141.2625,42.958333333333336],[141.2625,42.96666666666667],[141.25,42.96666666666667],[141.25,42.958333333333336]],"type":"LineString"},"type":"Feature","properties":{"id":"64413250"}}, + {"geometry":{"coordinates":[141.33124999999998,43.020833333333336],"type":"Point"},"type":"Feature","properties":{"path":"64414226_bldg_6697_op.zip","id":"64414226","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.325,43.016666666666666],[141.33749999999998,43.016666666666666],[141.33749999999998,43.025],[141.325,43.025],[141.325,43.016666666666666]],"type":"LineString"},"type":"Feature","properties":{"id":"64414226"}}, + {"geometry":{"coordinates":[141.20624999999998,43.09583333333334],"type":"Point"},"type":"Feature","properties":{"path":"64415116_bldg_6697_op.zip","id":"64415116","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2,43.09166666666667],[141.21249999999998,43.09166666666667],[141.21249999999998,43.1],[141.2,43.1],[141.2,43.09166666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64415116"}}, + {"geometry":{"coordinates":[141.44375,42.9375],"type":"Point"},"type":"Feature","properties":{"path":"64413325_bldg_6697_op.zip","id":"64413325","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4375,42.93333333333333],[141.45,42.93333333333333],[141.45,42.94166666666666],[141.4375,42.94166666666666],[141.4375,42.93333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64413325"}}, + {"geometry":{"coordinates":[141.34375,43.0375],"type":"Point"},"type":"Feature","properties":{"path":"64414247_bldg_6697_op.zip","id":"64414247","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3375,43.03333333333333],[141.35,43.03333333333333],[141.35,43.041666666666664],[141.3375,43.041666666666664],[141.3375,43.03333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414247"}}, + {"geometry":{"coordinates":[141.41875,43.112500000000004],"type":"Point"},"type":"Feature","properties":{"path":"64415333_bldg_6697_op.zip","id":"64415333","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4125,43.108333333333334],[141.42499999999998,43.108333333333334],[141.42499999999998,43.11666666666667],[141.4125,43.11666666666667],[141.4125,43.108333333333334]],"type":"LineString"},"type":"Feature","properties":{"id":"64415333"}}, + {"geometry":{"coordinates":[141.14374999999998,42.9375],"type":"Point"},"type":"Feature","properties":{"path":"64413121_bldg_6697_op.zip","id":"64413121","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.1375,42.93333333333333],[141.14999999999998,42.93333333333333],[141.14999999999998,42.94166666666666],[141.1375,42.94166666666666],[141.1375,42.93333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64413121"}}, + {"geometry":{"coordinates":[141.43125,42.9375],"type":"Point"},"type":"Feature","properties":{"path":"64413324_bldg_6697_op.zip","id":"64413324","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.425,42.93333333333333],[141.4375,42.93333333333333],[141.4375,42.94166666666666],[141.425,42.94166666666666],[141.425,42.93333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64413324"}}, + {"geometry":{"coordinates":[141.31875,42.987500000000004],"type":"Point"},"type":"Feature","properties":{"path":"64413285_bldg_6697_op.zip","id":"64413285","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3125,42.983333333333334],[141.325,42.983333333333334],[141.325,42.99166666666667],[141.3125,42.99166666666667],[141.3125,42.983333333333334]],"type":"LineString"},"type":"Feature","properties":{"id":"64413285"}}, + {"geometry":{"coordinates":[141.15625,42.94583333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413132_bldg_6697_op.zip","id":"64413132","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.15,42.94166666666667],[141.1625,42.94166666666667],[141.1625,42.95],[141.15,42.95],[141.15,42.94166666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64413132"}}, + {"geometry":{"coordinates":[141.43125,43.09583333333334],"type":"Point"},"type":"Feature","properties":{"path":"64415314_bldg_6697_op.zip","id":"64415314","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.425,43.09166666666667],[141.4375,43.09166666666667],[141.4375,43.1],[141.425,43.1],[141.425,43.09166666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64415314"}}, + {"geometry":{"coordinates":[141.30625,42.97916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64413274_bldg_6697_op.zip","id":"64413274","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3,42.975],[141.3125,42.975],[141.3125,42.983333333333334],[141.3,42.983333333333334],[141.3,42.975]],"type":"LineString"},"type":"Feature","properties":{"id":"64413274"}}, + {"geometry":{"coordinates":[141.19375,43.07916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414195_bldg_6697_op.zip","id":"64414195","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.1875,43.075],[141.2,43.075],[141.2,43.083333333333336],[141.1875,43.083333333333336],[141.1875,43.075]],"type":"LineString"},"type":"Feature","properties":{"id":"64414195"}}, + {"geometry":{"coordinates":[141.29375,43.09583333333334],"type":"Point"},"type":"Feature","properties":{"path":"64415213_bldg_6697_op.zip","id":"64415213","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2875,43.09166666666667],[141.29999999999998,43.09166666666667],[141.29999999999998,43.1],[141.2875,43.1],[141.2875,43.09166666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64415213"}}, + {"geometry":{"coordinates":[141.31875,43.0375],"type":"Point"},"type":"Feature","properties":{"path":"64414245_bldg_6697_op.zip","id":"64414245","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3125,43.03333333333333],[141.325,43.03333333333333],[141.325,43.041666666666664],[141.3125,43.041666666666664],[141.3125,43.03333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414245"}}, + {"geometry":{"coordinates":[141.21875,43.1625],"type":"Point"},"type":"Feature","properties":{"path":"64415197_bldg_6697_op.zip","id":"64415197","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2125,43.15833333333333],[141.225,43.15833333333333],[141.225,43.166666666666664],[141.2125,43.166666666666664],[141.2125,43.15833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64415197"}}, + {"geometry":{"coordinates":[141.35625,43.087500000000006],"type":"Point"},"type":"Feature","properties":{"path":"64415208_bldg_6697_op.zip","id":"64415208","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.35,43.083333333333336],[141.36249999999998,43.083333333333336],[141.36249999999998,43.09166666666667],[141.35,43.09166666666667],[141.35,43.083333333333336]],"type":"LineString"},"type":"Feature","properties":{"id":"64415208"}}, + {"geometry":{"coordinates":[141.36875,43.0375],"type":"Point"},"type":"Feature","properties":{"path":"64414249_bldg_6697_op.zip","id":"64414249","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3625,43.03333333333333],[141.375,43.03333333333333],[141.375,43.041666666666664],[141.3625,43.041666666666664],[141.3625,43.03333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414249"}}, + {"geometry":{"coordinates":[141.43125,42.92916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64413314_bldg_6697_op.zip","id":"64413314","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.425,42.925],[141.4375,42.925],[141.4375,42.93333333333333],[141.425,42.93333333333333],[141.425,42.925]],"type":"LineString"},"type":"Feature","properties":{"id":"64413314"}}, + {"geometry":{"coordinates":[141.31875,43.07083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64414285_bldg_6697_op.zip","id":"64414285","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3125,43.06666666666667],[141.325,43.06666666666667],[141.325,43.075],[141.3125,43.075],[141.3125,43.06666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64414285"}}, + {"geometry":{"coordinates":[141.41875,43.07916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414393_bldg_6697_op.zip","id":"64414393","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4125,43.075],[141.42499999999998,43.075],[141.42499999999998,43.083333333333336],[141.4125,43.083333333333336],[141.4125,43.075]],"type":"LineString"},"type":"Feature","properties":{"id":"64414393"}}, + {"geometry":{"coordinates":[141.33124999999998,43.1375],"type":"Point"},"type":"Feature","properties":{"path":"64415266_bldg_6697_op.zip","id":"64415266","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.325,43.13333333333333],[141.33749999999998,43.13333333333333],[141.33749999999998,43.141666666666666],[141.325,43.141666666666666],[141.325,43.13333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64415266"}}, + {"geometry":{"coordinates":[141.28125,43.1375],"type":"Point"},"type":"Feature","properties":{"path":"64415262_bldg_6697_op.zip","id":"64415262","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.275,43.13333333333333],[141.2875,43.13333333333333],[141.2875,43.141666666666666],[141.275,43.141666666666666],[141.275,43.13333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64415262"}}, + {"geometry":{"coordinates":[141.48125,42.987500000000004],"type":"Point"},"type":"Feature","properties":{"path":"64413388_bldg_6697_op.zip","id":"64413388","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.475,42.983333333333334],[141.48749999999998,42.983333333333334],[141.48749999999998,42.99166666666667],[141.475,42.99166666666667],[141.475,42.983333333333334]],"type":"LineString"},"type":"Feature","properties":{"id":"64413388"}}, + {"geometry":{"coordinates":[141.34375,42.95416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64413247_bldg_6697_op.zip","id":"64413247","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3375,42.95],[141.35,42.95],[141.35,42.958333333333336],[141.3375,42.958333333333336],[141.3375,42.95]],"type":"LineString"},"type":"Feature","properties":{"id":"64413247"}}, + {"geometry":{"coordinates":[141.25625,43.0375],"type":"Point"},"type":"Feature","properties":{"path":"64414240_bldg_6697_op.zip","id":"64414240","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.25,43.03333333333333],[141.2625,43.03333333333333],[141.2625,43.041666666666664],[141.25,43.041666666666664],[141.25,43.03333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414240"}}, + {"geometry":{"coordinates":[141.34375,43.1625],"type":"Point"},"type":"Feature","properties":{"path":"64415297_bldg_6697_op.zip","id":"64415297","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3375,43.15833333333333],[141.35,43.15833333333333],[141.35,43.166666666666664],[141.3375,43.166666666666664],[141.3375,43.15833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64415297"}}, + {"geometry":{"coordinates":[141.33124999999998,42.920833333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413206_bldg_6697_op.zip","id":"64413206","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.325,42.916666666666664],[141.33749999999998,42.916666666666664],[141.33749999999998,42.925],[141.325,42.925],[141.325,42.916666666666664]],"type":"LineString"},"type":"Feature","properties":{"id":"64413206"}}, + {"geometry":{"coordinates":[141.48125,43.0125],"type":"Point"},"type":"Feature","properties":{"path":"64414318_bldg_6697_op.zip","id":"64414318","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.475,43.00833333333333],[141.48749999999998,43.00833333333333],[141.48749999999998,43.016666666666666],[141.475,43.016666666666666],[141.475,43.00833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414318"}}, + {"geometry":{"coordinates":[141.35625,42.97916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64413278_bldg_6697_op.zip","id":"64413278","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.35,42.975],[141.36249999999998,42.975],[141.36249999999998,42.983333333333334],[141.35,42.983333333333334],[141.35,42.975]],"type":"LineString"},"type":"Feature","properties":{"id":"64413278"}}, + {"geometry":{"coordinates":[141.34375,43.07916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414297_bldg_6697_op.zip","id":"64414297","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3375,43.075],[141.35,43.075],[141.35,43.083333333333336],[141.3375,43.083333333333336],[141.3375,43.075]],"type":"LineString"},"type":"Feature","properties":{"id":"64414297"}}, + {"geometry":{"coordinates":[141.41875,43.00416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414303_bldg_6697_op.zip","id":"64414303","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4125,43],[141.42499999999998,43],[141.42499999999998,43.00833333333333],[141.4125,43.00833333333333],[141.4125,43]],"type":"LineString"},"type":"Feature","properties":{"id":"64414303"}}, + {"geometry":{"coordinates":[141.29375,43.0375],"type":"Point"},"type":"Feature","properties":{"path":"64414243_bldg_6697_op.zip","id":"64414243","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2875,43.03333333333333],[141.29999999999998,43.03333333333333],[141.29999999999998,43.041666666666664],[141.2875,43.041666666666664],[141.2875,43.03333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414243"}}, + {"geometry":{"coordinates":[141.33124999999998,43.00416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414206_bldg_6697_op.zip","id":"64414206","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.325,43],[141.33749999999998,43],[141.33749999999998,43.00833333333333],[141.325,43.00833333333333],[141.325,43]],"type":"LineString"},"type":"Feature","properties":{"id":"64414206"}}, + {"geometry":{"coordinates":[141.30625,43.09583333333334],"type":"Point"},"type":"Feature","properties":{"path":"64415214_bldg_6697_op.zip","id":"64415214","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3,43.09166666666667],[141.3125,43.09166666666667],[141.3125,43.1],[141.3,43.1],[141.3,43.09166666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64415214"}}, + {"geometry":{"coordinates":[141.41875,43.15416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64415383_bldg_6697_op.zip","id":"64415383","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4125,43.15],[141.42499999999998,43.15],[141.42499999999998,43.15833333333333],[141.4125,43.15833333333333],[141.4125,43.15]],"type":"LineString"},"type":"Feature","properties":{"id":"64415383"}}, + {"geometry":{"coordinates":[141.29375,43.02916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414233_bldg_6697_op.zip","id":"64414233","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2875,43.025],[141.29999999999998,43.025],[141.29999999999998,43.03333333333333],[141.2875,43.03333333333333],[141.2875,43.025]],"type":"LineString"},"type":"Feature","properties":{"id":"64414233"}}, + {"geometry":{"coordinates":[141.33124999999998,43.12916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64415256_bldg_6697_op.zip","id":"64415256","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.325,43.125],[141.33749999999998,43.125],[141.33749999999998,43.13333333333333],[141.325,43.13333333333333],[141.325,43.125]],"type":"LineString"},"type":"Feature","properties":{"id":"64415256"}}, + {"geometry":{"coordinates":[141.44375,43.15416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64415385_bldg_6697_op.zip","id":"64415385","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4375,43.15],[141.45,43.15],[141.45,43.15833333333333],[141.4375,43.15833333333333],[141.4375,43.15]],"type":"LineString"},"type":"Feature","properties":{"id":"64415385"}}, + {"geometry":{"coordinates":[141.38125,43.020833333333336],"type":"Point"},"type":"Feature","properties":{"path":"64414320_bldg_6697_op.zip","id":"64414320","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.375,43.016666666666666],[141.3875,43.016666666666666],[141.3875,43.025],[141.375,43.025],[141.375,43.016666666666666]],"type":"LineString"},"type":"Feature","properties":{"id":"64414320"}}, + {"geometry":{"coordinates":[141.33124999999998,42.895833333333336],"type":"Point"},"type":"Feature","properties":{"path":"64412276_bldg_6697_op.zip","id":"64412276","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.325,42.891666666666666],[141.33749999999998,42.891666666666666],[141.33749999999998,42.9],[141.325,42.9],[141.325,42.891666666666666]],"type":"LineString"},"type":"Feature","properties":{"id":"64412276"}}, + {"geometry":{"coordinates":[141.30625,43.12916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64415254_bldg_6697_op.zip","id":"64415254","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3,43.125],[141.3125,43.125],[141.3125,43.13333333333333],[141.3,43.13333333333333],[141.3,43.125]],"type":"LineString"},"type":"Feature","properties":{"id":"64415254"}}, + {"geometry":{"coordinates":[141.33124999999998,43.0375],"type":"Point"},"type":"Feature","properties":{"path":"64414246_bldg_6697_op.zip","id":"64414246","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.325,43.03333333333333],[141.33749999999998,43.03333333333333],[141.33749999999998,43.041666666666664],[141.325,43.041666666666664],[141.325,43.03333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414246"}}, + {"geometry":{"coordinates":[141.40625,43.0375],"type":"Point"},"type":"Feature","properties":{"path":"64414342_bldg_6697_op.zip","id":"64414342","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4,43.03333333333333],[141.4125,43.03333333333333],[141.4125,43.041666666666664],[141.4,43.041666666666664],[141.4,43.03333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414342"}}, + {"geometry":{"coordinates":[141.31875,42.90416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64412285_bldg_6697_op.zip","id":"64412285","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3125,42.9],[141.325,42.9],[141.325,42.90833333333333],[141.3125,42.90833333333333],[141.3125,42.9]],"type":"LineString"},"type":"Feature","properties":{"id":"64412285"}}, + {"geometry":{"coordinates":[141.49375,43.020833333333336],"type":"Point"},"type":"Feature","properties":{"path":"64414329_bldg_6697_op.zip","id":"64414329","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4875,43.016666666666666],[141.5,43.016666666666666],[141.5,43.025],[141.4875,43.025],[141.4875,43.016666666666666]],"type":"LineString"},"type":"Feature","properties":{"id":"64414329"}}, + {"geometry":{"coordinates":[141.46875,43.07916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414397_bldg_6697_op.zip","id":"64414397","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4625,43.075],[141.475,43.075],[141.475,43.083333333333336],[141.4625,43.083333333333336],[141.4625,43.075]],"type":"LineString"},"type":"Feature","properties":{"id":"64414397"}}, + {"geometry":{"coordinates":[141.14374999999998,42.94583333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413131_bldg_6697_op.zip","id":"64413131","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.1375,42.94166666666667],[141.14999999999998,42.94166666666667],[141.14999999999998,42.95],[141.1375,42.95],[141.1375,42.94166666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64413131"}}, + {"geometry":{"coordinates":[141.34375,43.12916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64415257_bldg_6697_op.zip","id":"64415257","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3375,43.125],[141.35,43.125],[141.35,43.13333333333333],[141.3375,43.13333333333333],[141.3375,43.125]],"type":"LineString"},"type":"Feature","properties":{"id":"64415257"}}, + {"geometry":{"coordinates":[141.41875,43.1375],"type":"Point"},"type":"Feature","properties":{"path":"64415363_bldg_6697_op.zip","id":"64415363","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4125,43.13333333333333],[141.42499999999998,43.13333333333333],[141.42499999999998,43.141666666666666],[141.4125,43.141666666666666],[141.4125,43.13333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64415363"}}, + {"geometry":{"coordinates":[141.49375,43.0125],"type":"Point"},"type":"Feature","properties":{"path":"64414319_bldg_6697_op.zip","id":"64414319","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4875,43.00833333333333],[141.5,43.00833333333333],[141.5,43.016666666666666],[141.4875,43.016666666666666],[141.4875,43.00833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414319"}}, + {"geometry":{"coordinates":[141.18125,42.97083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413164_bldg_6697_op.zip","id":"64413164","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.175,42.96666666666667],[141.1875,42.96666666666667],[141.1875,42.975],[141.175,42.975],[141.175,42.96666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64413164"}}, + {"geometry":{"coordinates":[141.40625,43.10416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64415322_bldg_6697_op.zip","id":"64415322","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4,43.1],[141.4125,43.1],[141.4125,43.108333333333334],[141.4,43.108333333333334],[141.4,43.1]],"type":"LineString"},"type":"Feature","properties":{"id":"64415322"}}, + {"geometry":{"coordinates":[141.28125,42.97083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413262_bldg_6697_op.zip","id":"64413262","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.275,42.96666666666667],[141.2875,42.96666666666667],[141.2875,42.975],[141.275,42.975],[141.275,42.96666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64413262"}}, + {"geometry":{"coordinates":[141.39374999999998,43.1375],"type":"Point"},"type":"Feature","properties":{"path":"64415361_bldg_6697_op.zip","id":"64415361","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3875,43.13333333333333],[141.39999999999998,43.13333333333333],[141.39999999999998,43.141666666666666],[141.3875,43.141666666666666],[141.3875,43.13333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64415361"}}, + {"geometry":{"coordinates":[141.39374999999998,42.90416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64412381_bldg_6697_op.zip","id":"64412381","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3875,42.9],[141.39999999999998,42.9],[141.39999999999998,42.90833333333333],[141.3875,42.90833333333333],[141.3875,42.9]],"type":"LineString"},"type":"Feature","properties":{"id":"64412381"}}, + {"geometry":{"coordinates":[141.44375,43.045833333333334],"type":"Point"},"type":"Feature","properties":{"path":"64414355_bldg_6697_op.zip","id":"64414355","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4375,43.041666666666664],[141.45,43.041666666666664],[141.45,43.05],[141.4375,43.05],[141.4375,43.041666666666664]],"type":"LineString"},"type":"Feature","properties":{"id":"64414355"}}, + {"geometry":{"coordinates":[141.21875,43.05416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414167_bldg_6697_op.zip","id":"64414167","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2125,43.05],[141.225,43.05],[141.225,43.05833333333333],[141.2125,43.05833333333333],[141.2125,43.05]],"type":"LineString"},"type":"Feature","properties":{"id":"64414167"}}, + {"geometry":{"coordinates":[141.44375,42.987500000000004],"type":"Point"},"type":"Feature","properties":{"path":"64413385_bldg_6697_op.zip","id":"64413385","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4375,42.983333333333334],[141.45,42.983333333333334],[141.45,42.99166666666667],[141.4375,42.99166666666667],[141.4375,42.983333333333334]],"type":"LineString"},"type":"Feature","properties":{"id":"64413385"}}, + {"geometry":{"coordinates":[141.44375,43.00416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414305_bldg_6697_op.zip","id":"64414305","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4375,43],[141.45,43],[141.45,43.00833333333333],[141.4375,43.00833333333333],[141.4375,43]],"type":"LineString"},"type":"Feature","properties":{"id":"64414305"}}, + {"geometry":{"coordinates":[141.38125,43.0625],"type":"Point"},"type":"Feature","properties":{"path":"64414370_bldg_6697_op.zip","id":"64414370","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.375,43.05833333333333],[141.3875,43.05833333333333],[141.3875,43.06666666666666],[141.375,43.06666666666666],[141.375,43.05833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414370"}}, + {"geometry":{"coordinates":[141.29375,43.045833333333334],"type":"Point"},"type":"Feature","properties":{"path":"64414253_bldg_6697_op.zip","id":"64414253","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2875,43.041666666666664],[141.29999999999998,43.041666666666664],[141.29999999999998,43.05],[141.2875,43.05],[141.2875,43.041666666666664]],"type":"LineString"},"type":"Feature","properties":{"id":"64414253"}}, + {"geometry":{"coordinates":[141.34375,42.90416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64412287_bldg_6697_op.zip","id":"64412287","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3375,42.9],[141.35,42.9],[141.35,42.90833333333333],[141.3375,42.90833333333333],[141.3375,42.9]],"type":"LineString"},"type":"Feature","properties":{"id":"64412287"}}, + {"geometry":{"coordinates":[141.40625,43.07916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414392_bldg_6697_op.zip","id":"64414392","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4,43.075],[141.4125,43.075],[141.4125,43.083333333333336],[141.4,43.083333333333336],[141.4,43.075]],"type":"LineString"},"type":"Feature","properties":{"id":"64414392"}}, + {"geometry":{"coordinates":[141.33124999999998,43.05416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414266_bldg_6697_op.zip","id":"64414266","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.325,43.05],[141.33749999999998,43.05],[141.33749999999998,43.05833333333333],[141.325,43.05833333333333],[141.325,43.05]],"type":"LineString"},"type":"Feature","properties":{"id":"64414266"}}, + {"geometry":{"coordinates":[141.45624999999998,43.0125],"type":"Point"},"type":"Feature","properties":{"path":"64414316_bldg_6697_op.zip","id":"64414316","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.45,43.00833333333333],[141.46249999999998,43.00833333333333],[141.46249999999998,43.016666666666666],[141.45,43.016666666666666],[141.45,43.00833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414316"}}, + {"geometry":{"coordinates":[141.36875,42.9375],"type":"Point"},"type":"Feature","properties":{"path":"64413229_bldg_6697_op.zip","id":"64413229","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3625,42.93333333333333],[141.375,42.93333333333333],[141.375,42.94166666666666],[141.3625,42.94166666666666],[141.3625,42.93333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64413229"}}, + {"geometry":{"coordinates":[141.44375,42.962500000000006],"type":"Point"},"type":"Feature","properties":{"path":"64413355_bldg_6697_op.zip","id":"64413355","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4375,42.958333333333336],[141.45,42.958333333333336],[141.45,42.96666666666667],[141.4375,42.96666666666667],[141.4375,42.958333333333336]],"type":"LineString"},"type":"Feature","properties":{"id":"64413355"}}, + {"geometry":{"coordinates":[141.48125,43.05416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414368_bldg_6697_op.zip","id":"64414368","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.475,43.05],[141.48749999999998,43.05],[141.48749999999998,43.05833333333333],[141.475,43.05833333333333],[141.475,43.05]],"type":"LineString"},"type":"Feature","properties":{"id":"64414368"}}, + {"geometry":{"coordinates":[141.28125,43.0625],"type":"Point"},"type":"Feature","properties":{"path":"64414272_bldg_6697_op.zip","id":"64414272","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.275,43.05833333333333],[141.2875,43.05833333333333],[141.2875,43.06666666666666],[141.275,43.06666666666666],[141.275,43.05833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414272"}}, + {"geometry":{"coordinates":[141.45624999999998,42.97916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64413376_bldg_6697_op.zip","id":"64413376","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.45,42.975],[141.46249999999998,42.975],[141.46249999999998,42.983333333333334],[141.45,42.983333333333334],[141.45,42.975]],"type":"LineString"},"type":"Feature","properties":{"id":"64413376"}}, + {"geometry":{"coordinates":[141.45624999999998,43.1375],"type":"Point"},"type":"Feature","properties":{"path":"64415366_bldg_6697_op.zip","id":"64415366","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.45,43.13333333333333],[141.46249999999998,43.13333333333333],[141.46249999999998,43.141666666666666],[141.45,43.141666666666666],[141.45,43.13333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64415366"}}, + {"geometry":{"coordinates":[141.31875,43.087500000000006],"type":"Point"},"type":"Feature","properties":{"path":"64415205_bldg_6697_op.zip","id":"64415205","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3125,43.083333333333336],[141.325,43.083333333333336],[141.325,43.09166666666667],[141.3125,43.09166666666667],[141.3125,43.083333333333336]],"type":"LineString"},"type":"Feature","properties":{"id":"64415205"}}, + {"geometry":{"coordinates":[141.39374999999998,43.0625],"type":"Point"},"type":"Feature","properties":{"path":"64414371_bldg_6697_op.zip","id":"64414371","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3875,43.05833333333333],[141.39999999999998,43.05833333333333],[141.39999999999998,43.06666666666666],[141.3875,43.06666666666666],[141.3875,43.05833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414371"}}, + {"geometry":{"coordinates":[141.28125,42.94583333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413232_bldg_6697_op.zip","id":"64413232","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.275,42.94166666666667],[141.2875,42.94166666666667],[141.2875,42.95],[141.275,42.95],[141.275,42.94166666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64413232"}}, + {"geometry":{"coordinates":[141.41875,43.045833333333334],"type":"Point"},"type":"Feature","properties":{"path":"64414353_bldg_6697_op.zip","id":"64414353","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4125,43.041666666666664],[141.42499999999998,43.041666666666664],[141.42499999999998,43.05],[141.4125,43.05],[141.4125,43.041666666666664]],"type":"LineString"},"type":"Feature","properties":{"id":"64414353"}}, + {"geometry":{"coordinates":[141.46875,43.087500000000006],"type":"Point"},"type":"Feature","properties":{"path":"64415307_bldg_6697_op.zip","id":"64415307","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4625,43.083333333333336],[141.475,43.083333333333336],[141.475,43.09166666666667],[141.4625,43.09166666666667],[141.4625,43.083333333333336]],"type":"LineString"},"type":"Feature","properties":{"id":"64415307"}}, + {"geometry":{"coordinates":[141.19375,43.12083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64415145_bldg_6697_op.zip","id":"64415145","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.1875,43.11666666666667],[141.2,43.11666666666667],[141.2,43.125],[141.1875,43.125],[141.1875,43.11666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64415145"}}, + {"geometry":{"coordinates":[141.40625,42.95416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64413342_bldg_6697_op.zip","id":"64413342","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4,42.95],[141.4125,42.95],[141.4125,42.958333333333336],[141.4,42.958333333333336],[141.4,42.95]],"type":"LineString"},"type":"Feature","properties":{"id":"64413342"}}, + {"geometry":{"coordinates":[141.43125,43.00416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414304_bldg_6697_op.zip","id":"64414304","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.425,43],[141.4375,43],[141.4375,43.00833333333333],[141.425,43.00833333333333],[141.425,43]],"type":"LineString"},"type":"Feature","properties":{"id":"64414304"}}, + {"geometry":{"coordinates":[141.39374999999998,43.17916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64416311_bldg_6697_op.zip","id":"64416311","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3875,43.175],[141.39999999999998,43.175],[141.39999999999998,43.18333333333333],[141.3875,43.18333333333333],[141.3875,43.175]],"type":"LineString"},"type":"Feature","properties":{"id":"64416311"}}, + {"geometry":{"coordinates":[141.36875,43.020833333333336],"type":"Point"},"type":"Feature","properties":{"path":"64414229_bldg_6697_op.zip","id":"64414229","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3625,43.016666666666666],[141.375,43.016666666666666],[141.375,43.025],[141.3625,43.025],[141.3625,43.016666666666666]],"type":"LineString"},"type":"Feature","properties":{"id":"64414229"}}, + {"geometry":{"coordinates":[141.31875,42.9375],"type":"Point"},"type":"Feature","properties":{"path":"64413225_bldg_6697_op.zip","id":"64413225","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3125,42.93333333333333],[141.325,42.93333333333333],[141.325,42.94166666666666],[141.3125,42.94166666666666],[141.3125,42.93333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64413225"}}, + {"geometry":{"coordinates":[141.38125,43.0375],"type":"Point"},"type":"Feature","properties":{"path":"64414340_bldg_6697_op.zip","id":"64414340","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.375,43.03333333333333],[141.3875,43.03333333333333],[141.3875,43.041666666666664],[141.375,43.041666666666664],[141.375,43.03333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414340"}}, + {"geometry":{"coordinates":[141.40625,43.12916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64415352_bldg_6697_op.zip","id":"64415352","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4,43.125],[141.4125,43.125],[141.4125,43.13333333333333],[141.4,43.13333333333333],[141.4,43.125]],"type":"LineString"},"type":"Feature","properties":{"id":"64415352"}}, + {"geometry":{"coordinates":[141.36875,42.97916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64413279_bldg_6697_op.zip","id":"64413279","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3625,42.975],[141.375,42.975],[141.375,42.983333333333334],[141.3625,42.983333333333334],[141.3625,42.975]],"type":"LineString"},"type":"Feature","properties":{"id":"64413279"}}, + {"geometry":{"coordinates":[141.25625,43.1375],"type":"Point"},"type":"Feature","properties":{"path":"64415260_bldg_6697_op.zip","id":"64415260","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.25,43.13333333333333],[141.2625,43.13333333333333],[141.2625,43.141666666666666],[141.25,43.141666666666666],[141.25,43.13333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64415260"}}, + {"geometry":{"coordinates":[141.49375,43.0625],"type":"Point"},"type":"Feature","properties":{"path":"64414379_bldg_6697_op.zip","id":"64414379","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4875,43.05833333333333],[141.5,43.05833333333333],[141.5,43.06666666666666],[141.4875,43.06666666666666],[141.4875,43.05833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414379"}}, + {"geometry":{"coordinates":[141.33124999999998,42.94583333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413236_bldg_6697_op.zip","id":"64413236","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.325,42.94166666666667],[141.33749999999998,42.94166666666667],[141.33749999999998,42.95],[141.325,42.95],[141.325,42.94166666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64413236"}}, + {"geometry":{"coordinates":[141.24375,42.97083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413169_bldg_6697_op.zip","id":"64413169","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2375,42.96666666666667],[141.25,42.96666666666667],[141.25,42.975],[141.2375,42.975],[141.2375,42.96666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64413169"}}, + {"geometry":{"coordinates":[141.23125,43.10416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64415128_bldg_6697_op.zip","id":"64415128","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.225,43.1],[141.23749999999998,43.1],[141.23749999999998,43.108333333333334],[141.225,43.108333333333334],[141.225,43.1]],"type":"LineString"},"type":"Feature","properties":{"id":"64415128"}}, + {"geometry":{"coordinates":[141.39374999999998,43.15416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64415381_bldg_6697_op.zip","id":"64415381","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3875,43.15],[141.39999999999998,43.15],[141.39999999999998,43.15833333333333],[141.3875,43.15833333333333],[141.3875,43.15]],"type":"LineString"},"type":"Feature","properties":{"id":"64415381"}}, + {"geometry":{"coordinates":[141.30625,42.90416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64412284_bldg_6697_op.zip","id":"64412284","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3,42.9],[141.3125,42.9],[141.3125,42.90833333333333],[141.3,42.90833333333333],[141.3,42.9]],"type":"LineString"},"type":"Feature","properties":{"id":"64412284"}}, + {"geometry":{"coordinates":[141.19375,43.1375],"type":"Point"},"type":"Feature","properties":{"path":"64415165_bldg_6697_op.zip","id":"64415165","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.1875,43.13333333333333],[141.2,43.13333333333333],[141.2,43.141666666666666],[141.1875,43.141666666666666],[141.1875,43.13333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64415165"}}, + {"geometry":{"coordinates":[141.45624999999998,42.97083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413366_bldg_6697_op.zip","id":"64413366","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.45,42.96666666666667],[141.46249999999998,42.96666666666667],[141.46249999999998,42.975],[141.45,42.975],[141.45,42.96666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64413366"}}, + {"geometry":{"coordinates":[141.34375,42.99583333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413297_bldg_6697_op.zip","id":"64413297","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3375,42.99166666666667],[141.35,42.99166666666667],[141.35,43],[141.3375,43],[141.3375,42.99166666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64413297"}}, + {"geometry":{"coordinates":[141.40625,43.170833333333334],"type":"Point"},"type":"Feature","properties":{"path":"64416302_bldg_6697_op.zip","id":"64416302","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4,43.166666666666664],[141.4125,43.166666666666664],[141.4125,43.175],[141.4,43.175],[141.4,43.166666666666664]],"type":"LineString"},"type":"Feature","properties":{"id":"64416302"}}, + {"geometry":{"coordinates":[141.21875,43.10416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64415127_bldg_6697_op.zip","id":"64415127","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2125,43.1],[141.225,43.1],[141.225,43.108333333333334],[141.2125,43.108333333333334],[141.2125,43.1]],"type":"LineString"},"type":"Feature","properties":{"id":"64415127"}}, + {"geometry":{"coordinates":[141.31875,42.97083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413265_bldg_6697_op.zip","id":"64413265","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3125,42.96666666666667],[141.325,42.96666666666667],[141.325,42.975],[141.3125,42.975],[141.3125,42.96666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64413265"}}, + {"geometry":{"coordinates":[141.26874999999998,42.962500000000006],"type":"Point"},"type":"Feature","properties":{"path":"64413251_bldg_6697_op.zip","id":"64413251","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2625,42.958333333333336],[141.27499999999998,42.958333333333336],[141.27499999999998,42.96666666666667],[141.2625,42.96666666666667],[141.2625,42.958333333333336]],"type":"LineString"},"type":"Feature","properties":{"id":"64413251"}}, + {"geometry":{"coordinates":[141.46875,43.05416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414367_bldg_6697_op.zip","id":"64414367","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4625,43.05],[141.475,43.05],[141.475,43.05833333333333],[141.4625,43.05833333333333],[141.4625,43.05]],"type":"LineString"},"type":"Feature","properties":{"id":"64414367"}}, + {"geometry":{"coordinates":[141.24375,43.0625],"type":"Point"},"type":"Feature","properties":{"path":"64414179_bldg_6697_op.zip","id":"64414179","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2375,43.05833333333333],[141.25,43.05833333333333],[141.25,43.06666666666666],[141.2375,43.06666666666666],[141.2375,43.05833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414179"}}, + {"geometry":{"coordinates":[141.29375,43.07916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414293_bldg_6697_op.zip","id":"64414293","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2875,43.075],[141.29999999999998,43.075],[141.29999999999998,43.083333333333336],[141.2875,43.083333333333336],[141.2875,43.075]],"type":"LineString"},"type":"Feature","properties":{"id":"64414293"}}, + {"geometry":{"coordinates":[141.23125,43.145833333333336],"type":"Point"},"type":"Feature","properties":{"path":"64415178_bldg_6697_op.zip","id":"64415178","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.225,43.141666666666666],[141.23749999999998,43.141666666666666],[141.23749999999998,43.15],[141.225,43.15],[141.225,43.141666666666666]],"type":"LineString"},"type":"Feature","properties":{"id":"64415178"}}, + {"geometry":{"coordinates":[141.31875,43.0625],"type":"Point"},"type":"Feature","properties":{"path":"64414275_bldg_6697_op.zip","id":"64414275","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3125,43.05833333333333],[141.325,43.05833333333333],[141.325,43.06666666666666],[141.3125,43.06666666666666],[141.3125,43.05833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414275"}}, + {"geometry":{"coordinates":[141.28125,43.0375],"type":"Point"},"type":"Feature","properties":{"path":"64414242_bldg_6697_op.zip","id":"64414242","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.275,43.03333333333333],[141.2875,43.03333333333333],[141.2875,43.041666666666664],[141.275,43.041666666666664],[141.275,43.03333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414242"}}, + {"geometry":{"coordinates":[141.36875,43.1625],"type":"Point"},"type":"Feature","properties":{"path":"64415299_bldg_6697_op.zip","id":"64415299","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3625,43.15833333333333],[141.375,43.15833333333333],[141.375,43.166666666666664],[141.3625,43.166666666666664],[141.3625,43.15833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64415299"}}, + {"geometry":{"coordinates":[141.20624999999998,43.087500000000006],"type":"Point"},"type":"Feature","properties":{"path":"64415106_bldg_6697_op.zip","id":"64415106","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2,43.083333333333336],[141.21249999999998,43.083333333333336],[141.21249999999998,43.09166666666667],[141.2,43.09166666666667],[141.2,43.083333333333336]],"type":"LineString"},"type":"Feature","properties":{"id":"64415106"}}, + {"geometry":{"coordinates":[141.38125,43.087500000000006],"type":"Point"},"type":"Feature","properties":{"path":"64415300_bldg_6697_op.zip","id":"64415300","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.375,43.083333333333336],[141.3875,43.083333333333336],[141.3875,43.09166666666667],[141.375,43.09166666666667],[141.375,43.083333333333336]],"type":"LineString"},"type":"Feature","properties":{"id":"64415300"}}, + {"geometry":{"coordinates":[141.44375,43.12916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64415355_bldg_6697_op.zip","id":"64415355","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4375,43.125],[141.45,43.125],[141.45,43.13333333333333],[141.4375,43.13333333333333],[141.4375,43.125]],"type":"LineString"},"type":"Feature","properties":{"id":"64415355"}}, + {"geometry":{"coordinates":[141.36875,42.90416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64412289_bldg_6697_op.zip","id":"64412289","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3625,42.9],[141.375,42.9],[141.375,42.90833333333333],[141.3625,42.90833333333333],[141.3625,42.9]],"type":"LineString"},"type":"Feature","properties":{"id":"64412289"}}, + {"geometry":{"coordinates":[141.44375,43.07083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64414385_bldg_6697_op.zip","id":"64414385","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4375,43.06666666666667],[141.45,43.06666666666667],[141.45,43.075],[141.4375,43.075],[141.4375,43.06666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64414385"}}, + {"geometry":{"coordinates":[141.48125,43.0625],"type":"Point"},"type":"Feature","properties":{"path":"64414378_bldg_6697_op.zip","id":"64414378","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.475,43.05833333333333],[141.48749999999998,43.05833333333333],[141.48749999999998,43.06666666666666],[141.475,43.06666666666666],[141.475,43.05833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414378"}}, + {"geometry":{"coordinates":[141.44375,43.10416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64415325_bldg_6697_op.zip","id":"64415325","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4375,43.1],[141.45,43.1],[141.45,43.108333333333334],[141.4375,43.108333333333334],[141.4375,43.1]],"type":"LineString"},"type":"Feature","properties":{"id":"64415325"}}, + {"geometry":{"coordinates":[141.41875,42.99583333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413393_bldg_6697_op.zip","id":"64413393","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4125,42.99166666666667],[141.42499999999998,42.99166666666667],[141.42499999999998,43],[141.4125,43],[141.4125,42.99166666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64413393"}}, + {"geometry":{"coordinates":[141.15625,42.9375],"type":"Point"},"type":"Feature","properties":{"path":"64413122_bldg_6697_op.zip","id":"64413122","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.15,42.93333333333333],[141.1625,42.93333333333333],[141.1625,42.94166666666666],[141.15,42.94166666666666],[141.15,42.93333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64413122"}}, + {"geometry":{"coordinates":[141.31875,42.9125],"type":"Point"},"type":"Feature","properties":{"path":"64412295_bldg_6697_op.zip","id":"64412295","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3125,42.90833333333333],[141.325,42.90833333333333],[141.325,42.916666666666664],[141.3125,42.916666666666664],[141.3125,42.90833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64412295"}}, + {"geometry":{"coordinates":[141.35625,42.94583333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413238_bldg_6697_op.zip","id":"64413238","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.35,42.94166666666667],[141.36249999999998,42.94166666666667],[141.36249999999998,42.95],[141.35,42.95],[141.35,42.94166666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64413238"}}, + {"geometry":{"coordinates":[141.46875,42.97083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413367_bldg_6697_op.zip","id":"64413367","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4625,42.96666666666667],[141.475,42.96666666666667],[141.475,42.975],[141.4625,42.975],[141.4625,42.96666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64413367"}}, + {"geometry":{"coordinates":[141.46875,43.0125],"type":"Point"},"type":"Feature","properties":{"path":"64414317_bldg_6697_op.zip","id":"64414317","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4625,43.00833333333333],[141.475,43.00833333333333],[141.475,43.016666666666666],[141.4625,43.016666666666666],[141.4625,43.00833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414317"}}, + {"geometry":{"coordinates":[141.21875,42.9375],"type":"Point"},"type":"Feature","properties":{"path":"64413127_bldg_6697_op.zip","id":"64413127","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2125,42.93333333333333],[141.225,42.93333333333333],[141.225,42.94166666666666],[141.2125,42.94166666666666],[141.2125,42.93333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64413127"}}, + {"geometry":{"coordinates":[141.21875,42.94583333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413137_bldg_6697_op.zip","id":"64413137","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2125,42.94166666666667],[141.225,42.94166666666667],[141.225,42.95],[141.2125,42.95],[141.2125,42.94166666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64413137"}}, + {"geometry":{"coordinates":[141.23125,43.1375],"type":"Point"},"type":"Feature","properties":{"path":"64415168_bldg_6697_op.zip","id":"64415168","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.225,43.13333333333333],[141.23749999999998,43.13333333333333],[141.23749999999998,43.141666666666666],[141.225,43.141666666666666],[141.225,43.13333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64415168"}}, + {"geometry":{"coordinates":[141.33124999999998,43.087500000000006],"type":"Point"},"type":"Feature","properties":{"path":"64415206_bldg_6697_op.zip","id":"64415206","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.325,43.083333333333336],[141.33749999999998,43.083333333333336],[141.33749999999998,43.09166666666667],[141.325,43.09166666666667],[141.325,43.083333333333336]],"type":"LineString"},"type":"Feature","properties":{"id":"64415206"}}, + {"geometry":{"coordinates":[141.44375,42.99583333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413395_bldg_6697_op.zip","id":"64413395","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4375,42.99166666666667],[141.45,42.99166666666667],[141.45,43],[141.4375,43],[141.4375,42.99166666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64413395"}}, + {"geometry":{"coordinates":[141.45624999999998,43.0375],"type":"Point"},"type":"Feature","properties":{"path":"64414346_bldg_6697_op.zip","id":"64414346","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.45,43.03333333333333],[141.46249999999998,43.03333333333333],[141.46249999999998,43.041666666666664],[141.45,43.041666666666664],[141.45,43.03333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414346"}}, + {"geometry":{"coordinates":[141.39374999999998,43.00416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414301_bldg_6697_op.zip","id":"64414301","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3875,43],[141.39999999999998,43],[141.39999999999998,43.00833333333333],[141.3875,43.00833333333333],[141.3875,43]],"type":"LineString"},"type":"Feature","properties":{"id":"64414301"}}, + {"geometry":{"coordinates":[141.33124999999998,43.07916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414296_bldg_6697_op.zip","id":"64414296","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.325,43.075],[141.33749999999998,43.075],[141.33749999999998,43.083333333333336],[141.325,43.083333333333336],[141.325,43.075]],"type":"LineString"},"type":"Feature","properties":{"id":"64414296"}}, + {"geometry":{"coordinates":[141.24375,43.10416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64415129_bldg_6697_op.zip","id":"64415129","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2375,43.1],[141.25,43.1],[141.25,43.108333333333334],[141.2375,43.108333333333334],[141.2375,43.1]],"type":"LineString"},"type":"Feature","properties":{"id":"64415129"}}, + {"geometry":{"coordinates":[141.38125,42.90416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64412380_bldg_6697_op.zip","id":"64412380","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.375,42.9],[141.3875,42.9],[141.3875,42.90833333333333],[141.375,42.90833333333333],[141.375,42.9]],"type":"LineString"},"type":"Feature","properties":{"id":"64412380"}}, + {"geometry":{"coordinates":[141.30625,42.95416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64413244_bldg_6697_op.zip","id":"64413244","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3,42.95],[141.3125,42.95],[141.3125,42.958333333333336],[141.3,42.958333333333336],[141.3,42.95]],"type":"LineString"},"type":"Feature","properties":{"id":"64413244"}}, + {"geometry":{"coordinates":[141.39374999999998,43.12083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64415341_bldg_6697_op.zip","id":"64415341","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3875,43.11666666666667],[141.39999999999998,43.11666666666667],[141.39999999999998,43.125],[141.3875,43.125],[141.3875,43.11666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64415341"}}, + {"geometry":{"coordinates":[141.21875,43.09583333333334],"type":"Point"},"type":"Feature","properties":{"path":"64415117_bldg_6697_op.zip","id":"64415117","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2125,43.09166666666667],[141.225,43.09166666666667],[141.225,43.1],[141.2125,43.1],[141.2125,43.09166666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64415117"}}, + {"geometry":{"coordinates":[141.35625,42.92916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64413218_bldg_6697_op.zip","id":"64413218","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.35,42.925],[141.36249999999998,42.925],[141.36249999999998,42.93333333333333],[141.35,42.93333333333333],[141.35,42.925]],"type":"LineString"},"type":"Feature","properties":{"id":"64413218"}}, + {"geometry":{"coordinates":[141.29375,43.087500000000006],"type":"Point"},"type":"Feature","properties":{"path":"64415203_bldg_6697_op.zip","id":"64415203","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2875,43.083333333333336],[141.29999999999998,43.083333333333336],[141.29999999999998,43.09166666666667],[141.2875,43.09166666666667],[141.2875,43.083333333333336]],"type":"LineString"},"type":"Feature","properties":{"id":"64415203"}}, + {"geometry":{"coordinates":[141.45624999999998,42.99583333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413396_bldg_6697_op.zip","id":"64413396","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.45,42.99166666666667],[141.46249999999998,42.99166666666667],[141.46249999999998,43],[141.45,43],[141.45,42.99166666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64413396"}}, + {"geometry":{"coordinates":[141.38125,43.07916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414390_bldg_6697_op.zip","id":"64414390","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.375,43.075],[141.3875,43.075],[141.3875,43.083333333333336],[141.375,43.083333333333336],[141.375,43.075]],"type":"LineString"},"type":"Feature","properties":{"id":"64414390"}}, + {"geometry":{"coordinates":[141.34375,43.09583333333334],"type":"Point"},"type":"Feature","properties":{"path":"64415217_bldg_6697_op.zip","id":"64415217","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3375,43.09166666666667],[141.35,43.09166666666667],[141.35,43.1],[141.3375,43.1],[141.3375,43.09166666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64415217"}}, + {"geometry":{"coordinates":[141.24375,42.94583333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413139_bldg_6697_op.zip","id":"64413139","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2375,42.94166666666667],[141.25,42.94166666666667],[141.25,42.95],[141.2375,42.95],[141.2375,42.94166666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64413139"}}, + {"geometry":{"coordinates":[141.33124999999998,43.09583333333334],"type":"Point"},"type":"Feature","properties":{"path":"64415216_bldg_6697_op.zip","id":"64415216","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.325,43.09166666666667],[141.33749999999998,43.09166666666667],[141.33749999999998,43.1],[141.325,43.1],[141.325,43.09166666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64415216"}}, + {"geometry":{"coordinates":[141.29375,42.895833333333336],"type":"Point"},"type":"Feature","properties":{"path":"64412273_bldg_6697_op.zip","id":"64412273","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2875,42.891666666666666],[141.29999999999998,42.891666666666666],[141.29999999999998,42.9],[141.2875,42.9],[141.2875,42.891666666666666]],"type":"LineString"},"type":"Feature","properties":{"id":"64412273"}}, + {"geometry":{"coordinates":[141.33124999999998,42.9125],"type":"Point"},"type":"Feature","properties":{"path":"64412296_bldg_6697_op.zip","id":"64412296","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.325,42.90833333333333],[141.33749999999998,42.90833333333333],[141.33749999999998,42.916666666666664],[141.325,42.916666666666664],[141.325,42.90833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64412296"}}, + {"geometry":{"coordinates":[141.29375,43.112500000000004],"type":"Point"},"type":"Feature","properties":{"path":"64415233_bldg_6697_op.zip","id":"64415233","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2875,43.108333333333334],[141.29999999999998,43.108333333333334],[141.29999999999998,43.11666666666667],[141.2875,43.11666666666667],[141.2875,43.108333333333334]],"type":"LineString"},"type":"Feature","properties":{"id":"64415233"}}, + {"geometry":{"coordinates":[141.23125,42.9375],"type":"Point"},"type":"Feature","properties":{"path":"64413128_bldg_6697_op.zip","id":"64413128","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.225,42.93333333333333],[141.23749999999998,42.93333333333333],[141.23749999999998,42.94166666666666],[141.225,42.94166666666666],[141.225,42.93333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64413128"}}, + {"geometry":{"coordinates":[141.40625,43.020833333333336],"type":"Point"},"type":"Feature","properties":{"path":"64414322_bldg_6697_op.zip","id":"64414322","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4,43.016666666666666],[141.4125,43.016666666666666],[141.4125,43.025],[141.4,43.025],[141.4,43.016666666666666]],"type":"LineString"},"type":"Feature","properties":{"id":"64414322"}}, + {"geometry":{"coordinates":[141.46875,42.99583333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413397_bldg_6697_op.zip","id":"64413397","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4625,42.99166666666667],[141.475,42.99166666666667],[141.475,43],[141.4625,43],[141.4625,42.99166666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64413397"}}, + {"geometry":{"coordinates":[141.15625,42.97083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413162_bldg_6697_op.zip","id":"64413162","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.15,42.96666666666667],[141.1625,42.96666666666667],[141.1625,42.975],[141.15,42.975],[141.15,42.96666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64413162"}}, + {"geometry":{"coordinates":[141.43125,42.97916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64413374_bldg_6697_op.zip","id":"64413374","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.425,42.975],[141.4375,42.975],[141.4375,42.983333333333334],[141.425,42.983333333333334],[141.425,42.975]],"type":"LineString"},"type":"Feature","properties":{"id":"64413374"}}, + {"geometry":{"coordinates":[141.44375,43.020833333333336],"type":"Point"},"type":"Feature","properties":{"path":"64414325_bldg_6697_op.zip","id":"64414325","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4375,43.016666666666666],[141.45,43.016666666666666],[141.45,43.025],[141.4375,43.025],[141.4375,43.016666666666666]],"type":"LineString"},"type":"Feature","properties":{"id":"64414325"}}, + {"geometry":{"coordinates":[141.21875,43.12916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64415157_bldg_6697_op.zip","id":"64415157","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2125,43.125],[141.225,43.125],[141.225,43.13333333333333],[141.2125,43.13333333333333],[141.2125,43.125]],"type":"LineString"},"type":"Feature","properties":{"id":"64415157"}}, + {"geometry":{"coordinates":[141.40625,43.112500000000004],"type":"Point"},"type":"Feature","properties":{"path":"64415332_bldg_6697_op.zip","id":"64415332","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4,43.108333333333334],[141.4125,43.108333333333334],[141.4125,43.11666666666667],[141.4,43.11666666666667],[141.4,43.108333333333334]],"type":"LineString"},"type":"Feature","properties":{"id":"64415332"}}, + {"geometry":{"coordinates":[141.41875,42.97083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413363_bldg_6697_op.zip","id":"64413363","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4125,42.96666666666667],[141.42499999999998,42.96666666666667],[141.42499999999998,42.975],[141.4125,42.975],[141.4125,42.96666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64413363"}}, + {"geometry":{"coordinates":[141.26874999999998,43.07916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414291_bldg_6697_op.zip","id":"64414291","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2625,43.075],[141.27499999999998,43.075],[141.27499999999998,43.083333333333336],[141.2625,43.083333333333336],[141.2625,43.075]],"type":"LineString"},"type":"Feature","properties":{"id":"64414291"}}, + {"geometry":{"coordinates":[141.31875,43.10416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64415225_bldg_6697_op.zip","id":"64415225","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3125,43.1],[141.325,43.1],[141.325,43.108333333333334],[141.3125,43.108333333333334],[141.3125,43.1]],"type":"LineString"},"type":"Feature","properties":{"id":"64415225"}}, + {"geometry":{"coordinates":[141.29375,42.95416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64413243_bldg_6697_op.zip","id":"64413243","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2875,42.95],[141.29999999999998,42.95],[141.29999999999998,42.958333333333336],[141.2875,42.958333333333336],[141.2875,42.95]],"type":"LineString"},"type":"Feature","properties":{"id":"64413243"}}, + {"geometry":{"coordinates":[141.31875,43.112500000000004],"type":"Point"},"type":"Feature","properties":{"path":"64415235_bldg_6697_op.zip","id":"64415235","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3125,43.108333333333334],[141.325,43.108333333333334],[141.325,43.11666666666667],[141.3125,43.11666666666667],[141.3125,43.108333333333334]],"type":"LineString"},"type":"Feature","properties":{"id":"64415235"}}, + {"geometry":{"coordinates":[141.19375,43.112500000000004],"type":"Point"},"type":"Feature","properties":{"path":"64415135_bldg_6697_op.zip","id":"64415135","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.1875,43.108333333333334],[141.2,43.108333333333334],[141.2,43.11666666666667],[141.1875,43.11666666666667],[141.1875,43.108333333333334]],"type":"LineString"},"type":"Feature","properties":{"id":"64415135"}}, + {"geometry":{"coordinates":[141.25625,43.145833333333336],"type":"Point"},"type":"Feature","properties":{"path":"64415270_bldg_6697_op.zip","id":"64415270","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.25,43.141666666666666],[141.2625,43.141666666666666],[141.2625,43.15],[141.25,43.15],[141.25,43.141666666666666]],"type":"LineString"},"type":"Feature","properties":{"id":"64415270"}}, + {"geometry":{"coordinates":[141.34375,43.0625],"type":"Point"},"type":"Feature","properties":{"path":"64414277_bldg_6697_op.zip","id":"64414277","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3375,43.05833333333333],[141.35,43.05833333333333],[141.35,43.06666666666666],[141.3375,43.06666666666666],[141.3375,43.05833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414277"}}, + {"geometry":{"coordinates":[141.43125,43.087500000000006],"type":"Point"},"type":"Feature","properties":{"path":"64415304_bldg_6697_op.zip","id":"64415304","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.425,43.083333333333336],[141.4375,43.083333333333336],[141.4375,43.09166666666667],[141.425,43.09166666666667],[141.425,43.083333333333336]],"type":"LineString"},"type":"Feature","properties":{"id":"64415304"}}, + {"geometry":{"coordinates":[141.43125,43.02916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414334_bldg_6697_op.zip","id":"64414334","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.425,43.025],[141.4375,43.025],[141.4375,43.03333333333333],[141.425,43.03333333333333],[141.425,43.025]],"type":"LineString"},"type":"Feature","properties":{"id":"64414334"}}, + {"geometry":{"coordinates":[141.39374999999998,43.0375],"type":"Point"},"type":"Feature","properties":{"path":"64414341_bldg_6697_op.zip","id":"64414341","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3875,43.03333333333333],[141.39999999999998,43.03333333333333],[141.39999999999998,43.041666666666664],[141.3875,43.041666666666664],[141.3875,43.03333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414341"}}, + {"geometry":{"coordinates":[141.35625,42.920833333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413208_bldg_6697_op.zip","id":"64413208","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.35,42.916666666666664],[141.36249999999998,42.916666666666664],[141.36249999999998,42.925],[141.35,42.925],[141.35,42.916666666666664]],"type":"LineString"},"type":"Feature","properties":{"id":"64413208"}}, + {"geometry":{"coordinates":[141.14374999999998,42.97083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413161_bldg_6697_op.zip","id":"64413161","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.1375,42.96666666666667],[141.14999999999998,42.96666666666667],[141.14999999999998,42.975],[141.1375,42.975],[141.1375,42.96666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64413161"}}, + {"geometry":{"coordinates":[141.29375,43.0125],"type":"Point"},"type":"Feature","properties":{"path":"64414213_bldg_6697_op.zip","id":"64414213","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2875,43.00833333333333],[141.29999999999998,43.00833333333333],[141.29999999999998,43.016666666666666],[141.2875,43.016666666666666],[141.2875,43.00833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414213"}}, + {"geometry":{"coordinates":[141.43125,43.12083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64415344_bldg_6697_op.zip","id":"64415344","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.425,43.11666666666667],[141.4375,43.11666666666667],[141.4375,43.125],[141.425,43.125],[141.425,43.11666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64415344"}}, + {"geometry":{"coordinates":[141.25625,43.15416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64415280_bldg_6697_op.zip","id":"64415280","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.25,43.15],[141.2625,43.15],[141.2625,43.15833333333333],[141.25,43.15833333333333],[141.25,43.15]],"type":"LineString"},"type":"Feature","properties":{"id":"64415280"}}, + {"geometry":{"coordinates":[141.26874999999998,43.02916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414231_bldg_6697_op.zip","id":"64414231","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2625,43.025],[141.27499999999998,43.025],[141.27499999999998,43.03333333333333],[141.2625,43.03333333333333],[141.2625,43.025]],"type":"LineString"},"type":"Feature","properties":{"id":"64414231"}}, + {"geometry":{"coordinates":[141.39374999999998,43.10416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64415321_bldg_6697_op.zip","id":"64415321","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3875,43.1],[141.39999999999998,43.1],[141.39999999999998,43.108333333333334],[141.3875,43.108333333333334],[141.3875,43.1]],"type":"LineString"},"type":"Feature","properties":{"id":"64415321"}}, + {"geometry":{"coordinates":[141.24375,42.92916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64413119_bldg_6697_op.zip","id":"64413119","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2375,42.925],[141.25,42.925],[141.25,42.93333333333333],[141.2375,42.93333333333333],[141.2375,42.925]],"type":"LineString"},"type":"Feature","properties":{"id":"64413119"}}, + {"geometry":{"coordinates":[141.29375,43.10416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64415223_bldg_6697_op.zip","id":"64415223","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2875,43.1],[141.29999999999998,43.1],[141.29999999999998,43.108333333333334],[141.2875,43.108333333333334],[141.2875,43.1]],"type":"LineString"},"type":"Feature","properties":{"id":"64415223"}}, + {"geometry":{"coordinates":[141.50625,43.045833333333334],"type":"Point"},"type":"Feature","properties":{"path":"64414450_bldg_6697_op.zip","id":"64414450","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.5,43.041666666666664],[141.5125,43.041666666666664],[141.5125,43.05],[141.5,43.05],[141.5,43.041666666666664]],"type":"LineString"},"type":"Feature","properties":{"id":"64414450"}}, + {"geometry":{"coordinates":[141.48125,43.02916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414338_bldg_6697_op.zip","id":"64414338","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.475,43.025],[141.48749999999998,43.025],[141.48749999999998,43.03333333333333],[141.475,43.03333333333333],[141.475,43.025]],"type":"LineString"},"type":"Feature","properties":{"id":"64414338"}}, + {"geometry":{"coordinates":[141.43125,43.1375],"type":"Point"},"type":"Feature","properties":{"path":"64415364_bldg_6697_op.zip","id":"64415364","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.425,43.13333333333333],[141.4375,43.13333333333333],[141.4375,43.141666666666666],[141.425,43.141666666666666],[141.425,43.13333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64415364"}}, + {"geometry":{"coordinates":[141.33124999999998,43.07083333333334],"type":"Point"},"type":"Feature","properties":{"path":"64414286_bldg_6697_op.zip","id":"64414286","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.325,43.06666666666667],[141.33749999999998,43.06666666666667],[141.33749999999998,43.075],[141.325,43.075],[141.325,43.06666666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64414286"}}, + {"geometry":{"coordinates":[141.28125,42.962500000000006],"type":"Point"},"type":"Feature","properties":{"path":"64413252_bldg_6697_op.zip","id":"64413252","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.275,42.958333333333336],[141.2875,42.958333333333336],[141.2875,42.96666666666667],[141.275,42.96666666666667],[141.275,42.958333333333336]],"type":"LineString"},"type":"Feature","properties":{"id":"64413252"}}, + {"geometry":{"coordinates":[141.25625,42.92916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64413210_bldg_6697_op.zip","id":"64413210","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.25,42.925],[141.2625,42.925],[141.2625,42.93333333333333],[141.25,42.93333333333333],[141.25,42.925]],"type":"LineString"},"type":"Feature","properties":{"id":"64413210"}}, + {"geometry":{"coordinates":[141.34375,42.97916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64413277_bldg_6697_op.zip","id":"64413277","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3375,42.975],[141.35,42.975],[141.35,42.983333333333334],[141.3375,42.983333333333334],[141.3375,42.975]],"type":"LineString"},"type":"Feature","properties":{"id":"64413277"}}, + {"geometry":{"coordinates":[141.43125,43.15416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64415384_bldg_6697_op.zip","id":"64415384","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.425,43.15],[141.4375,43.15],[141.4375,43.15833333333333],[141.425,43.15833333333333],[141.425,43.15]],"type":"LineString"},"type":"Feature","properties":{"id":"64415384"}}, + {"geometry":{"coordinates":[141.25625,43.09583333333334],"type":"Point"},"type":"Feature","properties":{"path":"64415210_bldg_6697_op.zip","id":"64415210","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.25,43.09166666666667],[141.2625,43.09166666666667],[141.2625,43.1],[141.25,43.1],[141.25,43.09166666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64415210"}}, + {"geometry":{"coordinates":[141.36875,43.145833333333336],"type":"Point"},"type":"Feature","properties":{"path":"64415279_bldg_6697_op.zip","id":"64415279","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3625,43.141666666666666],[141.375,43.141666666666666],[141.375,43.15],[141.3625,43.15],[141.3625,43.141666666666666]],"type":"LineString"},"type":"Feature","properties":{"id":"64415279"}}, + {"geometry":{"coordinates":[141.43125,43.0375],"type":"Point"},"type":"Feature","properties":{"path":"64414344_bldg_6697_op.zip","id":"64414344","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.425,43.03333333333333],[141.4375,43.03333333333333],[141.4375,43.041666666666664],[141.425,43.041666666666664],[141.425,43.03333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414344"}}, + {"geometry":{"coordinates":[141.25625,43.045833333333334],"type":"Point"},"type":"Feature","properties":{"path":"64414250_bldg_6697_op.zip","id":"64414250","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.25,43.041666666666664],[141.2625,43.041666666666664],[141.2625,43.05],[141.25,43.05],[141.25,43.041666666666664]],"type":"LineString"},"type":"Feature","properties":{"id":"64414250"}}, + {"geometry":{"coordinates":[141.19375,43.09583333333334],"type":"Point"},"type":"Feature","properties":{"path":"64415115_bldg_6697_op.zip","id":"64415115","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.1875,43.09166666666667],[141.2,43.09166666666667],[141.2,43.1],[141.1875,43.1],[141.1875,43.09166666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64415115"}}, + {"geometry":{"coordinates":[141.41875,43.05416666666667],"type":"Point"},"type":"Feature","properties":{"path":"64414363_bldg_6697_op.zip","id":"64414363","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4125,43.05],[141.42499999999998,43.05],[141.42499999999998,43.05833333333333],[141.4125,43.05833333333333],[141.4125,43.05]],"type":"LineString"},"type":"Feature","properties":{"id":"64414363"}}, + {"geometry":{"coordinates":[141.46875,42.97916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64413377_bldg_6697_op.zip","id":"64413377","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.4625,42.975],[141.475,42.975],[141.475,42.983333333333334],[141.4625,42.983333333333334],[141.4625,42.975]],"type":"LineString"},"type":"Feature","properties":{"id":"64413377"}}, + {"geometry":{"coordinates":[141.29375,43.0625],"type":"Point"},"type":"Feature","properties":{"path":"64414273_bldg_6697_op.zip","id":"64414273","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2875,43.05833333333333],[141.29999999999998,43.05833333333333],[141.29999999999998,43.06666666666666],[141.2875,43.06666666666666],[141.2875,43.05833333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64414273"}}, + {"geometry":{"coordinates":[141.29375,43.12916666666667],"type":"Point"},"type":"Feature","properties":{"path":"64415253_bldg_6697_op.zip","id":"64415253","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2875,43.125],[141.29999999999998,43.125],[141.29999999999998,43.13333333333333],[141.2875,43.13333333333333],[141.2875,43.125]],"type":"LineString"},"type":"Feature","properties":{"id":"64415253"}}, + {"geometry":{"coordinates":[141.29375,42.99583333333334],"type":"Point"},"type":"Feature","properties":{"path":"64413293_bldg_6697_op.zip","id":"64413293","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.2875,42.99166666666667],[141.29999999999998,42.99166666666667],[141.29999999999998,43],[141.2875,43],[141.2875,42.99166666666667]],"type":"LineString"},"type":"Feature","properties":{"id":"64413293"}}, + {"geometry":{"coordinates":[141.28125,43.045833333333334],"type":"Point"},"type":"Feature","properties":{"path":"64414252_bldg_6697_op.zip","id":"64414252","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.275,43.041666666666664],[141.2875,43.041666666666664],[141.2875,43.05],[141.275,43.05],[141.275,43.041666666666664]],"type":"LineString"},"type":"Feature","properties":{"id":"64414252"}}, + {"geometry":{"coordinates":[141.31875,43.1375],"type":"Point"},"type":"Feature","properties":{"path":"64415265_bldg_6697_op.zip","id":"64415265","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3125,43.13333333333333],[141.325,43.13333333333333],[141.325,43.141666666666666],[141.3125,43.141666666666666],[141.3125,43.13333333333333]],"type":"LineString"},"type":"Feature","properties":{"id":"64415265"}}, + {"geometry":{"coordinates":[141.28125,43.020833333333336],"type":"Point"},"type":"Feature","properties":{"path":"64414222_bldg_6697_op.zip","id":"64414222","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.275,43.016666666666666],[141.2875,43.016666666666666],[141.2875,43.025],[141.275,43.025],[141.275,43.016666666666666]],"type":"LineString"},"type":"Feature","properties":{"id":"64414222"}}, + {"geometry":{"coordinates":[141.31875,43.145833333333336],"type":"Point"},"type":"Feature","properties":{"path":"64415275_bldg_6697_op.zip","id":"64415275","version":"1.4.6"}}, + {"geometry":{"coordinates":[[141.3125,43.141666666666666],[141.325,43.141666666666666],[141.325,43.15],[141.3125,43.15],[141.3125,43.141666666666666]],"type":"LineString"},"type":"Feature","properties":{"id":"64415275"}} + ] +}