Last active
June 9, 2020 06:09
-
-
Save e9t/ba9edd99793a5c91eaab to your computer and use it in GitHub Desktop.
Revisions
-
e9t revised this gist
Jun 27, 2015 . 1 changed file with 18 additions and 6 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -35,16 +35,28 @@ font: 10px sans-serif; text-anchor: start; } #title { font-family: sans-serif; } #title p { font-size: 10pt; } </style> </head> <body> <div id="chart"></div> <div id="title"> <h2>식신로드 서울지역 만점식단 20선</h2> <p>식신로드에서 만점을 받은 음식점을 D3.js, TopoJSON을 이용해 지도를 그렸습니다. 지도 만드는 법은 <a href="http://www.lucypark.kr/blog/2015/06/24/seoul-matzip-mapping/">D3를 이용한 서울시내 맛집 시각화 (Feat. 식신로드)</a>를 참고해주세요. <p> <a href="http://www.wikitree.co.kr/main/news_view.php?id=217101">Data</a> by Wikitree</a> and <a href="https://gist.github.com/e9t/ba9edd99793a5c91eaab">code</a> by <a href="http://lucypark.kr">Lucy Park</a>. <br> <a href="http://opensource.org/licenses/Apache-2.0">Licensed with Apache 2.0</a> </p> </div> <script src="http://d3js.org/d3.v3.min.js"></script> <script src="http://d3js.org/topojson.v1.min.js"></script> <script> -
e9t revised this gist
Jun 24, 2015 . 1 changed file with 3 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -56,7 +56,7 @@ <h2>식신로드 서울지역 만점식단 20선</h2> .attr("height", height); var map = svg.append("g").attr("id", "map"), places = svg.append("g").attr("id", "places"); var projection = d3.geo.mercator() .center([126.9895, 37.5651]) @@ -83,14 +83,14 @@ <h2>식신로드 서울지역 만점식단 20선</h2> }); d3.csv("places.csv", function(data) { places.selectAll("circle") .data(data) .enter().append("circle") .attr("cx", function(d) { return projection([d.lon, d.lat])[0]; }) .attr("cy", function(d) { return projection([d.lon, d.lat])[1]; }) .attr("r", 10); places.selectAll("text") .data(data) .enter().append("text") .attr("x", function(d) { return projection([d.lon, d.lat])[0]; }) -
e9t revised this gist
Jun 24, 2015 . 2 changed files with 9 additions and 8 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,19 +1,20 @@ #! /usr/bin/python3 # -*- coding: utf-8 -*- from lxml import html import requests APIKEY = '' # 이 곳에 네이버 API 키를 입력 (http://developer.naver.com/wiki/pages/OpenAPI) MAPAPI = 'http://openapi.map.naver.com/api/geocode.php?key=%s&encoding=utf-8&coord=LatLng&query=%s' def get_latlon(query): root = html.parse(MAPAPI % (APIKEY, query)) lon, lat = root.xpath('//point/x/text()')[0], root.xpath('//point/y/text()')[0] return (lat, lon) def prep(item): n, name = item[0].split(' ', 1) lat, lon = get_latlon(item[3]) @@ -25,6 +26,8 @@ def prep(item): 'addr': item[3] } # get data from article r = requests.get('http://m.wikitree.co.kr/main/news_view.php?id=217101') root = html.document_fromstring(r.text) string = '\n'.join(root.xpath('//div[@id="ct_size"]/div//text()')) @@ -37,10 +40,9 @@ def prep(item): data = [prep(i[:4]) for i in items[1:]] # save data to file with open('places.csv', 'w') as f: f.write('name,lat,lon\n') for d in data: f.write('%(name)s,%(lat)s,%(lon)s\n' % d) This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1 +0,0 @@ -
e9t revised this gist
Jun 21, 2015 . 1 changed file with 1 addition and 4 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -25,10 +25,7 @@ def prep(item): 'addr': item[3] } r = requests.get('http://m.wikitree.co.kr/main/news_view.php?id=217101') root = html.document_fromstring(r.text) string = '\n'.join(root.xpath('//div[@id="ct_size"]/div//text()')) -
e9t revised this gist
Jun 21, 2015 . 1 changed file with 0 additions and 5 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -46,11 +46,7 @@ <h2>식신로드 서울지역 만점식단 20선</h2> </p> <div id="chart"></div> <script src="http://d3js.org/d3.v3.min.js"></script> <script src="http://d3js.org/topojson.v1.min.js"></script> <script> var width = 800, height = 600; @@ -86,7 +82,6 @@ <h2>식신로드 서울지역 만점식단 20선</h2> .text(function(d) { return d.properties.name; }) }); d3.csv("places.csv", function(data) { points.selectAll("circle") .data(data) -
e9t revised this gist
Jun 21, 2015 . 2 changed files with 23 additions and 26 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -4,10 +4,12 @@ <meta charset="utf-8"> <style> svg circle { fill: orange; opacity: .5; stroke: white; } svg circle:hover { fill: red; stroke: #333; } svg text { @@ -53,10 +55,6 @@ <h2>식신로드 서울지역 만점식단 20선</h2> var width = 800, height = 600; var svg = d3.select("#chart").append("svg") .attr("width", width) .attr("height", height); @@ -95,8 +93,7 @@ <h2>식신로드 서울지역 만점식단 20선</h2> .enter().append("circle") .attr("cx", function(d) { return projection([d.lon, d.lat])[0]; }) .attr("cy", function(d) { return projection([d.lon, d.lat])[1]; }) .attr("r", 10); points.selectAll("text") .data(data) This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,20 +1,20 @@ name,lat,lon 다성일식,37.5569016,126.9329799 봉산집,37.5344248,126.9750082 창고43,37.5189582,126.9307458 돕감자탕,37.5414873,127.0692836 대보명가,37.6456867,127.0071573 해뜨는집,37.5900691,127.0084044 아이 해브어 드림,37.4986175,127.0278876 아현동 간장게장,37.5546000,126.9561000 왕소금구이,37.5204088,127.0361107 라틀리에 모니크,37.5261816,127.0448766 비스트로 딩고,37.5210777,127.0198099 줄리에뜨,37.4947204,127.0009384 충주집,37.5862178,127.0345490 영화루,37.5801384,126.9690401 일품헌,37.4845029,127.0391935 립스테이크,37.5955682,126.9640695 오가와,37.5720260,126.9743351 까사디노아,37.5620845,126.9235561 충무로 주꾸미 불고기,37.5617693,126.9921966 -
e9t revised this gist
May 9, 2015 . 2 changed files with 7 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ - 데이터 출처: http://m.wikitree.co.kr/main/news_view.php?id=217101 - 데이터 수집: 위 기사에서 `crawl.py`를 이용해 맛집 목록 수집 후 네이버 지도 API를 이용해서 좌표 정보 수집 - Author: Lucy Park - License: Apache v2 This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -36,8 +36,12 @@ </style> </head> <body> <h2>식신로드 서울지역 만점식단 20선</h2> <p> Data organized by <a href="http://www.wikitree.co.kr/main/news_view.php?id=217101">Wikitree</a>. Mapped by <a href="http://lucypark.kr">Lucy Park</a>. Code at <a href="https://gist.github.com/e9t/ba9edd99793a5c91eaab">GitHub Gist</a>. </p> <div id="chart"></div> <script src="http://d3js.org/d3.v3.min.js"></script> <script src="http://d3js.org/queue.v1.min.js"></script> -
e9t revised this gist
May 8, 2015 . 1 changed file with 3 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -6,10 +6,11 @@ from lxml import html import requests APIKEY = '' # fill me (http://developer.naver.com/wiki/pages/OpenAPI) MAPAPI = 'http://openapi.map.naver.com/api/geocode.php?key=%s&encoding=utf-8&coord=LatLng&query=%s' def get_latlon(query): root = html.parse(MAPAPI % (APIKEY, query)) lon, lat = root.xpath('//point/x/text()')[0], root.xpath('//point/y/text()')[0] return (lat, lon) -
e9t revised this gist
May 7, 2015 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ - 데이터 출처: http://m.wikitree.co.kr/main/news_view.php?id=217101 - 데이터 수집: 위 기사에서 `crawl.py`를 이용해 맛집 목록 수집한 후 네이버 지도 API를 이용해서 좌표 정보 수집 - Author: Lucy Park - License: Apache v2 -
e9t revised this gist
May 7, 2015 . 1 changed file with 0 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,3 @@ - 데이터 출처: http://m.wikitree.co.kr/main/news_view.php?id=217101 - 데이터 정제: 위 기사에서 `crawl.py`를 이용해 맛집 목록 수집한 후 네이버 지도 API를 이용해서 좌표 정보 수집 - Author: Lucy Park -
e9t revised this gist
May 7, 2015 . 3 changed files with 38 additions and 36 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -43,6 +43,6 @@ def prep(item): json.dump(data, f) with open('places.csv', 'w') as f: f.write('name,prince,lat,lon\n') for d in data: f.write('%(name)s,0,%(lat)s,%(lon)s\n' % d) This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -4,13 +4,18 @@ <meta charset="utf-8"> <style> svg circle { opacity: .5; stroke: white; } svg circle:hover { stroke: #333; } svg text { pointer-events: none; } svg .municipality { fill: #efefef; stroke: #fff; } svg .municipality-label { fill: #bbb; @@ -21,7 +26,6 @@ svg #map text { color: #333; font-size: 10px; text-anchor: middle; } svg #places text { @@ -82,22 +86,20 @@ <h2>식신로드 만점식단 20선</h2> // add circles d3.csv("places.csv", function(data) { points.selectAll("circle") .data(data) .enter().append("circle") .attr("cx", function(d) { return projection([d.lon, d.lat])[0]; }) .attr("cy", function(d) { return projection([d.lon, d.lat])[1]; }) .attr("r", 10) .style("fill", function(d) { return colorScale(d.price); }); points.selectAll("text") .data(data) .enter().append("text") .attr("x", function(d) { return projection([d.lon, d.lat])[0]; }) .attr("y", function(d) { return projection([d.lon, d.lat])[1] + 8; }) .text(function(d) { return d.name }); }); </script> </body> This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,20 +1,20 @@ name,price,lat,lon 다성일식,0,37.5569016,126.9329799 봉산집,0,37.5344248,126.9750082 창고43,0,37.5189582,126.9307458 돕감자탕,0,37.5414873,127.0692836 대보명가,0,37.6456867,127.0071573 해뜨는집,0,37.5900691,127.0084044 아이 해브어 드림,0,37.4986175,127.0278876 아현동 간장게장,0,37.5546000,126.9561000 왕소금구이,0,37.5204088,127.0361107 라틀리에 모니크,0,37.5261816,127.0448766 비스트로 딩고,0,37.5210777,127.0198099 줄리에뜨,0,37.4947204,127.0009384 충주집,0,37.5862178,127.0345490 영화루,0,37.5801384,126.9690401 일품헌,0,37.4845029,127.0391935 립스테이크,0,37.5955682,126.9640695 오가와,0,37.5720260,126.9743351 까사디노아,0,37.5620845,126.9235561 충무로 주꾸미 불고기,0,37.5617693,126.9921966 -
e9t revised this gist
May 7, 2015 . No changes.There are no files selected for viewing
-
e9t revised this gist
May 7, 2015 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -33,7 +33,7 @@ </head> <body> <h2>식신로드 만점식단 20선</h2> <p>(Mapped by <a href="http://lucypark.kr">Lucy Park</a>. Code at <a href="https://gist.github.com/e9t/ba9edd99793a5c91eaab">GitHub Gist</a>)</p> <div id="chart"></div> <script src="http://d3js.org/d3.v3.min.js"></script> <script src="http://d3js.org/queue.v1.min.js"></script> @@ -83,7 +83,7 @@ <h2>식신로드 만점식단 20선</h2> // add circles d3.csv("places.csv", function(data) { var point = points.selectAll("circle") .data(data.filter(function(d) { return d.type==="siksin"; })) .enter().append("a") .attr("xlink:href", function(d) { return d.url }); -
e9t revised this gist
May 7, 2015 . No changes.There are no files selected for viewing
-
e9t created this gist
May 7, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,6 @@ # 식신로드 만점 식단 20선 - 데이터 출처: http://m.wikitree.co.kr/main/news_view.php?id=217101 - 데이터 정제: 위 기사에서 `crawl.py`를 이용해 맛집 목록 수집한 후 네이버 지도 API를 이용해서 좌표 정보 수집 - Author: Lucy Park - License: Apache v2 This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,48 @@ #! /usr/bin/python3 # -*- coding: utf-8 -*- import json from lxml import html import requests MAPAPI = 'http://openapi.map.naver.com/api/geocode.php?key=2994b9957130f5a19b0aa0165bb9fd1e&encoding=utf-8&coord=LatLng&query=%s' def get_latlon(query): root = html.parse(MAPAPI % query) lon, lat = root.xpath('//point/x/text()')[0], root.xpath('//point/y/text()')[0] return (lat, lon) def prep(item): n, name = item[0].split(' ', 1) lat, lon = get_latlon(item[3]) return { 'num': n, 'name': name, 'lat': lat, 'lon': lon, 'description': item[1], 'phone': item[2], 'addr': item[3] } url = 'http://m.wikitree.co.kr/main/news_view.php?id=217101' query = '서울시 서대문구 창천동 72-36' r = requests.get(url) root = html.document_fromstring(r.text) string = '\n'.join(root.xpath('//div[@id="ct_size"]/div//text()')) items = [] for i in range(1, 21): tmp = string.split('%s.' % i, 1) string = tmp[1] items.append([j.strip() for j in tmp[0].split('\n') if j and j!='\xa0']) data = [prep(i[:4]) for i in items[1:]] with open('places.json', 'w') as f: json.dump(data, f) with open('places.csv', 'w') as f: f.write('type,name,prince,lat,lon,url\n') for d in data: f.write('siksin,%(name)s,0,%(lat)s,%(lon)s,\n' % d) This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,104 @@ <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style> svg circle { opacity: .5; stroke: white; } svg circle:hover { stroke: #333; } svg .municipality { fill: #efefef; stroke: #fff; } svg .municipality-label { fill: #bbb; font-size: 12px; font-weight: 300; text-anchor: middle; } svg #map text { color: #333; font-size: 10px; pointer-events: none; text-anchor: middle; } svg #places text { color: #777; font: 10px sans-serif; text-anchor: start; } </style> </head> <body> <h2>식신로드 만점식단 20선</h2> <p>(Mapped by <a href="http://lucypark.kr">Lucy Park</a>. Code at <a href="https://gist.github.com/e9t/85fcfb53db389696624f">GitHub Gist</a>)</p> <div id="chart"></div> <script src="http://d3js.org/d3.v3.min.js"></script> <script src="http://d3js.org/queue.v1.min.js"></script> <script src="http://d3js.org/topojson.v1.min.js"></script> <script>window.d3 || document.write('<script src="js/d3.v3.min.js">\x3C/script>')</script> <script>window.queue || document.write('<script src="js/queue.v1.min.js">\x3C/script>')</script> <script>window.topojson || document.write('<script src="js/topojson.v1.min.js">\x3C/script>')</script> <script> var width = 800, height = 600; var colorScale = d3.scale.linear() .range(['yellow', 'red']) // or use hex values .domain([6, 35]); var svg = d3.select("#chart").append("svg") .attr("width", width) .attr("height", height); var map = svg.append("g").attr("id", "map"), points = svg.append("g").attr("id", "places"); var projection = d3.geo.mercator() .center([126.9895, 37.5651]) .scale(100000) .translate([width/2, height/2]); var path = d3.geo.path().projection(projection); d3.json("seoul_municipalities_topo_simple.json", function(error, data) { var features = topojson.feature(data, data.objects.seoul_municipalities_geo).features; map.selectAll('path') .data(features) .enter().append('path') .attr('class', function(d) { console.log(); return 'municipality c' + d.properties.code }) .attr('d', path); map.selectAll('text') .data(features) .enter().append("text") .attr("transform", function(d) { return "translate(" + path.centroid(d) + ")"; }) .attr("dy", ".35em") .attr("class", "municipality-label") .text(function(d) { return d.properties.name; }) }); // add circles d3.csv("places.csv", function(data) { var point = points.selectAll("circle") .data(data.filter(function(d) { return d.type==="sushi"; })) .enter().append("a") .attr("xlink:href", function(d) { return d.url }); point.append("circle") .attr("cx", function(d) { return projection([d.lon, d.lat])[0]; }) .attr("cy", function(d) { return projection([d.lon, d.lat])[1]; }) .attr("r", 10) .style("fill", function(d) { return colorScale(d.price); }); point.append("text") .attr("x", function(d) { return projection([d.lon, d.lat])[0]; }) .attr("y", function(d) { return projection([d.lon, d.lat])[1] + 8; }) .text(function(d) { return d.name }); }); </script> </body> </html> This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,20 @@ type,name,price,lat,lon,url siksin,다성일식,0,37.5569016,126.9329799, siksin,봉산집,0,37.5344248,126.9750082, siksin,창고43,0,37.5189582,126.9307458, siksin,돕감자탕,0,37.5414873,127.0692836, siksin,대보명가,0,37.6456867,127.0071573, siksin,해뜨는집,0,37.5900691,127.0084044, siksin,아이 해브어 드림,0,37.4986175,127.0278876, siksin,아현동 간장게장,0,37.5546000,126.9561000, siksin,왕소금구이,0,37.5204088,127.0361107, siksin,라틀리에 모니크,0,37.5261816,127.0448766, siksin,비스트로 딩고,0,37.5210777,127.0198099, siksin,줄리에뜨,0,37.4947204,127.0009384, siksin,충주집,0,37.5862178,127.0345490, siksin,영화루,0,37.5801384,126.9690401, siksin,일품헌,0,37.4845029,127.0391935, siksin,립스테이크,0,37.5955682,126.9640695, siksin,오가와,0,37.5720260,126.9743351, siksin,까사디노아,0,37.5620845,126.9235561, siksin,충무로 주꾸미 불고기,0,37.5617693,126.9921966, This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1 @@ [{"addr": "\uc11c\uc6b8\uc2dc \uc11c\ub300\ubb38\uad6c \ucc3d\ucc9c\ub3d9 72-36", "num": "44\ud68c", "lat": "37.5569016", "description": "\uc77c\uc2dd \ucf54\uc2a4\uc694\ub9ac \ubb34\ud55c\ub9ac\ud544(\uc219\uc131\ud68c3\uc885)", "name": "\ub2e4\uc131\uc77c\uc2dd", "phone": "02-338-8951", "lon": "126.9329799"}, {"addr": "\uc11c\uc6b8\uc2dc \uc6a9\uc0b0\uad6c \uc6a9\uc0b0\ub3d93\uac00 1-21", "num": "50\ud68c", "lat": "37.5344248", "description": "50\uc5ec\ub144 \uc804\ud1b5\uc758 \ucc28\ub3cc\uad6c\uc774, \ucc28\ub3cc\ub9c9\uc7a5\ucc0c\uac1c(\ucc0c\uac1c\ub294 \ucc28\ub3cc\ubc15\uc774\ub97c \ub4dc\uc2e0 \ubd84\uc5d0 \ud55c\ud574 \uc8fc\ubb38 \uac00\ub2a5)", "name": "\ubd09\uc0b0\uc9d1", "phone": "02-793-5022", "lon": "126.9750082"}, {"addr": "\uc11c\uc6b8\uc2dc \uc601\ub4f1\ud3ec\uad6c \uc5ec\uc758\ub3c4\ub3d9 44-37", "num": "58\ud68c", "lat": "37.5189582", "description": "\ud55c\uc6b0\ubaa8\ub460\uad6c\uc774, \uae4d\ub450\uae30\ubcf6\uc74c\ubc25, \ub41c\uc7a5\ucc0c\uac1c", "name": "\ucc3d\uace043", "phone": "02-786-5959", "lon": "126.9307458"}, {"addr": "\uc11c\uc6b8\uc2dc \uad11\uc9c4\uad6c \ud654\uc591\ub3d9 9-22", "num": "65\ud68c", "lat": "37.5414873", "description": "\uac04\uc7a5\ubf08\ucc1c, \ud574\ubb3c\ubf08\ucc1c, \uae40\uce58\ub69d\ubc30\uae30", "name": "\ub3d5\uac10\uc790\ud0d5", "phone": "02-499-2838", "lon": "127.0692836"}, {"addr": "\uc11c\uc6b8\uc2dc \uac15\ubd81\uad6c \uc218\uc720\ub3d9 563-14", "num": "72\ud68c", "lat": "37.6456867", "description": "\uc57d\ucd08\uc7c1\ubc18, \uc57d\ucd08\uc815\uc2dd", "name": "\ub300\ubcf4\uba85\uac00", "phone": "02-907-6998", "lon": "127.0071573"}, {"addr": "\uc11c\uc6b8\uc2dc \uc131\ubd81\uad6c \ub3d9\uc18c\ubb38\ub3d9 1\uac00 62", "num": "73\ud68c", "lat": "37.5900691", "description": "\ud55c\uad6d\uc2dd \ub3fc\uc9c0\ubd88\uace0\uae30", "name": "\ud574\ub728\ub294\uc9d1", "phone": "02-764-6354", "lon": "127.0084044"}, {"addr": "\uc11c\uc6b8\uc2dc \uac15\ub0a8\uad6c \uc5ed\uc0bc\ub3d9 821 \uc774\uc988\ud0c0\uc6cc B3", "num": "84\ud68c", "lat": "37.4986175", "description": "\ub538\uae30\ud53c\uc790, \ube14\ub8e8\ubca0\ub9ac\ud53c\uc790, \uc2e0\uc120\ub85c\ud30c\uc2a4\ud0c0, \uc640\uc778\ube59\uc218", "name": "\uc544\uc774 \ud574\ube0c\uc5b4 \ub4dc\ub9bc", "phone": "02-3453-7696", "lon": "127.0278876"}, {"addr": "\uc11c\uc6b8\uc2dc \ub9c8\ud3ec\uad6c \uc544\ud604\ub3d9 \u00a0282-1", "num": "118\ud68c", "lat": "37.5546000", "description": "\ub3cc\uac8c\uac04\uc7a5\uac8c\uc7a5, \ucc38\uac8c\uac04\uc7a5\uac8c\uc7a5, \uaf43\uac8c\uc591\ub150\uac8c\uc7a5", "name": "\uc544\ud604\ub3d9 \uac04\uc7a5\uac8c\uc7a5", "phone": "02-312-7530", "lon": "126.9561000"}, {"addr": "\uc11c\uc6b8\uc2dc \uac15\ub0a8\uad6c \ub17c\ud604\ub3d9 98-12", "num": "124\ud68c", "lat": "37.5204088", "description": "\ub3d9\uc11c\ub0a8\ubd81 \uc2dc\ub9ac\uc988, \ub3fc\uc9c0\uc0dd\uace0\uae30 2\ud3b8 \ub0a8\ucabd \uac08\ub9e4\uae30\uc0b4, \uccad\uad6d\uc7a5 \ub41c\uc7a5 \ubc18\ubc18\ucc0c\uac1c", "name": "\uc655\uc18c\uae08\uad6c\uc774", "phone": "02-545-6844", "lon": "127.0361107"}, {"addr": "\uc11c\uc6b8\uc2dc \uac15\ub0a8\uad6c \uccad\ub2f4\ub3d9 80-21", "num": "129\ud68c", "lat": "37.5261816", "description": "\uc790\uc5f0\ubc1c\ud6a8 \uac74\uac15\ube75 (\uc18c\uae08\ube75, \uc559\uae08\ube75, \ud0c0\ub974\ud2b8)", "name": "\ub77c\ud2c0\ub9ac\uc5d0 \ubaa8\ub2c8\ud06c", "phone": "02-549-9210", "lon": "127.0448766"}, {"addr": "\uc11c\uc6b8\uc2dc \uac15\ub0a8\uad6c \uc2e0\uc0ac\ub3d9 526-11", "num": "137\ud68c", "lat": "37.5210777", "description": "\uc774\uc0c9 \uc774\ud0c8\ub9ac\uc548 \ud38d(\ud1a0\ub9c8\ud1a0&\uac00\uc9c0 \ud280\uae40, 9\uacb9 \ub77c\ub098\uc7c8 \ub4f1)", "name": "\ube44\uc2a4\ud2b8\ub85c \ub529\uace0", "phone": "02-518-7866", "lon": "127.0198099"}, {"addr": "\uc11c\uc6b8\uc2dc \uc11c\ucd08\uad6c \ubc18\ud3ec4\ub3d9 82-22", "num": "143\ud68c", "lat": "37.4947204", "description": "\uacc4\uc808\uacfc\uc77c\uc744 \uc774\uc6a9\ud55c \uc720\uae30\ub18d \ud0c0\ub974\ud2b8", "name": "\uc904\ub9ac\uc5d0\ub728", "phone": "02-535-4002", "lon": "127.0009384"}, {"addr": "\uc11c\uc6b8\uc2dc \ub3d9\ub300\ubb38\uad6c \uc81c\uae30\ub3d9 138-2", "num": "153\ud68c", "lat": "37.5862178", "description": "26\ub144 \uc804\ud1b5 \ub2ed\uacf1\ucc3d \uc6d0\uc870\uc9d1 (\ub2ed\uacf1\ucc3d, \uc624\ub3cc\ubf08, \ub2ed\uac08\ube44, \ubf08\uc5c6\ub294\ub2ed\ubc1c)", "name": "\ucda9\uc8fc\uc9d1", "phone": "02-923-1068", "lon": "127.0345490"}, {"addr": "\uc11c\uc6b8\uc2dc \uc885\ub85c\uad6c \ub204\ud558\ub3d9 25-1", "num": "155\ud68c", "lat": "37.5801384", "description": "50\ub144 \uc804\ud1b5 \ub9e4\uc6b4 \uace0\ucd94 \uac04\uc9dc\uc7a5, \ud280\uae40\ucc10\ube75", "name": "\uc601\ud654\ub8e8", "phone": "02-738-1218", "lon": "126.9690401"}, {"addr": "\uc11c\uc6b8\uc2dc \uc11c\ucd08\uad6c \uc591\uc7ac\ub3d9 1-28", "num": "162\ud68c", "lat": "37.4845029", "description": "1\uc778 \ub0c4\ube44\uc5d0 \uc990\uae30\ub294 \uad11\ub3d9\uc2dd \uc0e4\ube0c\uc0e4\ube0c", "name": "\uc77c\ud488\ud5cc", "phone": "02-574-7117", "lon": "127.0391935"}, {"addr": "\uc11c\uc6b8\uc2dc \uc885\ub85c\uad6c \ubd80\uc554\ub3d9 208-37", "num": "178\ud68c", "lat": "37.5955682", "description": "\ud654\ub355\uc5d0 \uc9c1\ud654\ub85c \uad6c\uc6b4 \ub9bd \uc2a4\ud14c\uc774\ud06c \ucf54\uc2a4(\uc560\ud50c\uc564 \ube14\ub8e8\uce58\uc988\ube0c\ub808\ub4dc+3\uac00\uc9c0\ud0c0\ud30c\uc2a4+\uadf8\ub9b0\uc0d0\ub7ec\ub4dc+\uc2a4\ud14c\uc774\ud06c+\ub514\uc800\ud2b8)", "name": "\ub9bd\uc2a4\ud14c\uc774\ud06c", "phone": "02-379-2581", "lon": "126.9640695"}, {"addr": "\uc885\ub85c\uad6c \ub2f9\uc8fc\ub3d9 5 \ub85c\uc584\ube4c\ub529 \uc9c0\ud558 1\uce35", "num": "190\ud68c", "lat": "37.5720260", "description": "\ud55c\uc810\uc758 \uc608\uc220 \ucd08\ubc25 \ud480\ucf54\uc2a4", "name": "\uc624\uac00\uc640", "phone": "02-735-1001", "lon": "126.9743351"}, {"addr": "\uc11c\uc6b8 \ub9c8\ud3ec\uad6c \uc5f0\ub0a8\ub3d9 257-8", "num": "199\ud68c", "lat": "37.5620845", "description": "\uc774\ud0c8\ub9ac\uc544 \uac00\uc815\uc2dd \ud30c\uc2a4\ud0c0, \uc548\ud2f0 \ud30c\uc2a4\ud0c0", "name": "\uae4c\uc0ac\ub514\ub178\uc544", "phone": "02-3142-1108", "lon": "126.9235561"}, {"addr": "\uc11c\uc6b8 \uc911\uad6c \ud544\ub3d9 1\uac00 3-20", "num": "209\ud68c", "lat": "37.5617693", "description": "3\ub300\uc9f8 \uc774\uc5b4\uc624\ub294 \u2018\uace0\ucd94\uc7a5 \uc8fc\uafb8\ubbf8 \ubd88\uace0\uae30\u2019, \ud0a4\uc870\uac1c \uad00\uc790, \ucb48\uafb8\ubbf8\ubcf6\uc74c\ubc25", "name": "\ucda9\ubb34\ub85c \uc8fc\uafb8\ubbf8 \ubd88\uace0\uae30", "phone": "02-2279-0803", "lon": "126.9921966"}] This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1 @@ {"type":"Topology","transform":{"scale":[0.00006247075827918093,0.00005151814945568312],"translate":[126.76700465024426,37.42574929824175]},"objects":{"seoul_municipalities_geo":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2]],"type":"Polygon","properties":{"code":"11250","name":"강동구","name_eng":"Gangdong-gu","base_year":"2013"}},{"arcs":[[3,-2,4,5]],"type":"Polygon","properties":{"code":"11240","name":"송파구","name_eng":"Songpa-gu","base_year":"2013"}},{"arcs":[[6,-6,7,8,9,10]],"type":"Polygon","properties":{"code":"11230","name":"강남구","name_eng":"Gangnam-gu","base_year":"2013"}},{"arcs":[[-9,11,12,13,14]],"type":"Polygon","properties":{"code":"11220","name":"서초구","name_eng":"Seocho-gu","base_year":"2013"}},{"arcs":[[-13,15,16,17,18]],"type":"Polygon","properties":{"code":"11210","name":"관악구","name_eng":"Gwanak-gu","base_year":"2013"}},{"arcs":[[-14,-19,19,20]],"type":"Polygon","properties":{"code":"11200","name":"동작구","name_eng":"Dongjak-gu","base_year":"2013"}},{"arcs":[[21,22,-20,23,24,25]],"type":"Polygon","properties":{"code":"11190","name":"영등포구","name_eng":"Yeongdeungpo-gu","base_year":"2013"}},{"arcs":[[-17,26,27]],"type":"Polygon","properties":{"code":"11180","name":"금천구","name_eng":"Geumcheon-gu","base_year":"2013"}},{"arcs":[[28,-24,-18,-28,29]],"type":"Polygon","properties":{"code":"11170","name":"구로구","name_eng":"Guro-gu","base_year":"2013"}},{"arcs":[[30,-26,31,32]],"type":"Polygon","properties":{"code":"11160","name":"강서구","name_eng":"Gangseo-gu","base_year":"2013"}},{"arcs":[[-32,-25,-29,33]],"type":"Polygon","properties":{"code":"11150","name":"양천구","name_eng":"Yangcheon-gu","base_year":"2013"}},{"arcs":[[34,35,36,-22,-31,37,38]],"type":"Polygon","properties":{"code":"11140","name":"마포구","name_eng":"Mapo-gu","base_year":"2013"}},{"arcs":[[39,40,-35,41]],"type":"Polygon","properties":{"code":"11130","name":"서대문구","name_eng":"Seodaemun-gu","base_year":"2013"}},{"arcs":[[42,-42,-39,43]],"type":"Polygon","properties":{"code":"11120","name":"은평구","name_eng":"Eunpyeong-gu","base_year":"2013"}},{"arcs":[[44,45,46,47,48]],"type":"Polygon","properties":{"code":"11110","name":"노원구","name_eng":"Nowon-gu","base_year":"2013"}},{"arcs":[[-48,49,50]],"type":"Polygon","properties":{"code":"11100","name":"도봉구","name_eng":"Dobong-gu","base_year":"2013"}},{"arcs":[[-50,-47,51,52]],"type":"Polygon","properties":{"code":"11090","name":"강북구","name_eng":"Gangbuk-gu","base_year":"2013"}},{"arcs":[[53,-52,-46,54,55,56]],"type":"Polygon","properties":{"code":"11080","name":"성북구","name_eng":"Seongbuk-gu","base_year":"2013"}},{"arcs":[[-45,57,58,59,-55]],"type":"Polygon","properties":{"code":"11070","name":"중랑구","name_eng":"Jungnang-gu","base_year":"2013"}},{"arcs":[[-56,-60,60,61,62]],"type":"Polygon","properties":{"code":"11060","name":"동대문구","name_eng":"Dongdaemun-gu","base_year":"2013"}},{"arcs":[[-59,63,-3,-4,-7,64,-61]],"type":"Polygon","properties":{"code":"11050","name":"광진구","name_eng":"Gwangjin-gu","base_year":"2013"}},{"arcs":[[-62,-65,-11,65,66]],"type":"Polygon","properties":{"code":"11040","name":"성동구","name_eng":"Seongdong-gu","base_year":"2013"}},{"arcs":[[-66,-10,-15,-21,-23,-37,67]],"type":"Polygon","properties":{"code":"11030","name":"용산구","name_eng":"Yongsan-gu","base_year":"2013"}},{"arcs":[[-67,-68,-36,-41,68]],"type":"Polygon","properties":{"code":"11020","name":"중구","name_eng":"Jung-gu","base_year":"2013"}},{"arcs":[[69,-57,-63,-69,-40,-43]],"type":"Polygon","properties":{"code":"11010","name":"종로구","name_eng":"Jongno-gu","base_year":"2013"}}]}},"arcs":[[[5574,2558],[57,-6],[43,51],[46,31],[186,82],[214,63],[93,39],[187,113],[57,-6],[91,7],[48,22],[-25,-67],[11,-58],[28,-42],[21,-58],[7,-68],[38,-91],[-9,-157],[28,-23],[-7,-70],[10,-52],[-29,-3],[-39,27],[-56,-27],[-52,7],[-98,-26],[-48,15],[-154,-214],[-5,-91],[-62,-72],[-27,-69],[-31,-1],[-17,-50],[-2,-48]],[[6078,1716],[-22,9],[-386,207],[21,43],[45,160],[-76,46],[-143,50]],[[5517,2231],[40,79],[30,112],[0,102],[-13,34]],[[4835,1874],[95,-27],[75,-3],[108,17],[127,46],[104,16],[64,124],[109,184]],[[6078,1716],[0,-27],[-33,-24],[-22,-39],[-19,-72],[19,-61],[65,-38],[40,-5],[39,24],[28,-26],[110,-29],[42,-27],[-24,-67],[3,-46],[-29,-75],[-23,-32],[-80,-25],[-40,-143],[1,-36],[-47,-35],[-71,-2],[-48,-60],[-77,30],[-56,8],[4,-71],[71,-48],[-44,-26],[-63,0],[-57,31],[0,-48],[-46,-36]],[[5721,711],[0,40],[-28,61],[-142,234],[10,21],[-52,97],[-54,56],[-55,41],[-88,45],[-294,93],[-64,15],[-73,71],[-43,290],[-10,18],[7,81]],[[4669,1952],[166,-78]],[[5721,711],[-77,-59],[-12,-69],[-56,28],[-19,30],[-92,19],[-45,-57],[-84,-16],[-31,51]],[[5305,638],[-21,43],[-107,91],[-61,88],[-3,51],[-98,-14],[-68,-37],[-21,38],[-39,7],[-15,-25],[-108,-20],[-14,-76],[-78,-10],[-47,6],[-141,166],[-59,161],[-116,-20],[-40,97],[-177,451],[-36,150],[-19,46],[-84,96]],[[3953,1927],[145,142]],[[4098,2069],[63,49],[80,23],[258,-123],[16,33],[34,-32],[120,-67]],[[5305,638],[-27,-51],[8,-44],[-23,-8],[-17,-47],[-29,-17],[-39,-71],[0,-66],[-68,-34],[-29,-55],[-121,24],[-50,-12],[5,-35],[42,-23],[-10,-33],[-39,-22],[-14,-73],[10,-25],[-72,-16],[-17,-21],[-74,21],[-51,1],[-92,-31],[-36,34],[-38,10],[-18,52],[-105,97],[-64,13],[-7,39],[45,69],[-11,32],[4,58],[-26,43],[15,59],[-6,39],[-30,30],[-19,64],[17,46],[-55,37],[-83,-141],[-89,-45],[-70,-16],[-82,1],[-32,38],[-44,94],[-16,8],[-30,90],[-87,2],[-27,-12],[15,-54],[-6,-34],[-58,-15],[-74,-64]],[[3581,574],[-18,44],[11,100],[-21,45],[-37,36],[-32,59],[-16,76]],[[3468,934],[22,382],[34,71],[-62,44],[-14,34],[-3,157]],[[3445,1622],[38,27],[78,3],[32,-18],[139,77],[91,58],[38,37],[32,63],[60,58]],[[3581,574],[-94,-27],[-30,-72],[-74,-50],[-36,-55],[-47,-2],[-106,-38],[-6,-65],[-15,-22],[-60,-6],[-15,-24],[-84,0],[-127,-38],[-47,0],[-46,-31],[-19,28],[3,56],[-46,57],[-73,48],[0,47],[-36,40]],[[2623,420],[-89,82],[-13,45],[-90,20],[-34,-1],[-5,74],[-24,47],[15,26],[-34,25],[-55,117],[40,20],[20,65],[-40,24],[4,53],[-145,-32],[-19,20]],[[2154,1005],[60,90]],[[2214,1095],[44,0],[116,43],[62,43],[115,11],[37,81],[18,17],[59,-34],[51,-4],[28,-17],[85,0],[88,36],[76,-33],[32,-26],[45,11],[72,35],[-6,-49],[24,-70],[-16,-73],[147,-157],[103,23],[74,2]],[[2214,1095],[149,222],[115,25],[23,85],[68,206],[27,6],[-17,60],[103,-8],[152,34],[135,51]],[[2969,1776],[49,-49],[63,-43],[116,-49],[248,-13]],[[1998,2361],[176,-117],[88,-42],[368,-98],[88,-14],[142,-132]],[[2860,1958],[50,-46],[20,-67],[39,-69]],[[2214,1095],[-43,13],[-64,66],[-45,149],[-5,125],[7,84],[-55,79],[-175,101]],[[1834,1712],[5,106],[11,59],[20,21],[84,45],[24,40],[25,-6],[24,53],[-4,52],[-64,147],[-18,4]],[[1941,2233],[-14,53],[71,75]],[[2623,420],[-85,-70],[-38,-48],[-19,-55],[-31,-27],[-58,3],[-48,-48],[-42,-73],[-95,6],[-1,35],[-53,43],[-11,23],[4,74],[-12,29],[-42,21],[7,51],[-31,83],[-24,-14],[-50,17],[-7,47],[-45,23],[-1,59],[40,59],[-140,200],[-52,93],[-52,138],[21,14]],[[1758,1103],[63,23],[32,-12],[84,-66],[51,-57],[91,-21],[67,8],[8,27]],[[958,1548],[70,-2],[47,-59],[70,-52],[67,29],[-9,30],[76,3],[6,46],[56,15],[23,25],[44,9],[43,-26],[42,14],[31,-63],[37,0],[12,-28],[43,6],[50,-14],[52,11],[20,60],[80,112],[16,48]],[[1758,1103],[39,50],[-19,21],[-49,-14],[0,33],[-83,73],[-47,-48],[-57,-29],[-57,-76],[-41,-13],[-22,-45],[-30,-25],[-77,9],[-18,-22],[-6,-130],[-98,28],[-64,-7],[-58,43],[-41,-25],[-76,4],[-39,-14],[-38,43],[4,73],[-10,48],[11,31],[56,39],[-13,42],[-78,31],[-55,33],[-27,56],[6,37],[41,-10],[50,24],[19,49],[26,15],[22,73],[-6,38],[35,10]],[[1486,2836],[-5,-69],[16,-29],[126,-72],[185,-155],[190,-150]],[[1941,2233],[-16,0],[-71,83],[-108,-18],[-53,14],[-102,72],[-34,-133],[25,-69],[-5,-84],[9,-133],[-242,-37],[-134,-26],[-97,193],[10,24],[-31,80],[-43,-2],[-10,49],[-28,22],[-20,-68],[-75,-23]],[[916,2177],[-120,-1],[-68,19],[-17,29],[-96,-5],[-57,-47],[-15,-51],[-65,-39],[-17,70],[18,40],[-49,7],[0,39],[-50,12],[-31,36],[-109,-1],[-71,51],[-69,-4],[-56,90],[-44,45],[60,2],[11,27],[118,94],[1,42],[-35,62],[51,-6],[42,22],[36,41],[-12,31],[16,36],[108,74],[59,-4],[-3,60],[10,50],[34,3],[47,99],[31,15],[-25,42],[3,34],[-29,55],[-9,53],[22,50],[24,5],[11,54],[20,10],[59,-18],[169,-181],[70,-69],[102,-48],[386,-247],[109,-19]],[[958,1548],[-12,45],[9,50],[-22,58],[38,69],[-5,60],[51,75],[-18,57],[-27,5],[-61,95],[5,115]],[[2212,2880],[-24,-28],[51,-40],[240,-130],[95,-28],[41,-37],[-25,-46],[-1,-42],[164,-72],[67,26],[256,20],[26,-16],[45,42]],[[3147,2529],[26,-47],[-23,-21],[11,-74]],[[3161,2387],[25,-36],[-32,-20],[-28,-45],[-27,-17],[-21,-71],[-94,-107],[-100,-26],[-24,-107]],[[1486,2836],[2,19],[62,4],[28,16],[33,-23],[39,37],[44,7],[82,36],[20,56],[-7,32],[37,48],[21,59],[31,25]],[[1878,3152],[115,-119],[61,-50],[33,-15],[46,-61],[56,-46],[23,19]],[[2969,3481],[37,-25],[14,-38],[-13,-82],[21,-36],[49,-6],[-13,-60],[32,-71],[1,-29],[-27,-103],[48,-43],[-62,-34],[-36,-36],[209,-251]],[[3229,2667],[48,-76],[-44,-14],[-52,-39],[-34,-9]],[[2212,2880],[151,177],[58,-9],[-5,-47],[104,17],[25,62],[35,-1],[33,24],[-4,40],[17,45],[75,70],[113,44],[13,87],[14,33],[41,0],[34,59],[53,0]],[[3312,3955],[-41,-40],[-155,-34],[-45,-60],[-73,-11],[-6,-63],[-17,-52],[-22,-23],[16,-31],[10,-79],[-20,-63],[10,-18]],[[1878,3152],[45,56],[36,-1],[-30,-52],[30,-48],[66,-3],[29,14],[60,-11],[46,24],[-14,55],[46,46],[-12,44],[6,40],[-19,73],[29,13],[-4,120],[-15,54],[40,117],[27,9],[35,51],[-14,42],[37,41],[6,44],[-41,79],[69,66],[-10,54],[24,45],[12,64],[-77,40],[11,22],[89,-54],[118,16],[66,37],[56,49],[90,12],[40,26],[54,91],[52,30],[59,15],[6,-30],[57,-47],[50,6],[38,-51],[14,-67],[40,-17],[32,-93],[37,-9],[70,-85],[-1,-42],[49,-82]],[[5456,3733],[-68,-20],[-27,-33],[-58,-20],[-113,53],[-52,8],[-76,-23],[-156,-67]],[[4906,3631],[-54,-1],[-46,-27],[-50,4],[-125,113],[-67,82]],[[4564,3802],[-34,49],[-103,84]],[[4427,3935],[40,42],[17,67],[82,154],[77,-79],[15,102],[-26,96],[-3,93],[-40,94],[-4,60],[-40,105],[5,79],[22,83],[23,143],[-19,43]],[[4576,5017],[62,44],[35,6],[76,-16],[57,21],[68,88],[57,2],[70,37],[71,0],[41,-46],[31,-72],[139,-22],[22,-66],[-58,-81],[-14,-47],[29,-49],[14,-60],[17,-15],[6,-50],[-29,-76],[36,-86],[-10,-45],[-150,-78],[104,-13],[19,-40],[-28,-56],[39,-84],[54,-9],[39,11],[120,-20],[63,-86],[6,-97],[-22,-90],[-92,-71],[0,-33],[-28,-45],[36,-40]],[[4427,3935],[-48,51],[-24,55],[-39,22],[-30,73],[-84,67],[-47,47],[-68,31],[-74,0],[-38,26],[-11,35],[22,132],[20,50],[8,99],[46,63],[-30,53],[-45,52],[-31,77],[-53,8],[-5,96]],[[3896,4972],[10,49],[-13,37],[13,109],[49,68],[38,1],[25,54],[55,6],[44,-34],[45,-4],[51,22],[18,-30],[8,-55],[24,-64],[19,-21],[55,8],[94,61],[21,-31],[42,-26],[53,30],[29,-135]],[[4564,3802],[-52,-37],[-45,-74],[-65,-59],[-49,-61],[-103,-65],[-3,61],[-61,7],[-67,-27],[-47,48],[-72,36],[-65,16],[-36,41],[-16,48],[6,56],[-126,36],[-55,65],[-40,17],[-14,40],[-30,-1],[-91,67],[-16,22]],[[3517,4038],[25,71],[-47,65],[28,47],[-21,74],[-40,48],[-25,51],[5,33],[81,52],[52,88],[74,23],[14,56],[6,84],[-18,105],[-20,35],[34,17],[65,68],[90,25],[76,-8]],[[3364,3937],[36,42],[67,23],[50,36]],[[4906,3631],[5,-171]],[[4911,3460],[-20,49],[-30,0],[3,-48],[-53,-26],[-53,-7],[-48,-80],[-28,10],[-86,-31],[-28,23],[-42,-94],[-58,0],[-55,-21],[-24,-76],[-43,-27],[-117,-146],[-95,-84]],[[4134,2902],[-21,16],[-57,-6],[-30,64],[-28,7],[-93,-34],[-29,31],[-3,63],[-15,31],[-56,42],[-24,64],[-84,-3],[-21,-19],[-48,2],[-78,23],[-42,26],[-30,38],[-7,64],[54,6],[45,35],[-29,115],[17,66],[-5,80],[-62,39],[-31,118],[-27,35],[6,90],[-46,-7],[-26,49]],[[5456,3733],[90,-4],[91,-56],[-6,-31],[15,-87],[-15,-54],[26,-25],[-4,-59],[-67,-90],[3,-18],[69,-78],[-8,-19],[-72,-14],[-45,-79],[-19,-89],[-127,-16],[22,-40],[-2,-67],[-26,-50],[-2,-42]],[[5379,2815],[-23,-20],[-133,-58],[-124,35],[-78,10]],[[5021,2782],[-6,119],[-19,65],[-93,144],[-28,144],[10,39],[38,57],[4,32],[-16,78]],[[5021,2782],[-103,-230]],[[4918,2552],[-22,11],[-182,32],[-19,9],[-164,149],[-92,51],[-68,-2],[-84,-50],[-48,-8],[-102,35]],[[4137,2779],[-3,123]],[[5379,2815],[52,-51],[-13,-25],[-22,-141],[-13,-46],[151,-4],[40,10]],[[4669,1952],[165,350],[109,239],[-25,11]],[[4098,2069],[-98,73],[-85,13],[-18,44],[4,42]],[[3901,2241],[16,79],[33,9],[82,94],[10,51],[36,30],[51,6],[14,64],[41,36],[7,38],[-50,4],[-4,127]],[[3161,2387],[54,50],[103,-4],[69,-15],[11,36],[54,-30],[51,-8],[27,14],[38,-44],[40,-1],[80,-81],[52,52],[66,-6],[25,15],[10,-82],[39,-46],[21,4]],[[3229,2667],[39,44],[62,19],[78,1],[178,-22],[124,12],[79,17],[227,4],[74,37],[47,0]],[[3312,3955],[52,-18]]]} LoadingSorry, something went wrong. Reload?Sorry, we cannot display this file.Sorry, this file is invalid so it cannot be displayed.